:root {
  --navy: #111b4b;
  --navy-dark: #08123c;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --line: rgba(17, 27, 75, 0.16);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  background: var(--off-white);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at center,
      #142762 0%,
      var(--navy) 55%,
      var(--navy-dark) 100%
    );

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
}


/* =========================
   NAVBAR
========================= */

.navbar {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  padding: 28px 4%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 10;
}


.nav-logo {
  width: 180px;
  height: auto;
}


.cart-top-button {
  border: none;

  background: var(--off-white);
  color: var(--navy);

  padding: 15px 26px;

  font-family: Arial, sans-serif;

  font-size: 11px;
  letter-spacing: 3px;

  cursor: pointer;
}


.cart-top-button span {
  margin-left: 8px;

  background: var(--navy);
  color: white;

  width: 24px;
  height: 24px;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
}


/* =========================
   HERO CENTER
========================= */

.hero-content {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}


.hero-logo {
  width: min(850px, 88vw);

  height: auto;

  margin-bottom: 15px;
}


.hero-subtitle {
  font-family: Arial, sans-serif;

  font-size: 13px;

  letter-spacing: 12px;

  margin-bottom: 45px;
}


.hero-button {
  background: var(--off-white);
  color: var(--navy);

  text-decoration: none;

  font-family: Arial, sans-serif;

  font-size: 11px;
  letter-spacing: 3px;

  padding: 17px 48px;

  transition: 0.3s;
}


.hero-button:hover {
  transform: translateY(-2px);
}


/* =========================
   MENU
========================= */

.menu-section {
  padding: 85px 4% 80px;

  background: var(--off-white);
}


.menu-heading {
  text-align: center;

  margin-bottom: 35px;
}


.small-label {
  font-family: Arial, sans-serif;

  font-size: 11px;
  font-weight: bold;

  letter-spacing: 8px;

  margin-bottom: 12px;
}


.menu-heading h2 {
  font-size: clamp(48px, 6vw, 78px);

  font-weight: normal;
}


/* =========================
   CATEGORY BUTTONS
========================= */

.category-buttons {
  display: flex;
  justify-content: center;

  gap: 25px;

  max-width: 650px;

  margin: 0 auto 50px;
}


.category {
  flex: 1;

  height: 55px;

  border: 1px solid var(--navy);

  background: transparent;
  color: var(--navy);

  font-family: Arial, sans-serif;

  letter-spacing: 3px;

  cursor: pointer;

  transition: 0.3s;
}


.category.active {
  background: var(--navy);
  color: white;
}


.category:hover {
  transform: translateY(-2px);
}


/* =========================
   SWEETS
========================= */

.products {
  max-width: 1400px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}


.product-card {
  text-align: center;
}


.product-image {
  overflow: hidden;

  background: var(--navy);

  margin-bottom: 18px;
}


.product-image img {
  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  display: block;

  transition: 0.4s;
}


.product-card:hover img {
  transform: scale(1.03);
}


.product-card h3 {
  font-size: 23px;

  font-weight: normal;

  margin-bottom: 10px;
}


.price {
  font-size: 16px;

  margin-bottom: 18px;
}


.add-button {
  width: 85%;

  border: none;

  background: var(--navy);
  color: white;

  padding: 15px;

  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 3px;

  cursor: pointer;

  transition: 0.3s;
}


.add-button:hover {
  transform: translateY(-2px);
}


.add-button.sold-out {
  background: #aaa;

  cursor: not-allowed;

  opacity: 0.65;

  transform: none;
}


/* =========================
   COFFEE
========================= */

.coffee-products {
  display: none;

  max-width: 900px;

  margin: 0 auto;

  border-top: 1px solid var(--navy);
}


.coffee-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 8px;

  border-bottom: 1px solid var(--line);
}


.coffee-item h3 {
  font-size: 24px;

  font-weight: normal;
}


.coffee-order {
  display: flex;
  align-items: center;

  gap: 25px;
}


.coffee-order span {
  white-space: nowrap;

  font-size: 16px;
}


.coffee-order button {
  width: 44px;
  height: 44px;

  border: none;

  background: var(--navy);
  color: white;

  font-size: 23px;

  cursor: pointer;

  transition: 0.2s;
}


.coffee-order button:hover {
  transform: scale(1.05);
}


/* =========================
   PICKUP SECTION
========================= */

.pickup-section {
  background:
    radial-gradient(
      circle at center,
      #142762 0%,
      var(--navy) 70%,
      var(--navy-dark) 100%
    );

  color: white;

  text-align: center;

  padding: 75px 20px;
}


.pickup-label {
  font-family: Arial, sans-serif;

  font-size: 11px;
  letter-spacing: 5px;

  margin-bottom: 17px;
}


.pickup-section h2 {
  font-size: 42px;

  font-weight: normal;

  margin-bottom: 14px;
}


.pickup-section h2 + p {
  font-size: 16px;
}


/* =========================
   FOOTER
========================= */

footer {
  background: var(--off-white);

  text-align: center;

  padding: 55px 20px;
}


.footer-logo {
  width: min(450px, 75vw);

  height: auto;

  margin-bottom: 5px;
}


.footer-subtitle {
  margin-bottom: 12px;
}


footer p {
  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 7px;

  margin-top: 10px;
}


/* =========================
   MILK MODAL
========================= */

.modal-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 2000;
}


.modal-overlay.show {
  display: flex;
}


.milk-modal {
  position: relative;

  width: min(500px, 100%);

  background: var(--off-white);

  padding: 38px;
}


.modal-close {
  position: absolute;

  top: 15px;
  right: 18px;

  border: none;
  background: transparent;

  color: var(--navy);

  font-size: 30px;

  cursor: pointer;
}


.modal-small {
  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 5px;

  margin-bottom: 10px;
}


.milk-modal h2 {
  font-size: 38px;

  font-weight: normal;

  margin-bottom: 12px;
}


.milk-question {
  font-family: Arial, sans-serif;

  font-size: 13px;

  margin-bottom: 25px;

  opacity: 0.65;
}


.milk-options {
  border-top: 1px solid var(--navy);
}


.milk-option {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 3px;

  border-bottom: 1px solid var(--line);

  cursor: pointer;
}


.milk-option div {
  display: flex;
  align-items: center;

  gap: 12px;
}


.milk-option input {
  width: 18px;
  height: 18px;

  accent-color: var(--navy);
}


.milk-option span {
  font-family: Arial, sans-serif;

  font-size: 14px;
}


.milk-option strong {
  font-family: Arial, sans-serif;

  font-size: 12px;
  font-weight: normal;
}


.confirm-milk-button {
  width: 100%;

  margin-top: 30px;

  border: none;

  background: var(--navy);
  color: white;

  padding: 17px;

  font-family: Arial, sans-serif;

  font-size: 11px;
  letter-spacing: 3px;

  cursor: pointer;
}


/* =========================
   CART OVERLAY
========================= */

.cart-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.4);

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 2500;
}


.cart-overlay.show {
  opacity: 1;

  visibility: visible;
}


/* =========================
   CART DRAWER
========================= */

.cart-drawer {
  position: fixed;

  top: 0;
  right: -480px;

  width: min(460px, 100%);

  height: 100vh;

  background: var(--off-white);

  z-index: 3000;

  display: flex;
  flex-direction: column;

  transition: 0.35s;
}


.cart-drawer.open {
  right: 0;
}


.cart-header {
  padding: 28px;

  border-bottom: 1px solid var(--line);

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.cart-header p {
  font-family: Arial, sans-serif;

  font-size: 9px;
  letter-spacing: 4px;

  margin-bottom: 5px;
}


.cart-header h2 {
  font-size: 35px;

  font-weight: normal;
}


.cart-close {
  border: none;

  background: transparent;

  color: var(--navy);

  font-size: 32px;

  cursor: pointer;
}


.cart-items {
  flex: 1;

  overflow-y: auto;

  padding: 20px 28px;
}


.empty-cart {
  font-family: Arial, sans-serif;

  font-size: 14px;

  opacity: 0.55;

  text-align: center;

  margin-top: 60px;
}


.cart-item {
  padding: 20px 0;

  border-bottom: 1px solid var(--line);
}


.cart-item-top {
  display: flex;
  justify-content: space-between;

  gap: 20px;
}


.cart-item h3 {
  font-size: 19px;

  font-weight: normal;

  margin-bottom: 5px;
}


.cart-item-option {
  font-family: Arial, sans-serif;

  font-size: 11px;

  opacity: 0.55;
}


.cart-item-price {
  font-family: Arial, sans-serif;

  font-size: 13px;

  white-space: nowrap;
}


.quantity-row {
  margin-top: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.quantity-controls {
  display: flex;
  align-items: center;

  border: 1px solid var(--navy);
}


.quantity-controls button {
  width: 34px;
  height: 32px;

  border: none;

  background: transparent;

  color: var(--navy);

  cursor: pointer;
}


.quantity-controls span {
  min-width: 30px;

  text-align: center;

  font-family: Arial, sans-serif;

  font-size: 12px;
}


.remove-item {
  border: none;

  background: transparent;

  color: var(--navy);

  font-family: Arial, sans-serif;

  font-size: 10px;

  text-decoration: underline;

  cursor: pointer;
}


.cart-bottom {
  padding: 25px 28px;

  border-top: 1px solid var(--line);

  background: var(--off-white);
}


.cart-total {
  display: flex;
  justify-content: space-between;

  margin-bottom: 20px;

  font-family: Arial, sans-serif;

  font-size: 13px;
}


.checkout-button {
  width: 100%;

  border: none;

  background: var(--navy);
  color: white;

  padding: 18px;

  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 2px;

  cursor: pointer;
}


/* =========================
   CHECKOUT FIELDS
========================= */

.checkout-field {
  margin-bottom: 24px;
}


.checkout-field > label {
  display: block;

  font-family: Arial, sans-serif;

  font-size: 10px;
  font-weight: bold;

  letter-spacing: 3px;

  margin-bottom: 9px;
}


.checkout-field input[type="text"],
.checkout-field input[type="tel"],
.checkout-field select {
  width: 100%;

  border: 1px solid rgba(17, 27, 75, 0.25);

  background: white;

  color: var(--navy);

  padding: 15px;

  font-family: Arial, sans-serif;

  font-size: 14px;

  outline: none;
}


.checkout-field input:focus,
.checkout-field select:focus {
  border-color: var(--navy);
}


/* =========================
   CAR DETAILS
========================= */

.car-fields {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 10px;
}


.car-fields select,
.car-fields input {
  width: 100%;

  border: 1px solid rgba(17, 27, 75, 0.25);

  background: white;

  color: var(--navy);

  padding: 15px;

  font-family: Arial, sans-serif;

  font-size: 13px;

  outline: none;
}


.car-fields select:focus,
.car-fields input:focus {
  border-color: var(--navy);
}


/* =========================
   PAYMENT
========================= */

.payment-options {
  display: grid;

  gap: 10px;
}


.payment-option {
  border: 1px solid rgba(17, 27, 75, 0.22);

  background: white;

  padding: 16px;

  display: flex;
  align-items: center;

  gap: 12px;

  cursor: pointer;
}


.payment-option input {
  width: 18px;
  height: 18px;

  accent-color: var(--navy);
}


.payment-option span {
  font-family: Arial, sans-serif;

  font-size: 14px;
}


.confirm-order-button {
  width: 100%;

  border: none;

  background: var(--navy);
  color: white;

  padding: 18px;

  font-family: Arial, sans-serif;

  font-size: 11px;

  letter-spacing: 3px;

  cursor: pointer;
}


/* =========================
   CHECKOUT PAGE
========================= */

.checkout-page {
  min-height: 100vh;

  background: var(--off-white);
}


.checkout-page-header {
  min-height: 180px;

  background:
    radial-gradient(
      circle at center,
      #142762 0%,
      var(--navy) 65%,
      var(--navy-dark) 100%
    );

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  padding: 30px;
}


.checkout-page-logo {
  width: min(380px, 65vw);

  height: auto;
}


.back-to-menu {
  position: absolute;

  left: 4%;
  top: 50%;

  transform: translateY(-50%);

  color: white;

  text-decoration: none;

  font-family: Arial, sans-serif;

  font-size: 10px;

  letter-spacing: 2px;
}


.checkout-page-main {
  max-width: 1200px;

  margin: auto;

  padding: 70px 5%;

  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  gap: 70px;
}


.checkout-small {
  font-family: Arial, sans-serif;

  font-size: 10px;
  font-weight: bold;

  letter-spacing: 6px;

  margin-bottom: 10px;
}


.checkout-form-section h1 {
  font-size: 58px;

  font-weight: normal;

  margin-bottom: 12px;
}


.checkout-intro {
  font-family: Arial, sans-serif;

  font-size: 13px;

  line-height: 1.7;

  opacity: 0.65;

  margin-bottom: 40px;
}


/* =========================
   ORDER SUMMARY
========================= */

.checkout-order-section {
  border-left: 1px solid var(--line);

  padding-left: 45px;
}


.checkout-order-label {
  font-family: Arial, sans-serif;

  font-size: 10px;
  font-weight: bold;

  letter-spacing: 5px;

  margin-bottom: 10px;
}


.checkout-order-section h2 {
  font-size: 36px;

  font-weight: normal;

  margin-bottom: 30px;
}


.checkout-order-items {
  border-top: 1px solid var(--navy);
}


.checkout-order-item {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 20px 0;

  border-bottom: 1px solid var(--line);
}


.checkout-order-item h3 {
  font-size: 19px;

  font-weight: normal;

  margin-bottom: 5px;
}


.checkout-order-item p,
.checkout-order-item span {
  font-family: Arial, sans-serif;

  font-size: 11px;

  opacity: 0.6;
}


.checkout-order-item strong {
  font-family: Arial, sans-serif;

  font-size: 13px;

  white-space: nowrap;
}


.checkout-order-total {
  display: flex;

  justify-content: space-between;

  padding-top: 25px;

  margin-top: 5px;

  font-family: Arial, sans-serif;

  font-size: 14px;
}


.checkout-order-total strong {
  font-size: 17px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 850px) {

  .checkout-page-main {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .checkout-order-section {
    border-left: none;

    border-top: 1px solid var(--line);

    padding-left: 0;

    padding-top: 40px;
  }


  .back-to-menu {
    top: 20px;

    transform: none;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

  .hero {
    min-height: 90vh;
  }


  .navbar {
    padding: 20px 5%;
  }


  .nav-logo {
    width: 115px;
  }


  .cart-top-button {
    padding: 10px 12px;

    font-size: 8px;

    letter-spacing: 2px;
  }


  .cart-top-button span {
    width: 20px;
    height: 20px;
  }


  .hero-logo {
    width: 95vw;
  }


  .hero-subtitle {
    font-size: 9px;

    letter-spacing: 6px;

    margin-bottom: 40px;
  }


  .hero-button {
    padding: 15px 34px;
  }


  .menu-section {
    padding: 65px 5%;
  }


  .category-buttons {
    gap: 10px;
  }


  .products {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .product-card {
    max-width: 430px;

    margin: auto;
  }


  .coffee-item h3 {
    font-size: 20px;
  }


  .coffee-order {
    gap: 12px;
  }


  .coffee-order span {
    font-size: 14px;
  }


  .milk-modal {
    padding: 32px 22px;
  }


  .pickup-section h2 {
    font-size: 34px;
  }


  .car-fields {
    grid-template-columns: 1fr;
  }


  .checkout-page-header {
    min-height: 150px;
  }


  .checkout-page-main {
    padding: 45px 5%;
  }


  .checkout-form-section h1 {
    font-size: 44px;
  }

}



/* =========================
   VERO FOOTER
========================= */

.vero-footer {
  background: var(--off-white);

  color: var(--navy);

  text-align: center;

  padding:
    70px
    5%
    35px;
}


.footer-logo {
  width: min(450px, 75vw);

  height: auto;

  margin-bottom: 5px;
}


.footer-subtitle {
  font-family: Arial, sans-serif;

  font-size: 10px;

  letter-spacing: 7px;

  margin-bottom: 50px;
}


/* CONTACT */

.footer-contact {
  max-width: 700px;

  margin:
    0 auto 45px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  border-top:
    1px solid
    var(--navy);

  border-bottom:
    1px solid
    var(--navy);
}


.footer-link {
  padding:
    25px
    20px;

  text-decoration: none;

  color: var(--navy);

  display: flex;

  flex-direction: column;

  gap: 8px;

  transition: 0.25s;
}


.footer-link:first-child {
  border-right:
    1px solid
    var(--navy);
}


.footer-link:hover {
  background: var(--navy);

  color: white;
}


.footer-link-title {
  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 4px;

  opacity: 0.65;
}


.footer-link-value {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 20px;
}


/* LOCATION */

.footer-location p {
  font-family: Arial, sans-serif;

  font-size: 10px;

  letter-spacing: 5px;
}


.footer-location .working-hours {
  margin-top: 12px;

  letter-spacing: 3px;

  opacity: 0.65;
}


/* LICENSE */

.license {
  max-width: 900px;

  margin:
    50px auto 0;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;
}


.license span {
  height: 1px;

  background:
    rgba(
      17,
      27,
      75,
      0.25
    );

  flex: 1;
}


.license p {
  font-family: Arial, sans-serif;

  font-size: 8px;

  letter-spacing: 3px;

  white-space: nowrap;
}


/* MOBILE */

@media (max-width: 650px) {

  .footer-contact {
    grid-template-columns: 1fr;
  }


  .footer-link:first-child {
    border-right: none;

    border-bottom:
      1px solid
      var(--navy);
  }


  .license {
    gap: 10px;
  }


  .license p {
    white-space: normal;

    line-height: 1.6;

    letter-spacing: 2px;
  }

}


/* =========================
   ORDER SUCCESS
========================= */

.order-success-page {
  min-height: 100vh;
  width: 100%;

  background: #f7f5f0;
  color: #111b4b;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 50px 20px;

  font-family: Georgia, "Times New Roman", serif;
}

.order-success-card {
  width: 100%;
  max-width: 560px;

  margin: 0 auto;

  text-align: center;
}

.order-success-card .success-logo {
  display: block;

  width: 260px;
  max-width: 70%;

  height: auto;

  margin: 0 auto 45px;
}

.success-small {
  font-family: Arial, sans-serif;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 5px;

  margin-bottom: 14px;
}

.order-success-card h1 {
  margin: 0 0 16px;

  font-size: 58px;
  line-height: 1;

  font-weight: normal;
}

.success-message {
  max-width: 400px;

  margin: 0 auto 40px;

  font-family: Arial, sans-serif;

  font-size: 14px;
  line-height: 1.7;

  opacity: 0.65;
}

.success-number {
  width: 100%;

  padding: 28px 15px;

  border-top: 1px solid #111b4b;
  border-bottom: 1px solid #111b4b;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 10px;
}

.success-number span {
  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 4px;
}

.success-number strong {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 34px;
  font-weight: normal;

  letter-spacing: 2px;
}

.success-details {
  width: 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  border-bottom: 1px solid rgba(17, 27, 75, 0.2);

  margin-bottom: 30px;
}

.success-details > div {
  min-width: 0;

  padding: 24px 15px;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 8px;
}

.success-details > div:first-child {
  border-right: 1px solid rgba(17, 27, 75, 0.2);
}

.success-details span {
  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 3px;

  opacity: 0.6;
}

.success-details strong {
  font-family: Arial, sans-serif;

  font-size: 16px;
  font-weight: 600;
}

.success-arrival {
  max-width: 390px;

  margin: 0 auto 35px;

  font-family: Arial, sans-serif;

  font-size: 12px;
  line-height: 1.7;

  opacity: 0.65;
}

.success-home-button {
  display: inline-block;

  background: #111b4b;
  color: #ffffff;

  text-decoration: none;

  padding: 17px 38px;

  font-family: Arial, sans-serif;

  font-size: 10px;

  letter-spacing: 3px;
}

@media (max-width: 600px) {

  .order-success-page {
    padding: 35px 18px;
  }

  .order-success-card .success-logo {
    width: 210px;

    margin-bottom: 35px;
  }

  .order-success-card h1 {
    font-size: 46px;
  }

  .success-number strong {
    font-size: 28px;
  }

  .success-details strong {
    font-size: 14px;
  }
}


/* =========================================
   VERO ADMIN
========================================= */

.admin-page {
  min-height: 100vh;
  margin: 0;

  background: #f7f5f0;
  color: #111b4b;

  font-family: Georgia, "Times New Roman", serif;
}


/* =========================================
   ADMIN HEADER
========================================= */

.admin-header {
  width: 100%;
  height: 110px;

  background: #111b4b;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  padding: 0 5%;
}


.admin-header .admin-logo {
  display: block;

  width: 180px;
  max-width: 180px;

  height: auto;

  object-fit: contain;

  margin: 0 auto;
}


.admin-logout {
  position: absolute;

  right: 5%;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid white;

  background: transparent;
  color: white;

  padding: 12px 22px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  letter-spacing: 3px;

  cursor: pointer;
}


/* =========================================
   ADMIN MAIN
========================================= */

.admin-main {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding: 70px 5%;
}


/* =========================================
   LOGIN
========================================= */

.admin-login-card {
  width: 100%;
  max-width: 430px;

  margin: 40px auto;

  background: #ffffff;

  border: 1px solid rgba(17, 27, 75, 0.15);

  padding: 45px;
}


.admin-small {
  margin-bottom: 10px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  font-weight: bold;

  letter-spacing: 5px;
}


.admin-login-card h1 {
  margin: 0 0 35px;

  font-size: 48px;
  line-height: 1;

  font-weight: normal;
}


/* =========================================
   ADMIN INPUTS
========================================= */

.admin-login-card .checkout-field {
  margin-bottom: 22px;
}


.admin-login-card .checkout-field label {
  display: block;

  margin-bottom: 9px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  font-weight: bold;

  letter-spacing: 3px;
}


.admin-login-card input[type="email"],
.admin-login-card input[type="password"] {
  width: 100%;
  height: 50px;

  border: 1px solid rgba(17, 27, 75, 0.25);

  background: white;

  padding: 0 14px;

  color: #111b4b;

  font-family: Arial, sans-serif;

  font-size: 14px;

  outline: none;
}


.admin-login-card input:focus {
  border-color: #111b4b;
}


.admin-login-card .confirm-order-button {
  width: 100%;

  margin-top: 8px;

  border: none;

  background: #111b4b;
  color: white;

  padding: 17px;

  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 4px;

  cursor: pointer;
}


/* =========================================
   DASHBOARD HEADING
========================================= */

.admin-dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-bottom: 35px;
}


.admin-dashboard-heading h1 {
  margin: 0;

  font-size: 55px;
  line-height: 1;

  font-weight: normal;
}


/* =========================================
   ADMIN TABS
========================================= */

.admin-tabs {
  display: grid;

  grid-template-columns: 1fr 1fr;

  max-width: 600px;

  margin-bottom: 45px;
}


.admin-tab {
  height: 52px;

  border: 1px solid #111b4b;

  background: transparent;
  color: #111b4b;

  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 3px;

  cursor: pointer;
}


.admin-tab + .admin-tab {
  border-left: none;
}


.admin-tab.active {
  background: #111b4b;
  color: white;
}


/* =========================================
   ORDERS
========================================= */

.orders-list {
  display: grid;

  gap: 25px;
}


.admin-order-card {
  background: white;

  border: 1px solid rgba(17, 27, 75, 0.15);

  padding: 30px;
}


.admin-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 22px;

  border-bottom: 1px solid rgba(17, 27, 75, 0.15);
}


.admin-order-number {
  margin-bottom: 7px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  font-weight: bold;

  letter-spacing: 3px;
}


.admin-order-top h2 {
  margin: 0;

  font-size: 34px;

  font-weight: normal;
}


.admin-status {
  background: #111b4b;
  color: white;

  padding: 9px 13px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  letter-spacing: 2px;

  text-transform: uppercase;
}


/* =========================================
   CUSTOMER INFO
========================================= */

.admin-customer-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  padding: 25px 0;

  border-bottom: 1px solid rgba(17, 27, 75, 0.15);
}


.admin-customer-grid div {
  display: flex;
  flex-direction: column;

  gap: 7px;
}


.admin-customer-grid span {
  font-family: Arial, sans-serif;

  font-size: 8px;
  letter-spacing: 2px;

  opacity: 0.55;
}


.admin-customer-grid strong {
  font-family: Arial, sans-serif;

  font-size: 13px;
  font-weight: 500;
}


/* =========================================
   ORDER ITEMS
========================================= */

.admin-order-items {
  padding: 15px 0;
}


.admin-order-item {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  padding: 10px 0;

  font-family: Arial, sans-serif;

  font-size: 13px;
}


.admin-order-item strong {
  white-space: nowrap;
}


/* =========================================
   ORDER FOOTER
========================================= */

.admin-order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(17, 27, 75, 0.15);

  font-family: Arial, sans-serif;

  font-size: 13px;
}


.status-select {
  min-width: 150px;

  border: 1px solid #111b4b;

  background: white;
  color: #111b4b;

  padding: 11px;

  font-family: Arial, sans-serif;

  cursor: pointer;
}


/* =========================================
   STOCK
========================================= */

.stock-list {
  max-width: 800px;

  border-top: 1px solid #111b4b;
}


.admin-stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 22px 5px;

  border-bottom: 1px solid rgba(17, 27, 75, 0.15);
}


.admin-stock-row h3 {
  margin: 0 0 5px;

  font-size: 22px;

  font-weight: normal;
}


.admin-stock-row p {
  margin: 0;

  font-family: Arial, sans-serif;

  font-size: 11px;

  opacity: 0.6;
}


.stock-control {
  display: flex;
  align-items: center;

  gap: 10px;
}


.stock-control input {
  width: 90px;
  height: 43px;

  border: 1px solid #111b4b;

  background: white;

  color: #111b4b;

  text-align: center;

  font-family: Arial, sans-serif;

  font-size: 14px;
}


.stock-control button {
  height: 43px;

  border: none;

  background: #111b4b;
  color: white;

  padding: 0 20px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  letter-spacing: 2px;

  cursor: pointer;
}


/* =========================================
   ADMIN MOBILE
========================================= */

@media (max-width: 750px) {

  .admin-header {
    height: 90px;

    padding: 0 20px;
  }


  .admin-header .admin-logo {
    width: 130px;
    max-width: 130px;
  }


  .admin-logout {
    right: 20px;

    padding: 10px 14px;

    font-size: 8px;

    letter-spacing: 2px;
  }


  .admin-main {
    padding: 45px 20px;
  }


  .admin-login-card {
    margin: 10px auto;

    padding: 30px 22px;
  }


  .admin-login-card h1 {
    font-size: 40px;
  }


  .admin-dashboard-heading h1 {
    font-size: 43px;
  }


  .admin-customer-grid {
    grid-template-columns: 1fr 1fr;
  }


  .admin-order-footer {
    align-items: stretch;

    flex-direction: column;
  }


  .status-select {
    width: 100%;
  }


  .admin-stock-row {
    align-items: flex-start;

    flex-direction: column;
  }


  .stock-control {
    width: 100%;
  }


  .stock-control input {
    flex: 1;
  }

}


/* =========================================
   ADMIN ORDER FILTERS
========================================= */

.admin-tabs {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  max-width: 100%;

  margin-bottom: 20px;

  border: 1px solid #111b4b;
}


.admin-tab {
  min-height: 54px;

  border: none;

  border-right:
    1px solid #111b4b;

  background: transparent;

  color: #111b4b;

  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 2px;

  cursor: pointer;
}


.admin-tab:last-child {
  border-right: none;
}


.admin-tab span {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 22px;
  height: 22px;

  margin-left: 7px;

  border-radius: 50%;

  background:
    rgba(17, 27, 75, 0.1);

  font-size: 9px;

  letter-spacing: 0;
}


.admin-tab.active {
  background: #111b4b;

  color: white;
}


.admin-tab.active span {
  background: white;

  color: #111b4b;
}


/* REFRESH */

.admin-tools {
  display: flex;

  justify-content: flex-end;

  margin-bottom: 25px;
}


.admin-refresh {
  border: 1px solid #111b4b;

  background: transparent;

  color: #111b4b;

  padding: 11px 18px;

  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 2px;

  cursor: pointer;
}


/* EMPTY */

.admin-empty-orders {
  background: white;

  border:
    1px solid
    rgba(17, 27, 75, 0.15);

  padding: 50px 20px;

  text-align: center;

  font-family: Arial, sans-serif;

  font-size: 13px;

  opacity: 0.6;
}


/* STATUS VISUALS */

.admin-order-card[data-status="new"] {
  border-left: 5px solid #111b4b;
}


.admin-order-card[data-status="preparing"] {
  border-left: 5px solid #777777;
}


.admin-order-card[data-status="ready"] {
  border-left: 5px solid #333333;
}


.admin-order-card[data-status="completed"] {
  opacity: 0.65;
}


/* MOBILE */

@media (max-width: 800px) {

  .admin-tabs {
    grid-template-columns:
      1fr 1fr;

    border: none;

    gap: 8px;
  }


  .admin-tab {
    border:
      1px solid
      #111b4b !important;
  }

}



/* =========================================
   VERO ADMIN FINAL
========================================= */

.admin-page {
  min-height: 100vh;

  background: #f7f5f0;
  color: #111b4b;

  font-family:
    Georgia,
    "Times New Roman",
    serif;
}


/* HEADER */

.admin-header {
  width: 100%;
  height: 110px;

  background: #111b4b;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;

  padding: 0 5%;
}


.admin-header .admin-logo {
  width: 180px;
  max-width: 180px;

  height: auto;

  display: block;
}


.admin-logout {
  position: absolute;

  right: 5%;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid white;

  background: transparent;
  color: white;

  padding: 12px 20px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  letter-spacing: 3px;

  cursor: pointer;
}


/* MAIN */

.admin-main {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 65px 5%;
}


/* LOGIN */

.admin-login-card {
  width: 100%;

  max-width: 430px;

  margin: 30px auto;

  background: white;

  border:
    1px solid
    rgba(17, 27, 75, 0.15);

  padding: 45px;
}


.admin-small {
  font-family: Arial, sans-serif;

  font-size: 9px;
  font-weight: bold;

  letter-spacing: 5px;

  margin-bottom: 10px;
}


.admin-login-card h1 {
  font-size: 48px;

  font-weight: normal;

  margin-bottom: 35px;
}


.admin-field {
  margin-bottom: 22px;
}


.admin-field label {
  display: block;

  font-family: Arial, sans-serif;

  font-size: 9px;
  font-weight: bold;

  letter-spacing: 3px;

  margin-bottom: 8px;
}


.admin-field input {
  width: 100%;
  height: 50px;

  border:
    1px solid
    rgba(17, 27, 75, 0.25);

  background: white;

  color: #111b4b;

  padding: 0 14px;

  font-family: Arial, sans-serif;

  font-size: 14px;

  outline: none;
}


.admin-login-button {
  width: 100%;

  border: none;

  background: #111b4b;
  color: white;

  padding: 17px;

  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 4px;

  cursor: pointer;
}


/* DASHBOARD */

.admin-dashboard-heading {
  margin-bottom: 35px;
}


.admin-dashboard-heading h1 {
  font-size: 55px;

  font-weight: normal;

  margin: 0;
}


/* ORDERS / STOCK */

.admin-view-tabs {
  display: grid;

  grid-template-columns: 1fr 1fr;

  max-width: 450px;

  border: 1px solid #111b4b;

  margin-bottom: 35px;
}


.admin-view-button {
  height: 54px;

  border: none;

  background: transparent;
  color: #111b4b;

  font-family: Arial, sans-serif;

  font-size: 10px;
  letter-spacing: 3px;

  cursor: pointer;
}


.admin-view-button:first-child {
  border-right: 1px solid #111b4b;
}


.admin-view-button.active {
  background: #111b4b;
  color: white;
}


/* ORDER FILTERS */

.admin-tabs {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  width: 100%;

  border: 1px solid #111b4b;

  margin-bottom: 18px;
}


.admin-tab {
  min-height: 55px;

  border: none;
  border-right: 1px solid #111b4b;

  background: transparent;

  color: #111b4b;

  font-family: Arial, sans-serif;

  font-size: 9px;
  letter-spacing: 2px;

  cursor: pointer;
}


.admin-tab:last-child {
  border-right: none;
}


.admin-tab.active {
  background: #111b4b;

  color: white;
}


.admin-tab span {
  display: inline-flex;

  justify-content: center;
  align-items: center;

  min-width: 22px;
  height: 22px;

  margin-left: 7px;

  border-radius: 50%;

  background:
    rgba(17, 27, 75, 0.1);

  letter-spacing: 0;
}


.admin-tab.active span {
  background: white;

  color: #111b4b;
}


/* TOOLS */

.admin-tools {
  display: flex;

  justify-content: flex-end;

  margin-bottom: 25px;
}


.admin-refresh {
  border: 1px solid #111b4b;

  background: transparent;

  color: #111b4b;

  padding: 11px 18px;

  font-family: Arial, sans-serif;

  font-size: 9px;
  letter-spacing: 2px;

  cursor: pointer;
}


/* ORDERS */

.orders-list {
  display: grid;

  gap: 25px;
}


.admin-loading,
.admin-empty-orders {
  background: white;

  border:
    1px solid
    rgba(17, 27, 75, 0.15);

  padding: 45px 20px;

  text-align: center;

  font-family: Arial, sans-serif;

  font-size: 13px;

  opacity: 0.65;
}


.admin-order-card {
  background: white;

  border:
    1px solid
    rgba(17, 27, 75, 0.15);

  padding: 30px;
}


.admin-order-card[data-status="new"] {
  border-left:
    5px solid #111b4b;
}


.admin-order-card[data-status="completed"] {
  opacity: 0.65;
}


.admin-order-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;

  padding-bottom: 22px;

  border-bottom:
    1px solid
    rgba(17, 27, 75, 0.15);
}


.admin-order-number {
  font-family: Arial, sans-serif;

  font-size: 9px;
  font-weight: bold;

  letter-spacing: 3px;

  margin-bottom: 7px;
}


.admin-order-top h2 {
  font-size: 34px;

  font-weight: normal;

  margin: 0;
}


.admin-order-date {
  font-family: Arial, sans-serif;

  font-size: 10px;

  opacity: 0.5;

  margin-top: 6px;
}


.admin-status {
  background: #111b4b;
  color: white;

  padding: 9px 13px;

  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* CUSTOMER */

.admin-customer-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;

  padding: 25px 0;

  border-bottom:
    1px solid
    rgba(17, 27, 75, 0.15);
}


.admin-customer-grid div {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.admin-customer-grid span {
  font-family: Arial, sans-serif;

  font-size: 8px;

  letter-spacing: 2px;

  opacity: 0.5;
}


.admin-customer-grid strong {
  font-family: Arial, sans-serif;

  font-size: 13px;

  font-weight: 500;
}


/* ITEMS */

.admin-order-items {
  padding: 15px 0;
}


.admin-order-item {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 10px 0;

  font-family: Arial, sans-serif;

  font-size: 13px;
}


/* ORDER FOOTER */

.admin-order-footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(17, 27, 75, 0.15);

  font-family: Arial, sans-serif;

  font-size: 13px;
}


.status-select {
  min-width: 160px;

  border: 1px solid #111b4b;

  background: white;

  color: #111b4b;

  padding: 11px;

  font-family: Arial, sans-serif;
}


/* STOCK */

.stock-heading {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 20px;

  margin-bottom: 25px;
}


.stock-heading h2 {
  font-size: 35px;

  font-weight: normal;

  margin: 0;
}


.stock-list {
  width: 100%;

  max-width: 850px;

  border-top: 1px solid #111b4b;
}


.admin-stock-row {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 24px 5px;

  border-bottom:
    1px solid
    rgba(17, 27, 75, 0.15);
}


.stock-product-info h3 {
  font-size: 22px;

  font-weight: normal;

  margin-bottom: 5px;
}


.stock-product-info p {
  font-family: Arial, sans-serif;

  font-size: 11px;

  opacity: 0.55;
}


.stock-control {
  display: flex;

  align-items: flex-end;

  gap: 10px;
}


.stock-control label {
  display: flex;

  flex-direction: column;

  gap: 6px;
}


.stock-control label span {
  font-family: Arial, sans-serif;

  font-size: 8px;

  letter-spacing: 2px;

  opacity: 0.6;
}


.stock-control input {
  width: 100px;
  height: 43px;

  border: 1px solid #111b4b;

  background: white;

  color: #111b4b;

  text-align: center;

  font-family: Arial, sans-serif;

  font-size: 14px;
}


.stock-control button {
  height: 43px;

  border: none;

  background: #111b4b;

  color: white;

  padding: 0 20px;

  font-family: Arial, sans-serif;

  font-size: 9px;

  letter-spacing: 2px;

  cursor: pointer;
}


/* MOBILE */

@media (max-width: 800px) {

  .admin-main {
    padding: 45px 20px;
  }


  .admin-header {
    height: 90px;
  }


  .admin-header .admin-logo {
    width: 130px;
  }


  .admin-view-tabs {
    max-width: 100%;
  }


  .admin-tabs {
    grid-template-columns:
      1fr 1fr;

    border: none;

    gap: 8px;
  }


  .admin-tab {
    border:
      1px solid
      #111b4b !important;
  }


  .admin-customer-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .admin-order-footer {
    flex-direction: column;

    align-items: stretch;
  }


  .status-select {
    width: 100%;
  }


  .stock-heading {
    flex-direction: column;

    align-items: flex-start;
  }


  .admin-stock-row {
    flex-direction: column;

    align-items: flex-start;
  }


  .stock-control {
    width: 100%;
  }


  .stock-control label {
    flex: 1;
  }


  .stock-control input {
    width: 100%;
  }

}


/* =========================================
   NEW ORDER VISUAL
========================================= */

.admin-order-card[data-status="new"] {
  box-shadow:
    0 0 0 2px
    rgba(17, 27, 75, 0.08);
}