/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --red: #8f1520;
  --red-dark: #5d0c13;
  --gold: #dfbd64;
  --cream: #fff8f0;
  --ink: #201718;
  --muted: #786b68;
  --line: #eadfd8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--ink);
}

a {
  text-decoration: none;
  color: inherit;
}

.topbar {
  height: 86px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(22px, calc((100vw - 1160px)/2));
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.top-cta {
  background: var(--red);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.top-cta:hover {
  color: #dfbd64 !important;
}

.hero {
  background: radial-gradient(circle at 80% 15%, #a22631 0, #7f1520 40%, #4e0b11 100%);
  color: #fff;
  padding: 78px max(22px, calc((100vw - 1160px)/2));
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  color: #c89734;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1.02;
  margin: 14px 0 20px;
}

.hero-copy>p {
  font-size: 18px;
  line-height: 1.65;
  color: #f5e3df;
  max-width: 670px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.btn-gold {
  background: var(--gold);
  color: #38240c;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
}

.btn-outline:hover {
  color: #dfbd64;
  border: 1px solid #dfbd64;
}

.trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #f0d385;
  font-size: 12px;
  font-weight: 800;
}

.voucher-card {
  background: linear-gradient(145deg, #fffaf2, #eee0c8);
  padding: 14px;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  transform: rotate(2deg);
  border: 1px solid #e1bf65;
}

.voucher-inner {
  border: 1px solid #d2ad4b;
  border-radius: 17px;
  padding: 28px;
  text-align: center;
  color: #2e201e;
}

.voucher-inner img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.voucher-inner small {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.voucher-inner h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  margin: 6px;
}

.voucher-inner strong {
  display: block;
  color: var(--red);
  font-size: 64px;
  margin: 10px;
}

.voucher-inner span {
  font-size: 13px;
}

.voucher-inner .line {
  height: 1px;
  background: #d5bb79;
  margin: 18px;
}

.voucher-inner p {
  font-size: 12px;
  color: #78685f;
}

.how {
  padding: 78px max(22px, calc((100vw - 1160px)/2));
  background: #fff;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.section-heading h2,
.purchase-intro h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  margin: 10px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--cream);
}

.steps article>span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.steps h3 {
  font-family: Georgia, serif;
  font-size: 21px;
  margin: 16px 0 8px;
}

.steps p,
.purchase-intro p,
.faq p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.purchase-wrap {
  max-width: 1080px;
  margin: auto;
  padding: 78px 20px;
}

.purchase-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.purchase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 55px rgba(71, 43, 37, .08);
  padding: 10px 36px 36px;
}

.block {
  padding: 28px 0;
}

.block-title {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.block-title>span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.block-title h3 {
  font-family: Georgia, serif;
  font-size: 23px;
  margin: 2px 0 5px;
}

.block-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.divider {
  height: 1px;
  background: var(--line);
}


.faq {
  background: #fff;
  padding: 78px max(22px, calc((100vw - 1160px)/2));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: auto;
}

.faq article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.faq h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  margin: 0 0 7px;
}

.final-cta {
  background: #5f0c13;
  color: #fff;
  padding: 44px max(22px, calc((100vw - 1100px)/2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.final-cta img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.final-cta h2 {
  font-family: Georgia, serif;
  font-size: 34px;
  margin: 8px 0;
}

.final-cta p {
  margin: 0;
  color: #efdeda;
}

.light {
  color: var(--gold);
}

footer {
  background: #211514;
  color: #d9cbc7;
  padding: 34px max(22px, calc((100vw - 1160px)/2));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: #d9cbc7;
}

.footer-links a {
  color: #d9cbc7;
}

.footer-links a:hover {
  color: #a61631;
}

footer small {
  color: #8f7e79;
}

footer small a {
  color: #8f7e79;
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-cta .btn {
    grid-column: 1/-1;
    text-align: center;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:560px) {
  .topbar {
    height: 72px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand span {
    margin-top: 0px;
  }

  .top-cta {
    font-size: 12px;
    padding: 10px 12px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .voucher-card {
    transform: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .purchase-intro h2 {
    font-size: 34px;
  }

  .purchase-card {
    padding: 8px 20px 24px;
  }

  .block-title {
    grid-template-columns: 1fr;
  }

  .checkout {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta img {
    margin: auto;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 7px;
    align-items: center;
  }

  .footer-brand {
    justify-content: center;
  }

  footer small {
    text-align: center;
  }

}

@media(max-width:420px) {
  .brand strong {
    font-size: 12px;
    letter-spacing: .04em;
  }

  .top-cta {
    font-size: 10px;
  }
}

.menu-group .menu-group-item {
  padding: 1rem;
}

.form-control-lg,
.input-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 14px !important;
  border-radius: 0.3rem;
}

/***** Menu Page *****/

#infosModal .modal-content .modal-body .togg-btn img {
  transition: 0.3s transform ease-in-out;
}

#infosModal .modal-content .modal-body .togg-btn.collapsed img {
  transform: rotate(180deg);
}

.menu-group .menu-group-item .category-title img {
  transition: 0.3s transform ease-in-out;
}

.menu-group .menu-group-item .category-title.collapsed img {
  transform: rotate(180deg);
}

.app-group {
  padding: 3px;
  border: 1px solid #242e30;
  border-radius: 12px;
}

.appicon-button {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #1d1b1b;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 0;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
}