/* ===============================
   QUOTE PAGE
   File: quote.css
================================ */

/* ===============================
   PAGE BASE
================================ */

.quote-page,
main.container.quote-page {
  position: relative;

  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 62px 20px 98px;

  box-sizing: border-box;
}

.quote-page *,
.quote-page *::before,
.quote-page *::after {
  box-sizing: border-box;
}

/* ===============================
   QUOTE HEADER
   Uses new quote.php structure:
   .quote-header
   .quote-header-content
   .quote-kicker
================================ */

body.quote-page-body .quote-header {
  position: relative;
  overflow: hidden;

  margin: 0;
  padding: 154px 24px 86px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    radial-gradient(circle at 14% 16%, rgba(181, 139, 96, 0.10), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(90, 56, 37, 0.07), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #f7ecdf 100%);

  border-bottom: 1px solid rgba(181, 139, 96, 0.12);
  box-sizing: border-box;
}

/* Soft glow only. No box/frame. */
body.quote-page-body .quote-header::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;

  width: min(780px, 92%);
  height: 300px;

  transform: translateX(-50%);

  background:
    radial-gradient(circle, rgba(217, 174, 124, 0.16), transparent 68%);

  pointer-events: none;
}

body.quote-page-body .quote-header::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);

  background-size: 34px 34px;
  pointer-events: none;
  opacity: 0.5;
}

.quote-header-content {
  position: relative;
  z-index: 2;

  width: min(1120px, 100%);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-kicker {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 7px 15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(181, 139, 96, 0.26);

  background: rgba(255, 255, 255, 0.62);
  color: var(--coffee);

  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;

  box-shadow: 0 10px 24px rgba(45, 26, 17, 0.05);
}

body.quote-page-body .quote-header h1,
body.quote-page-body .quote-header .home-title {
  width: 100%;
  max-width: 1120px;

  margin: 0 0 18px;
  padding: 0;

  border: 0;

  color: var(--coffee);

  font-family: var(--heading-font);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-align: center;

  overflow-wrap: normal;
  word-break: normal;
}

body.quote-page-body .quote-header h1::after,
body.quote-page-body .quote-header .home-title::after {
  content: "";
  display: block;

  width: 92px;
  height: 4px;

  margin: 20px auto 0;

  border-radius: 999px;
  background: linear-gradient(90deg, var(--coffee), var(--accent));
}

body.quote-page-body .quote-header p {
  width: min(760px, 100%);
  margin: 0 auto;

  color: #6d5a4f;

  font-family: var(--body-font);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
  text-align: center;
}

/* ===============================
   EMPTY / STATUS MESSAGE
================================ */

.quote-status {
  width: min(720px, 100%);
  margin: 0 auto 52px;
  padding: 28px 24px;

  border-radius: 24px;
  border: 1px solid rgba(181, 139, 96, 0.22);

  background: rgba(255, 255, 255, 0.78);

  text-align: center;
  box-shadow: 0 14px 32px rgba(45, 26, 17, 0.07);
}

.quote-status h2 {
  margin: 0 0 10px;

  color: var(--coffee);

  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 800;
}

.quote-status p {
  margin: 0;

  color: #6d5a4f;

  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}

/* ===============================
   MENU WRAPPER
================================ */

.menu-section,
.menu-wrapper {
  position: relative;

  width: min(1200px, 100%);
  margin: 0 auto 72px;
  padding: 0;

  text-align: center;
}

.menu-wrapper:last-of-type,
.menu-section:last-of-type {
  margin-bottom: 54px;
}

/* ===============================
   MENU SUBHEADING
================================ */

.menu-subheading {
  position: relative;
  isolation: isolate;

  width: fit-content;
  margin: 0 auto 36px;
  padding: 0;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border: 0;

  color: var(--coffee);

  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
}

.menu-subheading::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;

  width: 104px;
  height: 104px;

  transform: translateX(-50%);

  border-radius: 50%;
  border: 1px solid rgba(181, 139, 96, 0.28);

  background:
    radial-gradient(circle at 32% 22%, #fffdf8 0%, #fff4e6 42%, #ead0b6 100%);

  box-shadow:
    0 18px 36px rgba(45, 26, 17, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  pointer-events: none;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.menu-subheading::after {
  content: "";

  position: relative;
  z-index: 2;

  width: 76px;
  height: 4px;

  border-radius: 999px;
  background: linear-gradient(90deg, var(--coffee), var(--accent));
}

.menu-subheading span {
  position: relative;
  z-index: 2;

  display: block;

  color: var(--coffee);

  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* ===============================
   MENU ICON
================================ */

.menu-icon,
.menu-subheading > img {
  position: relative;
  z-index: 2;

  width: 104px !important;
  height: 104px !important;

  display: block !important;

  box-sizing: border-box;

  object-fit: contain !important;
  object-position: center !important;

  padding: 18px !important;
  margin: 0 !important;

  border: 0 !important;
  border-radius: 50% !important;
  outline: none !important;
  box-shadow: none !important;

  background: transparent !important;

  mix-blend-mode: multiply;

  filter:
    contrast(1.08)
    saturate(1.08);

  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.menu-subheading:hover::before {
  transform: translateX(-50%) translateY(-5px) scale(1.05);

  border-color: rgba(181, 139, 96, 0.44);

  box-shadow:
    0 24px 48px rgba(45, 26, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.menu-subheading:hover .menu-icon,
.menu-subheading:hover > img {
  transform: translateY(-5px) scale(1.05);

  filter:
    contrast(1.1)
    saturate(1.12);
}

/* ===============================
   CART GRID LAYOUT
================================ */

.cart-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;

  justify-content: center;
  align-items: stretch;

  animation: fadeInUp 0.6s ease forwards;
}

/* ===============================
   CART ITEM CARD
================================ */

.cart {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 100%;
  min-height: 470px;

  display: flex;
  flex-direction: column;

  padding: 0;

  border-radius: 28px;
  border: 1px solid rgba(181, 139, 96, 0.24);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 242, 0.96));

  box-shadow:
    0 20px 52px rgba(45, 26, 17, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);

  text-align: center;

  opacity: 0;
  animation: fadeInStagger 0.55s ease forwards;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.cart::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(135deg, rgba(90, 56, 37, 0.98), rgba(181, 139, 96, 0.94));

  opacity: 0;
  transition: opacity 0.28s ease;
}

.cart::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -74px;
  z-index: -1;

  width: 168px;
  height: 168px;

  border-radius: 50%;
  background: rgba(181, 139, 96, 0.12);

  transition:
    transform 0.28s ease,
    background 0.28s ease;
}

.cart:nth-child(1) { animation-delay: 0.08s; }
.cart:nth-child(2) { animation-delay: 0.14s; }
.cart:nth-child(3) { animation-delay: 0.20s; }
.cart:nth-child(4) { animation-delay: 0.26s; }
.cart:nth-child(5) { animation-delay: 0.32s; }
.cart:nth-child(6) { animation-delay: 0.38s; }

.cart:hover {
  transform: translateY(-9px);
  border-color: rgba(181, 139, 96, 0.46);

  box-shadow:
    0 30px 76px rgba(45, 26, 17, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.cart:hover::before {
  opacity: 1;
}

.cart:hover::after {
  transform: scale(1.16);
  background: rgba(255, 255, 255, 0.10);
}

/* ===============================
   CART IMAGE
================================ */

.cart img {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 280px;

  object-fit: contain;
  object-position: center;

  padding: 18px;
  margin: 0;

  border-radius: 0;
  border-bottom: 1px solid rgba(181, 139, 96, 0.18);

  background:
    radial-gradient(circle at 50% 35%, #ffffff 0%, #fff7ef 58%, #efe0d1 100%);

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.cart:hover img {
  transform: scale(1.035);
  filter: brightness(1.04) contrast(1.03);
}

/* ===============================
   CART TEXT
================================ */

.cart h2,
.cart h3,
.cart h4 {
  position: relative;
  z-index: 2;

  margin: 24px 22px 10px;
  padding: 0;

  border: 0;

  color: var(--coffee);

  font-family: var(--heading-font);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;

  transition: color 0.28s ease;
}

.cart p {
  position: relative;
  z-index: 2;

  max-width: 310px;
  margin: 0 auto 16px;

  color: #6d5a4f;

  font-family: var(--body-font);
  font-size: 15.5px;
  line-height: 1.6;

  transition: color 0.28s ease;
}

.cart:hover h2,
.cart:hover h3,
.cart:hover h4,
.cart:hover p {
  color: #fff8ef;
}

/* ===============================
   BUNDLE OPTIONS
================================ */

.bundle-options {
  position: relative;
  z-index: 2;

  width: 100%;
  margin: auto auto 26px;
  padding: 0 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.bundle-option {
  width: fit-content;
  min-width: 210px;

  margin: 0 auto;
  padding: 10px 14px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;

  border-radius: 999px;
  border: 1px solid rgba(181, 139, 96, 0.18);

  background: rgba(255, 255, 255, 0.54);

  color: var(--dark);

  box-shadow: 0 8px 18px rgba(45, 26, 17, 0.05);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.bundle-option:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 139, 96, 0.34);
  background: rgba(255, 248, 239, 0.86);
}

.bundle-option:has(input[type="checkbox"]:checked) {
  border-color: rgba(181, 139, 96, 0.58);
  background: rgba(255, 244, 230, 0.95);

  box-shadow:
    0 10px 24px rgba(90, 56, 37, 0.12),
    inset 0 0 0 1px rgba(181, 139, 96, 0.18);
}

.bundle-option:has(input[type="checkbox"]:focus-visible) {
  outline: 3px solid rgba(181, 139, 96, 0.35);
  outline-offset: 3px;
}

.cart:hover .bundle-option {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 248, 239, 0.18);
}

.cart:hover .bundle-option:has(input[type="checkbox"]:checked) {
  border-color: rgba(255, 248, 239, 0.42);
  background: rgba(255, 255, 255, 0.20);
}

.bundle-option span {
  color: var(--dark);

  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;

  transition: color 0.28s ease;
}

.cart:hover .bundle-option span {
  color: #fff8ef;
}

/* ===============================
   ADVANCED CHECKBOX
================================ */

.advanced-checkbox {
  width: 24px;
  height: 24px;

  display: inline-block;
  flex: 0 0 24px;

  perspective: 800px;
}

.advanced-checkbox input {
  display: none;
}

.advanced-checkbox label {
  display: block;

  width: 100%;
  height: 100%;

  cursor: pointer;
}

.box {
  position: relative;

  width: 100%;
  height: 100%;

  transform-style: preserve-3d;

  transition: transform 0.9s cubic-bezier(.4,.2,.2,1);
}

.box > div {
  position: absolute;

  width: 100%;
  height: 100%;

  border-radius: 8px;

  background:
    linear-gradient(145deg, var(--coffee), var(--coffee-dark));

  z-index: 1;
}

.front { transform: translateZ(16px); }
.back { transform: rotateY(180deg) translateZ(16px); }
.left { transform: rotateY(-90deg) translateZ(16px); }
.right { transform: rotateY(90deg) translateZ(16px); }
.top { transform: rotateX(90deg) translateZ(16px); }
.bottom { transform: rotateX(-90deg) translateZ(16px); }

.checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;

  width: 12px;
  height: 20px;

  border: solid #00ff99;
  border-width: 0 4px 4px 0;

  opacity: 0;

  transform: translate(-50%, -50%) rotate(45deg) translateZ(30px);

  transition: opacity 0.35s ease;
}

.advanced-checkbox input:checked + label .box {
  transform: rotateX(360deg) rotateY(360deg);
}

.advanced-checkbox input:not(:checked) + label .box {
  transform: rotateX(0deg) rotateY(0deg);
}

.advanced-checkbox input:checked + label .checkmark {
  opacity: 1;
}

.bundle-option input[type="checkbox"] {
  width: 24px;
  height: 24px;

  cursor: pointer;
}

/* ===============================
   QUOTE SUMMARY BOX
================================ */

.quote-cart {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: min(520px, 100%);
  margin: 12px auto 0;
  padding: 34px 28px 32px;

  border-radius: 28px;
  border: 1px solid rgba(181, 139, 96, 0.28);

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 242, 0.96));

  box-shadow:
    0 22px 58px rgba(45, 26, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);

  text-align: center;

  animation: fadeInUp 0.6s ease;
}

.quote-cart::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  z-index: -1;

  width: 180px;
  height: 180px;

  border-radius: 50%;
  background: rgba(181, 139, 96, 0.12);
}

.quote-cart h3 {
  margin: 0 0 20px;

  color: var(--coffee);

  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.quote-cart h3::before {
  content: none !important;
}

.quote-cart ul {
  list-style: none !important;

  margin: 0 0 20px !important;
  padding: 0 !important;
}

.quote-cart li {
  margin-bottom: 10px;
  padding: 11px 14px;

  border-radius: 14px;
  border: 1px solid rgba(181, 139, 96, 0.16);

  background: rgba(255, 255, 255, 0.62);

  color: #4d3a2f;

  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.quote-cart li::before {
  content: none !important;
}

.quote-cart .total {
  margin-top: 14px;

  color: var(--coffee);

  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.quote-cart .total span {
  color: var(--accent);
}

/* ===============================
   RESERVE BUTTON
================================ */

.quote-cart .btn-reserve {
  min-height: 52px;
  margin-top: 22px;
  padding: 0 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color: #fff8ef;
  background:
    linear-gradient(135deg, var(--coffee), var(--accent));

  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.02em;

  box-shadow: 0 14px 30px rgba(90, 56, 37, 0.24);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.quote-cart .btn-reserve:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 18px 38px rgba(90, 56, 37, 0.32);
}

.quote-cart .btn-reserve.disabled,
.quote-cart .btn-reserve[aria-disabled="true"] {
  opacity: 0.52;
  filter: grayscale(0.35);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* ===============================
   ANIMATIONS
================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInStagger {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1180px) {
  .cart-grid {
    width: min(820px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.quote-page-body .quote-header h1,
  body.quote-page-body .quote-header .home-title {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  body.quote-page-body .quote-header {
    padding: 118px 18px 64px;
  }

  .quote-header-content {
    width: min(620px, 100%);
  }

  .quote-kicker {
    margin-bottom: 16px;
  }

  body.quote-page-body .quote-header h1,
  body.quote-page-body .quote-header .home-title {
    max-width: 560px;
    font-size: clamp(34px, 8.5vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  body.quote-page-body .quote-header h1::after,
  body.quote-page-body .quote-header .home-title::after {
    width: 78px;
    margin-top: 16px;
  }

  body.quote-page-body .quote-header p {
    max-width: 520px;
    font-size: 15.5px;
  }

  .quote-page,
  main.container.quote-page {
    width: 100% !important;
    max-width: 100% !important;

    padding: 46px 14px 78px !important;

    box-sizing: border-box !important;
  }

  .menu-wrapper,
  .menu-section {
    width: 100% !important;
    max-width: 430px !important;

    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 58px !important;

    padding: 0 !important;

    text-align: center !important;
  }

  .menu-subheading {
    margin-bottom: 28px !important;
  }

  .menu-subheading::before,
  .menu-icon,
  .menu-subheading > img {
    width: 92px !important;
    height: 92px !important;
  }

  .menu-icon,
  .menu-subheading > img {
    padding: 16px !important;
  }

  .menu-subheading span {
    font-size: clamp(27px, 8vw, 34px) !important;
  }

  .cart-grid {
    width: 100% !important;
    max-width: 390px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 0 !important;

    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;

    justify-content: center !important;
    justify-items: center !important;
  }

  .cart {
    width: 100% !important;
    max-width: 390px !important;
    min-width: 0 !important;
    min-height: auto !important;

    margin-left: auto !important;
    margin-right: auto !important;

    border-radius: 24px !important;
  }

  .cart img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;

    padding: 13px !important;

    object-fit: contain !important;
  }

  .cart h2,
  .cart h3,
  .cart h4 {
    margin-top: 22px;
    font-size: clamp(24px, 7.5vw, 29px) !important;
  }

  .cart p {
    max-width: 300px;
    font-size: 15px;
  }

  .bundle-options {
    padding: 0 18px 24px;
  }

  .bundle-option {
    width: 100%;
    max-width: 280px;
    min-width: 0;

    justify-content: flex-start;
  }

  .quote-cart {
    width: 100% !important;
    max-width: 390px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 30px 22px 28px !important;

    border-radius: 24px !important;
  }

  .quote-cart h3 {
    font-size: 26px;
  }

  .quote-cart .btn-reserve {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 480px) {
  body.quote-page-body .site-nav,
  body.quote-page-body nav {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 12px !important;
  }

  body.quote-page-body .nav-container {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  body.quote-page-body .nav-menu {
    display: grid !important;
  }

  body.quote-page-body .nav-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 13px 14px !important;
    font-size: 13.5px !important;
  }
}

@media (max-width: 430px) {
  body.quote-page-body .quote-header {
    padding: 108px 14px 56px;
  }

  .quote-kicker {
    padding: 7px 12px;
    font-size: 10px;
    margin-bottom: 14px;
  }

  body.quote-page-body .quote-header h1,
  body.quote-page-body .quote-header .home-title {
    max-width: 360px;
    font-size: clamp(30px, 9vw, 38px) !important;
    line-height: 1.1;
  }

  body.quote-page-body .quote-header p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
  }

  .quote-page,
  main.container.quote-page {
    padding: 40px 12px 78px !important;
  }

  .menu-wrapper,
  .menu-section {
    max-width: 350px !important;
  }

  .cart-grid,
  .cart,
  .quote-cart {
    max-width: 340px !important;
  }

  .menu-subheading::before,
  .menu-icon,
  .menu-subheading > img {
    width: 84px !important;
    height: 84px !important;
  }

  .menu-icon,
  .menu-subheading > img {
    padding: 14px !important;
  }

  .cart img {
    aspect-ratio: 1 / 0.84 !important;
  }

  .cart h2,
  .cart h3,
  .cart h4 {
    font-size: 26px !important;
  }

  .bundle-option {
    max-width: 260px;
    padding: 9px 12px;
  }

  .bundle-option span {
    font-size: 13.5px;
  }

  .quote-cart {
    padding: 28px 20px 26px !important;
  }
}

@media (max-width: 360px) {
  body.quote-page-body .quote-header {
    padding: 104px 12px 52px;
  }

  body.quote-page-body .quote-header h1,
  body.quote-page-body .quote-header .home-title {
    max-width: 320px;
    font-size: 29px !important;
  }

  body.quote-page-body .quote-header p {
    font-size: 14px;
  }

  .menu-wrapper,
  .menu-section {
    max-width: 320px !important;
  }

  .cart-grid,
  .cart,
  .quote-cart {
    max-width: 310px !important;
  }

  .menu-subheading span {
    font-size: 25px !important;
  }

  .menu-subheading::before,
  .menu-icon,
  .menu-subheading > img {
    width: 78px !important;
    height: 78px !important;
  }

  .menu-icon,
  .menu-subheading > img {
    padding: 13px !important;
  }

  .cart h2,
  .cart h3,
  .cart h4 {
    font-size: 24px !important;
  }

  .cart p,
  .quote-cart li {
    font-size: 14px;
  }

  .bundle-option {
    max-width: 240px;
  }
}

/* ===============================
   REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {
  .quote-header,
  .quote-header::before,
  .quote-header::after,
  .cart,
  .cart::before,
  .cart::after,
  .cart img,
  .bundle-option,
  .box,
  .checkmark,
  .quote-cart,
  .quote-cart .btn-reserve,
  .menu-icon,
  .menu-subheading::before,
  .menu-subheading > img {
    animation: none !important;
    transition: none !important;
  }

  .cart {
    opacity: 1;
  }
}

/* =========================================================
   PACKAGE VIEW SWITCH
   Card View | Compact View
========================================================= */

.quote-view-toolbar {
  position: relative;
  z-index: 3;

  width: min(820px, 100%);
  margin: 0 auto 58px;
  padding: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  border: 1px solid rgba(181, 139, 96, 0.22);
  border-radius: 24px;

  background:
    radial-gradient(circle at top right, rgba(181, 139, 96, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 240, 0.94));

  box-shadow:
    0 18px 44px rgba(45, 26, 17, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  box-sizing: border-box;
}

.quote-view-toolbar-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;

  text-align: left;
}

.quote-view-eyebrow {
  color: var(--accent);

  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quote-view-toolbar-copy strong {
  color: var(--coffee);

  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.quote-view-toolbar-copy small {
  color: #6d5a4f;

  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.45;
}

.quote-view-switch {
  flex: 0 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;

  min-width: 286px;
  padding: 4px;

  border: 1px solid rgba(181, 139, 96, 0.28);
  border-radius: 16px;

  background: rgba(246, 228, 210, 0.68);
}

.quote-view-btn {
  min-width: 0;
  min-height: 44px;
  padding: 8px 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 0;
  border-radius: 12px;

  color: var(--coffee);
  background: transparent;

  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;

  cursor: pointer;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.quote-view-btn:hover {
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(-1px);
}

.quote-view-btn.active,
.quote-view-btn[aria-pressed="true"] {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee));
  box-shadow: 0 8px 18px rgba(45, 26, 17, 0.22);
}

.quote-view-btn:focus-visible {
  outline: 3px solid rgba(181, 139, 96, 0.48);
  outline-offset: 3px;
}

.quote-view-icon {
  font-size: 16px;
  line-height: 1;
}

/* Compact layout: short horizontal package cards. */
.quote-page.quote-compact-view .menu-wrapper,
.quote-page.quote-compact-view .menu-section {
  width: min(1180px, 100%);
  max-width: none;
  margin-bottom: 48px;
}

.quote-page.quote-compact-view .menu-subheading {
  margin-bottom: 22px;
}

.quote-page.quote-compact-view .cart-grid {
  width: min(1180px, 100%);
  max-width: none;

  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;

  align-items: stretch;
}

.quote-page.quote-compact-view .cart {
  min-height: 214px;

  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: stretch;

  border-radius: 22px;
  text-align: left;
}

.quote-page.quote-compact-view .cart:hover {
  transform: translateY(-4px);
}

.quote-page.quote-compact-view .cart img {
  grid-column: 1;
  grid-row: 1 / 3;

  width: 100%;
  height: 100%;
  min-height: 214px;

  padding: 12px;

  border-right: 1px solid rgba(181, 139, 96, 0.18);
  border-bottom: 0;

  object-fit: contain;
}

.quote-page.quote-compact-view .cart h2,
.quote-page.quote-compact-view .cart h3,
.quote-page.quote-compact-view .cart h4 {
  grid-column: 2;
  grid-row: 1;

  width: 100%;
  margin: 19px 17px 9px;

  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.08;
  text-align: left;
}

.quote-page.quote-compact-view .bundle-options {
  grid-column: 2;
  grid-row: 2;

  width: 100%;
  margin: 0;
  padding: 0 17px 17px;

  align-items: stretch;
  justify-content: flex-start;
  gap: 7px;
}

.quote-page.quote-compact-view .bundle-option {
  width: 100%;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 7px 10px;

  gap: 9px;
  justify-content: flex-start;

  border-radius: 12px;
}

.quote-page.quote-compact-view .advanced-checkbox,
.quote-page.quote-compact-view .bundle-option input[type="checkbox"] {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.quote-page.quote-compact-view .bundle-option span {
  font-size: 12px;
}

@media (max-width: 900px) {
  .quote-page.quote-compact-view .cart-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(650px, 100%);
  }
}

@media (max-width: 768px) {
  .quote-view-toolbar {
    width: min(430px, 100%);
    margin-bottom: 46px;
    padding: 15px;

    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .quote-view-toolbar-copy {
    align-items: center;
    text-align: center;
  }

  .quote-view-toolbar-copy strong {
    font-size: 20px;
  }

  .quote-view-toolbar-copy small {
    max-width: 310px;
  }

  .quote-view-switch {
    width: 100%;
    min-width: 0;
  }

  .quote-page.quote-compact-view .menu-wrapper,
  .quote-page.quote-compact-view .menu-section {
    width: 100% !important;
    max-width: 430px !important;
    margin-bottom: 42px !important;
  }

  .quote-page.quote-compact-view .menu-subheading {
    margin-bottom: 20px !important;
  }

  .quote-page.quote-compact-view .cart-grid {
    width: 100% !important;
    max-width: 390px !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .quote-page.quote-compact-view .cart {
    width: 100% !important;
    max-width: 390px !important;
    min-height: 184px !important;

    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
    grid-template-rows: auto 1fr !important;

    border-radius: 20px !important;
  }

  .quote-page.quote-compact-view .cart img {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;

    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 184px !important;
    aspect-ratio: auto !important;

    padding: 9px !important;

    border-right: 1px solid rgba(181, 139, 96, 0.18) !important;
    border-bottom: 0 !important;

    object-fit: contain !important;
  }

  .quote-page.quote-compact-view .cart h2,
  .quote-page.quote-compact-view .cart h3,
  .quote-page.quote-compact-view .cart h4 {
    grid-column: 2 !important;
    grid-row: 1 !important;

    margin: 14px 11px 7px !important;

    font-size: 20px !important;
    line-height: 1.08 !important;
    text-align: left !important;
  }

  .quote-page.quote-compact-view .bundle-options {
    grid-column: 2 !important;
    grid-row: 2 !important;

    margin: 0 !important;
    padding: 0 10px 12px 0 !important;

    gap: 6px !important;
    align-items: stretch !important;
  }

  .quote-page.quote-compact-view .bundle-option {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 6px 8px !important;

    gap: 8px !important;
    border-radius: 10px !important;
  }

  .quote-page.quote-compact-view .advanced-checkbox,
  .quote-page.quote-compact-view .bundle-option input[type="checkbox"] {
    width: 19px !important;
    height: 19px !important;
    flex-basis: 19px !important;
  }

  .quote-page.quote-compact-view .bundle-option span {
    font-size: 11px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 430px) {
  .quote-view-toolbar {
    max-width: 340px;
    margin-bottom: 40px;
    padding: 13px;
    border-radius: 20px;
  }

  .quote-view-btn {
    min-height: 41px;
    padding: 7px 8px;
    font-size: 9.5px;
  }

  .quote-page.quote-compact-view .menu-wrapper,
  .quote-page.quote-compact-view .menu-section,
  .quote-page.quote-compact-view .cart-grid,
  .quote-page.quote-compact-view .cart {
    max-width: 340px !important;
  }

  .quote-page.quote-compact-view .cart {
    min-height: 174px !important;
    grid-template-columns: 104px minmax(0, 1fr) !important;
  }

  .quote-page.quote-compact-view .cart img {
    min-height: 174px !important;
    padding: 7px !important;
  }

  .quote-page.quote-compact-view .cart h2,
  .quote-page.quote-compact-view .cart h3,
  .quote-page.quote-compact-view .cart h4 {
    margin: 12px 9px 6px !important;
    font-size: 18px !important;
  }

  .quote-page.quote-compact-view .bundle-options {
    padding: 0 8px 10px 0 !important;
    gap: 5px !important;
  }

  .quote-page.quote-compact-view .bundle-option {
    padding: 5px 7px !important;
    gap: 7px !important;
  }

  .quote-page.quote-compact-view .bundle-option span {
    font-size: 10px !important;
  }
}

@media (max-width: 360px) {
  .quote-view-toolbar {
    max-width: 310px;
  }

  .quote-view-toolbar-copy small {
    display: none;
  }

  .quote-page.quote-compact-view .menu-wrapper,
  .quote-page.quote-compact-view .menu-section,
  .quote-page.quote-compact-view .cart-grid,
  .quote-page.quote-compact-view .cart {
    max-width: 310px !important;
  }

  .quote-page.quote-compact-view .cart {
    grid-template-columns: 92px minmax(0, 1fr) !important;
  }

  .quote-page.quote-compact-view .cart h2,
  .quote-page.quote-compact-view .cart h3,
  .quote-page.quote-compact-view .cart h4 {
    font-size: 17px !important;
  }

  .quote-page.quote-compact-view .bundle-option span {
    font-size: 9.5px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-view-btn {
    transition: none !important;
  }
}

/* =========================================================
   FINAL: CHOOSE BUTTONS + FLOATING MY ORDER CART
========================================================= */

.quote-choice-option {
  min-height: 56px;
  padding: 9px 10px 9px 16px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.quote-choice-hidden-input,
.quote-choice-unused {
  display: none !important;
}

.quote-choice-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quote-choice-option > span:not(.quote-choice-hidden-input):not(.quote-choice-unused):not(.quote-choice-pill) {
  min-width: 0;
  color: var(--dark);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.quote-choice-option::after {
  content: "Choose this";
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #2d1c13;
  background: linear-gradient(135deg, #fff1df, #d9ae7c);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow:
    0 9px 18px rgba(181, 139, 96, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.quote-choice-option:has(input:checked)::after {
  content: "Selected";
  color: #fff8ef;
  background: linear-gradient(135deg, var(--coffee), var(--accent));
}

.cart:hover .quote-choice-option > span:not(.quote-choice-hidden-input):not(.quote-choice-unused):not(.quote-choice-pill) {
  color: #fff8ef;
}

.quote-choice-pill {
  display: none !important;
}

.quote-floating-cart {
  position: fixed !important;
  --quote-drawer-top: 84px;
  right: 22px;
  bottom: 76px;
  z-index: 9970;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 0;
  pointer-events: none;
  transform: none !important;
  transition:
    opacity 0.22s ease;
}

.quote-floating-cart[hidden] {
  display: none !important;
}

.quote-floating-cart.has-items {
  opacity: 1;
  pointer-events: auto;
  transform: none !important;
}

.quote-floating-cart::before {
  content: none !important;
}

.quote-cart-toggle {
  min-height: 54px;
  padding: 0 14px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(217, 174, 124, 0.24);
  border-radius: 999px;
  color: #fff8ef;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 174, 124, 0.22), transparent 38%),
    linear-gradient(135deg, #2a1710, #5a3825);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 16px 34px rgba(45, 26, 17, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.quote-floating-cart.has-items .quote-cart-toggle {
  animation: quoteCartButtonIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.quote-cart-toggle:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 20px 42px rgba(45, 26, 17, 0.30);
}

.quote-cart-toggle-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #2d1c13;
  background: linear-gradient(135deg, #fff1df, #d9ae7c);
  font-size: 15px;
}

.quote-cart-count {
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fffaf4;
  border-radius: 999px;
  color: #fff;
  background: #c0392b;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.quote-cart-panel {
  display: none !important;
}

.quote-floating-cart.is-open .quote-cart-panel {
  display: none !important;
}

.quote-cart-panel h3 {
  font-size: 24px;
}

body.quote-has-cart {
  padding-bottom: 132px;
}

@media (max-width: 760px) {
  .quote-choice-option {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 12px;
  }

  .quote-choice-option::after {
    width: 100%;
  }

  .quote-floating-cart {
    --quote-drawer-top: 76px;
    right: 12px;
    bottom: 82px;
    transform: none !important;
  }

  .quote-floating-cart.has-items {
    transform: none !important;
  }

  .quote-cart-panel {
    right: 50%;
    bottom: calc(100% + 12px);
    width: min(380px, calc(100vw - 32px));
    max-height: min(350px, calc(100svh - 180px));
    padding: 20px 18px 18px;
    transform: translateX(50%) translateY(10px) scale(0.98);
    transform-origin: bottom center;
  }

  .quote-floating-cart.is-open .quote-cart-panel {
    transform: translateX(50%) translateY(0) scale(1);
  }

  .quote-cart-panel h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .quote-cart-panel .btn-reserve {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 430px) {
  .quote-floating-cart {
    bottom: 74px;
  }

  .quote-cart-toggle {
    min-height: 50px;
    padding-right: 12px;
    gap: 8px;
  }

  .quote-cart-toggle-icon {
    width: 30px;
    height: 30px;
  }

  .quote-cart-panel {
    width: min(340px, calc(100vw - 24px));
    max-height: min(330px, calc(100svh - 164px));
    border-radius: 22px;
  }
}

/* =========================================================
   FINAL: RESERVATION CART DRAWER
========================================================= */

.quote-cart-toggle span:not(.quote-cart-toggle-icon):not(.quote-cart-count) {
  white-space: nowrap;
}

.quote-floating-cart::after {
  content: "";
  position: fixed;
  top: var(--quote-drawer-top);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9975;
  background: rgba(31, 18, 12, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.quote-floating-cart.is-open::after {
  opacity: 1;
  pointer-events: auto;
}

.quote-floating-cart .quote-cart-panel {
  position: fixed !important;
  top: var(--quote-drawer-top) !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 9980 !important;

  width: min(500px, 100vw) !important;
  height: calc(100dvh - var(--quote-drawer-top)) !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: hidden !important;

  display: grid !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto !important;

  border: 0 !important;
  border-left: 1px solid rgba(181, 139, 96, 0.28) !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, #fffdf8 0%, #f7eadc 100%) !important;
  box-shadow: -24px 0 70px rgba(31, 18, 12, 0.30) !important;

  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(104%, 0, 0) !important;
  transform-origin: center right !important;
  will-change: transform, opacity;
  transition:
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.quote-floating-cart.is-open .quote-cart-panel {
  display: grid !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) !important;
}

.quote-cart-panel-header {
  position: relative;
  padding: 32px 78px 28px 28px;
  color: #fff8ef;
  background:
    radial-gradient(circle at 88% 6%, rgba(217, 174, 124, 0.32), transparent 35%),
    linear-gradient(135deg, #2a1710, #5a3825, #8b5d3b);
}

.quote-cart-panel-header p {
  width: fit-content;
  margin: 0 0 10px;
  padding: 10px 18px;
  border: 1px solid rgba(217, 174, 124, 0.32);
  border-radius: 999px;
  color: #e9c596;
  background: rgba(255, 255, 255, 0.08);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-cart-panel h3,
.quote-cart-panel-header h3 {
  margin: 0 !important;
  color: #fff8ef !important;
  font-family: var(--heading-font);
  font-size: clamp(34px, 5vw, 46px) !important;
  line-height: 0.98;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.quote-cart-panel-close {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217, 174, 124, 0.28);
  border-radius: 50%;
  color: #fff8ef;
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.quote-cart-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(181, 139, 96, 0.18);
  background: rgba(255, 253, 248, 0.92);
}

.quote-cart-steps span {
  position: relative;
  color: rgba(45, 28, 19, 0.52);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.quote-cart-steps span::before {
  content: "";
  width: 34px;
  height: 34px;
  margin: 0 auto 7px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(90, 56, 37, 0.18);
  border-radius: 50%;
  background: #fffaf4;
}

.quote-cart-steps span:nth-child(1)::before { content: "1"; }
.quote-cart-steps span:nth-child(2)::before { content: "2"; }
.quote-cart-steps span:nth-child(3)::before { content: "3"; }

.quote-cart-steps .is-active {
  color: #5a3825;
}

.quote-cart-steps .is-active::before {
  color: #fff8ef;
  border-color: #5a3825;
  background: linear-gradient(135deg, #2a1710, #5a3825);
  box-shadow: 0 8px 18px rgba(45, 26, 17, 0.18);
}

.quote-floating-cart .quote-cart-panel ul {
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow-y: auto;
  list-style: none !important;
}

.quote-reservation-cart-item {
  display: grid !important;
  grid-template-columns: 76px minmax(0, 1fr) auto 38px;
  align-items: center;
  gap: 14px;
  margin: 0 !important;
  padding: 18px 18px 18px 22px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(181, 139, 96, 0.18) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: none !important;
  text-align: left !important;
}

.quote-reservation-item-image {
  width: 76px;
  height: 76px;
  padding: 6px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #5a3825;
  background: #fff7ee;
  border: 1px solid rgba(181, 139, 96, 0.20);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
}

.quote-reservation-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quote-reservation-item-copy {
  min-width: 0;
}

.quote-reservation-item-copy strong,
.quote-reservation-cart-item b {
  color: #2d1c13;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.quote-reservation-item-copy strong {
  display: block;
  margin-bottom: 5px;
}

.quote-reservation-item-copy span {
  color: #80695b;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.quote-reservation-cart-item b {
  white-space: nowrap;
  text-align: right;
}

.quote-reservation-remove {
  width: 34px;
  height: 34px;
  padding: 0;

  display: inline-grid;
  place-items: center;

  border: 1px solid rgba(90, 56, 37, 0.14);
  border-radius: 50%;

  color: #6f5545;
  background: rgba(90, 56, 37, 0.06);

  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.quote-reservation-remove:hover {
  color: #fff8ef;
  background: #9f2638;
  border-color: #9f2638;
  transform: translateY(-1px);
}

.quote-reservation-remove:focus-visible {
  outline: 3px solid rgba(159, 38, 56, 0.24);
  outline-offset: 2px;
}

.quote-cart-panel .total {
  margin: 0 !important;
  padding: 22px 24px 8px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  color: #2d1c13 !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0 !important;
  font-weight: 950 !important;
  line-height: 1;
}

.quote-cart-panel .total::before {
  content: "Reservation Total";
  margin-right: auto;
  color: #80695b !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quote-cart-panel .total > span {
  color: #2d1c13;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 36px) !important;
  font-weight: 950;
  line-height: 1;
}

.quote-cart-panel .total > span::before {
  content: "₱";
}

.quote-cart-panel .btn-reserve {
  width: calc(100% - 48px);
  min-height: 58px;
  margin: 18px 24px 28px !important;
  border-radius: 16px;
  background: #0f9858 !important;
  box-shadow: 0 14px 28px rgba(15, 152, 88, 0.20) !important;
}

@media (max-width: 760px) {
  .quote-floating-cart .quote-cart-panel {
    width: 100vw !important;
  }

  .quote-cart-panel-header {
    padding: 28px 74px 24px 24px;
  }

  .quote-reservation-cart-item {
    grid-template-columns: 66px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 16px 14px !important;
  }

  .quote-reservation-cart-item b {
    grid-column: 2;
  }

  .quote-reservation-remove {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

/* Keep the drawer fixed to the viewport, not the floating button. */
.quote-floating-cart.is-open {
  transform: none !important;
}

@media (max-width: 760px) {
  .quote-floating-cart.is-open {
    --quote-drawer-top: 76px;
    left: auto !important;
    right: 12px !important;
    transform: none !important;
  }
}

@media (max-width: 520px) {
  .quote-floating-cart {
    --quote-drawer-top: 70px;
  }

  .quote-floating-cart.is-open {
    --quote-drawer-top: 70px;
  }
}

body.quote-cart-open {
  overflow: hidden;
}

@keyframes quoteCartButtonIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-floating-cart.has-items .quote-cart-toggle {
    animation: none !important;
  }

  .quote-floating-cart .quote-cart-panel,
  .quote-floating-cart.is-open::after {
    transition: none !important;
  }
}

/* =========================================================
   FINAL: TOUCH PERFORMANCE + NO STICKY MOBILE HOVER
========================================================= */

@media (hover: none), (pointer: coarse) {
  .menu-subheading:hover::before {
    transform: translateX(-50%) !important;
    border-color: rgba(181, 139, 96, 0.28) !important;
    box-shadow:
      0 18px 36px rgba(45, 26, 17, 0.11),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }

  .menu-subheading:hover .menu-icon,
  .menu-subheading:hover > img,
  .cart:hover,
  .cart:hover img,
  .bundle-option:hover,
  .quote-cart-toggle:hover {
    transform: none !important;
    filter: none !important;
  }

  .cart:hover {
    border-color: rgba(181, 139, 96, 0.24) !important;
    box-shadow:
      0 20px 52px rgba(45, 26, 17, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }

  .cart:hover::before {
    opacity: 0 !important;
  }

  .cart:hover::after {
    transform: none !important;
    background: rgba(181, 139, 96, 0.12) !important;
  }

  .cart:hover h2,
  .cart:hover h3,
  .cart:hover h4 {
    color: var(--coffee) !important;
  }

  .cart:hover p {
    color: #6d5a4f !important;
  }

  .cart:hover .bundle-option {
    border-color: rgba(181, 139, 96, 0.18) !important;
    background: rgba(255, 255, 255, 0.54) !important;
  }

  .cart:hover .bundle-option:has(input[type="checkbox"]:checked),
  .bundle-option:has(input[type="checkbox"]:checked) {
    border-color: rgba(181, 139, 96, 0.58) !important;
    background: rgba(255, 244, 230, 0.95) !important;
  }

  .cart:hover .bundle-option span,
  .cart:hover .quote-choice-option > span:not(.quote-choice-hidden-input):not(.quote-choice-unused):not(.quote-choice-pill) {
    color: var(--dark) !important;
  }

  .quote-floating-cart.has-items .quote-cart-toggle {
    animation: none !important;
  }

  .quote-floating-cart::after {
    transition: opacity 0.16s ease !important;
  }

  .quote-floating-cart .quote-cart-panel {
    box-shadow: -12px 0 34px rgba(31, 18, 12, 0.22) !important;
    transition:
      opacity 0.16s ease,
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
}

/* =========================================================
   FINAL: KEEP NAV BRAND CONSISTENT ON QUOTE PAGE
========================================================= */

body.quote-page-body .site-nav .nav-brand {
  width: 232px !important;
  min-width: 232px !important;
  height: 74px !important;
  align-items: center !important;
}

body.quote-page-body .site-nav .nav-brand-text {
  width: 232px !important;
  height: 74px !important;
  justify-content: center !important;
  gap: 5px !important;
}

body.quote-page-body .site-nav .nav-brand-wordmark {
  width: 180px !important;
  height: 48px !important;
  margin: -1px 0 0 -4px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

body.quote-page-body .site-nav .nav-brand-text small {
  width: 222px !important;
  max-width: 222px !important;
  margin-left: 0 !important;
  white-space: nowrap !important;
}

@media (max-width: 520px) {
  body.quote-page-body .site-nav .nav-brand {
    width: 178px !important;
    min-width: 178px !important;
    height: 62px !important;
  }

  body.quote-page-body .site-nav .nav-brand-text {
    width: 178px !important;
    height: 62px !important;
    gap: 4px !important;
  }

  body.quote-page-body .site-nav .nav-brand-wordmark {
    width: 145px !important;
    height: 38px !important;
    margin: -1px 0 0 -4px !important;
  }

  body.quote-page-body .site-nav .nav-brand-text small {
    width: 172px !important;
    max-width: 172px !important;
    font-size: 8.5px !important;
    letter-spacing: 0.12em !important;
  }
}

body.quote-page-body .site-nav .nav-container {
  position: relative !important;
  justify-content: flex-end !important;
}

body.quote-page-body .site-nav .nav-brand {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

body.quote-page-body .site-nav .nav-brand:hover {
  transform: translateY(-50%) !important;
}

body.quote-page-body .site-nav .nav-menu {
  margin-left: auto !important;
}

/* =========================================================
   FINAL: CAFE ORDER STYLE APPLIED TO RESERVATION CART
========================================================= */

.quote-floating-cart.is-open {
  transform: none !important;
}

.quote-floating-cart.is-open .quote-cart-toggle {
  opacity: 0;
  pointer-events: none;
}

.quote-floating-cart.is-open .quote-cart-panel {
  display: grid !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.quote-floating-cart .quote-cart-panel {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 12000 !important;
  width: min(560px, 100vw) !important;
  height: 100dvh !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto !important;
  border: 0 !important;
  border-left: 1px solid rgba(181, 139, 96, 0.28) !important;
  border-radius: 0 !important;
  background: #fffaf4 !important;
  box-shadow: -24px 0 70px rgba(31, 18, 12, 0.30) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(104%) !important;
  transform-origin: center right !important;
  transition:
    opacity 0.22s ease,
    transform 0.26s ease !important;
}

.quote-cart-panel-header {
  min-height: 172px;
  padding: 28px 78px 28px 28px !important;
  display: flex;
  align-items: end;
  background:
    radial-gradient(circle at 92% 5%, rgba(217, 174, 124, 0.28), transparent 34%),
    linear-gradient(135deg, #2a1710 0%, #4a291b 54%, #8b5d3b 100%) !important;
}

.quote-cart-panel-header > div {
  width: 100%;
}

.quote-cart-panel-header p {
  margin-bottom: 12px !important;
  padding: 10px 18px !important;
  color: #e9c596 !important;
  border-color: rgba(217, 174, 124, 0.30) !important;
}

.quote-cart-panel-header h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(38px, 5vw, 52px) !important;
  font-weight: 950 !important;
  letter-spacing: -0.04em !important;
}

.quote-cart-panel-close {
  top: 26px !important;
  right: 24px !important;
  width: 52px !important;
  height: 52px !important;
  background: rgba(255, 255, 255, 0.13) !important;
}

.quote-cart-steps {
  padding: 18px 22px 16px !important;
  background: #fffaf4 !important;
}

.quote-cart-steps span {
  color: rgba(45, 28, 19, 0.42) !important;
}

.quote-cart-steps span::after {
  content: "";
  position: absolute;
  top: 17px;
  right: -50%;
  width: 100%;
  height: 3px;
  background: rgba(181, 139, 96, 0.24);
}

.quote-cart-steps span:last-child::after {
  content: none;
}

.quote-cart-steps span::before {
  position: relative;
  z-index: 1;
}

.quote-floating-cart .quote-cart-panel ul {
  padding: 0 !important;
  background: #fffaf4;
}

.quote-reservation-cart-item {
  margin: 0 !important;
  padding: 20px 24px !important;
  grid-template-columns: 86px minmax(0, 1fr) auto 34px !important;
  align-items: center !important;
  gap: 18px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-top: 1px solid rgba(181, 139, 96, 0.16) !important;
  border-bottom: 1px solid rgba(181, 139, 96, 0.16) !important;
}

.quote-reservation-item-image {
  width: 86px !important;
  height: 86px !important;
  border-radius: 18px !important;
}

.quote-reservation-item-copy strong {
  color: #2d1c13 !important;
  font-size: clamp(20px, 2.2vw, 25px) !important;
  line-height: 1.12 !important;
}

.quote-reservation-item-copy span {
  display: block;
  margin-top: 8px;
  color: #7a6253 !important;
  font-size: 15px !important;
}

.quote-reservation-cart-item b {
  color: #5a3825 !important;
  font-size: 18px !important;
}

.quote-reservation-remove {
  width: 32px !important;
  height: 32px !important;
  align-self: center !important;
  justify-self: end !important;
  border-color: rgba(90, 56, 37, 0.16) !important;
  background: rgba(90, 56, 37, 0.06) !important;
  color: #6f5545 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

.quote-reservation-remove:hover {
  color: #fffaf4 !important;
  background: #8f2e28 !important;
  border-color: #8f2e28 !important;
}

.quote-cart-panel .total {
  padding: 28px 24px 10px !important;
  background: #fffaf4;
}

.quote-cart-panel .total > span {
  color: #2d1c13 !important;
  font-size: clamp(34px, 5vw, 42px) !important;
  letter-spacing: -0.04em;
}

.quote-cart-panel .btn-reserve {
  min-height: 64px !important;
  margin: 22px 24px 28px !important;
  border-radius: 16px !important;
  background: #11945a !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  box-shadow: 0 16px 28px rgba(17, 148, 90, 0.22) !important;
}

@media (max-width: 760px) {
  .quote-floating-cart.is-open {
    left: auto !important;
    right: 0 !important;
    transform: none !important;
  }

  .quote-floating-cart .quote-cart-panel {
    width: 100vw !important;
  }

  .quote-cart-panel-header {
    min-height: 168px;
    padding: 26px 74px 26px 24px !important;
  }

  .quote-reservation-cart-item {
    grid-template-columns: 72px minmax(0, 1fr) 32px !important;
    align-items: start;
    padding: 18px 20px !important;
  }

  .quote-reservation-item-image {
    width: 72px !important;
    height: 72px !important;
  }

  .quote-reservation-cart-item b {
    grid-column: 2 !important;
    margin-top: 4px;
  }

  .quote-reservation-remove {
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
  }
}
