/* refinements — Reviews, responsive polish and later override layers.
   Load order matters: see the <link> order in index.html. */

/* ---------- v2 improvements ---------- */
.icon-svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.hero-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.hero-icon-row .mini-trust {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(31, 51, 36, .1);
  background: rgba(255, 255, 255, .55);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(31, 51, 36, .72);
}

.video-section {
  padding: 72px 0;
  background: #fff;
}

.video-wrap {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px -35px rgba(31, 51, 36, .45);
  background: #17241a;
}

.video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-caption {
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 14px 35px -28px rgba(31, 51, 36, .45);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  font-weight: 700;
  color: var(--accent);
}

.final-cta {
  padding: 82px 24px;
  background: var(--leaf-900);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 14px;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.final-cta .btn-dark {
  background: #fff;
  color: var(--leaf-900);
  box-shadow: none;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 17, .42);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 94vw);
  background: var(--cream);
  z-index: 91;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: -20px 0 60px -35px rgba(0, 0, 0, .55);
  padding: 22px;
  overflow: auto;
}

.cart-drawer.open {
  transform: none;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-close {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--leaf-900);
}

.drawer-empty {
  padding: 40px 0;
  text-align: center;
  color: rgba(31, 51, 36, .6);
}

.pill-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-light);
  color: var(--leaf-800);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.love-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 520px;
}

.love-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--leaf-900);
}

.love-list .icon-tile-sm {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

@media (max-width:560px) {
  .love-list {
    grid-template-columns: 1fr;
  }
}

@media(max-width:850px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:700px) {
  .video-section {
    padding: 55px 0;
  }

  .video-wrap {
    border-radius: 18px;
  }

  .cart-drawer {
    padding: 18px;
  }
}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ================= V9 PROFESSIONAL RESPONSIVE POLISH ================= */
.nav-in {
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a {
  font-size: 11px;
  color: rgba(31, 51, 36, .65);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}

.nav-links a:hover {
  color: var(--leaf-900);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-cart-link {
  border: 1px solid rgba(31, 51, 36, .12);
  background: rgba(255, 255, 255, .72);
  color: var(--leaf-900);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.nav-cart-link:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -14px rgba(31, 51, 36, .55);
}

.nav-cart-link span {
  display: inline-flex;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  margin-left: 4px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 9px;
}

.nav-order-btn {
  padding: 10px 18px !important;
  flex-shrink: 0;
  white-space: nowrap;
}

.how-head {
  max-width: 650px;
  margin-bottom: 34px;
}

.how-head>p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin: 0 0 12px;
}

.how-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  margin: 0;
  line-height: 1.12;
}

.how-head h2 em {
  color: var(--accent);
  font-style: italic;
}

.how-head>span {
  display: block;
  margin-top: 12px;
  max-width: 590px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(31, 51, 36, .6);
}

.how-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.how-card {
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(31, 51, 36, .07);
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(31, 51, 36, .32);
}

.how-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px -26px rgba(31, 51, 36, .38);
}

.how-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-2);
}

.how-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.how-card:hover .how-card-image img {
  transform: scale(1.045);
}

.how-card-image>span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(250, 246, 239, .96);
  color: var(--leaf-900);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 8px 18px -13px rgba(31, 51, 36, .6);
}

.how-card-body {
  padding: 22px 23px 25px;
}

.how-step-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.how-card-body h3 {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 600;
}

.how-card-body p {
  font-size: 13px;
  color: rgba(31, 51, 36, .63);
  line-height: 1.65;
  margin: 0;
}

.product-video-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.product-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 65px -35px rgba(31, 51, 36, .68);
}

.product-video-card video {
  cursor: default;
}

.product-video-card video::-webkit-media-controls {
  display: none !important;
}

.drawer-cart-product {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.drawer-cart-product:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 51, 36, .15);
  box-shadow: 0 15px 28px -22px rgba(31, 51, 36, .55);
}

.drawer-cart-product img {
  transition: transform .3s ease;
}

.drawer-cart-product:hover img {
  transform: scale(1.035);
}

.drawer-qty-btn {
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.drawer-qty-btn:hover {
  transform: scale(1.08);
  background: var(--leaf-900);
  color: #fff;
  border-color: var(--leaf-900);
  box-shadow: 0 7px 15px -10px rgba(31, 51, 36, .7);
}

.drawer-qty-btn:active {
  transform: scale(.94);
}

.cart-fab {
  animation: cartFloat 4s ease-in-out infinite;
}

@keyframes cartFloat {

  0%,
  100% {
    box-shadow: 0 14px 30px -12px rgba(31, 51, 36, .55)
  }

  50% {
    box-shadow: 0 18px 36px -10px rgba(31, 51, 36, .65)
  }
}

.reviews-section{padding:74px 0;background:var(--cream-2);}
.reviews-heading{text-align:center;max-width:650px;margin:0 auto 36px;}
.reviews-heading p{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--accent);margin:0 0 10px;}
.reviews-heading h2{font-size:clamp(28px,3.4vw,38px);line-height:1.12;margin:0;font-weight:600;}
.review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;}
.review-card{background:#fff;border:1px solid rgba(31,51,36,.07);border-radius:20px;padding:24px;box-shadow:0 18px 40px -30px rgba(31,51,36,.4);transition:transform .25s ease,box-shadow .25s ease;}
.review-card:hover{transform:translateY(-5px);box-shadow:0 24px 45px -27px rgba(31,51,36,.5);}
.review-stars{color:var(--accent);font-size:13px;letter-spacing:.08em;margin-bottom:12px;}
.review-stars .star-half{position:relative;color:rgba(63,107,71,.22);}
.review-stars .star-half::before{content:'★';position:absolute;left:0;width:47%;overflow:hidden;color:var(--accent);}
.review-card>p{font-family:'Fraunces',serif;font-size:15px;line-height:1.55;margin:0 0 22px;min-height:70px;}
.review-person{display:flex;align-items:center;gap:10px;}
.review-person>span{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--accent-light);color:var(--leaf-800);font-family:'Fraunces',serif;font-weight:600;}
.review-person strong{display:block;font-size:12px;}
.review-person small{display:block;margin-top:3px;color:rgba(31,51,36,.48);font-size:10px;}
.review-card-photos{display:flex;gap:7px;flex-wrap:wrap;margin:0 0 14px;}
.review-card-photos img{width:62px;height:62px;object-fit:cover;border-radius:10px;border:1px solid rgba(31,51,36,.08);cursor:pointer;}


@media(max-width:900px){.review-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.review-card:last-child{grid-column:1/-1;max-width:calc(50% - 10px);width:100%;justify-self:center;}}
@media(max-width:700px){.review-grid{grid-template-columns:1fr;}.review-card:last-child{grid-column:auto;max-width:none;}.review-form-inner{padding:22px 18px;}}

.pro-footer {
  background: var(--leaf-900);
  color: #fff;
  padding: 58px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 38px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
}

.footer-brand>p {
  max-width: 330px;
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-contact a,
.footer-column a,
.footer-column button {
  color: rgba(255, 255, 255, .56);
  font-size: 11px;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.footer-contact a:hover,
.footer-column a:hover,
.footer-column button:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  margin: 1px 0 7px;
  color: #fff;
}

.footer-highlights {
  gap: 12px;
}

.footer-highlights>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-highlights b {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.footer-highlights span {
  font-size: 9px;
  color: rgba(255, 255, 255, .42);
}

.footer-panels {
  padding: 22px 0 0;
}

.footer-panels details {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 0;
}

.footer-panels summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  color: rgba(255, 255, 255, .78);
  font-family: 'Fraunces', serif;
  font-size: 14px;
}

.footer-panels summary::-webkit-details-marker {
  display: none;
}

.footer-panels summary span {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  transition: transform .2s ease;
}

.footer-panels details[open] summary span {
  transform: rotate(45deg);
}

.footer-panels>details>p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .47);
  font-size: 11px;
  line-height: 1.7;
}

.footer-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
  margin-top: 15px;
}

.footer-faq-grid strong {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  margin-bottom: 5px;
}

.footer-faq-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .43);
  font-size: 10px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  color: rgba(255, 255, 255, .32);
  font-size: 9px;
  line-height: 1.5;
}

@media(max-width:900px) {
  .nav-links {
    gap: 15px;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-highlights {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 4px;
  }

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

  .review-card:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 10px);
    width: 100%;
    justify-self: center;
  }

  .how-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-card:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 11px);
    width: 100%;
    justify-self: center;
  }
}

@media(max-width:700px) {
  .nav-in {
    padding: 11px 15px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-cart-link {
    padding: 8px 10px;
  }

  .nav-order-btn {
    padding: 9px 14px !important;
  }

  .how-cards,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .how-card:last-child,
  .review-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .how-card-image {
    aspect-ratio: 16/11;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .footer-highlights {
    grid-column: 1/-1;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

  .drawer-cart-product {
    grid-template-columns: 62px 1fr;
  }

  .drawer-cart-product img {
    width: 62px;
    height: 62px;
  }

  .drawer-line-total {
    grid-column: 2;
    justify-self: start;
  }
}

@media(max-width:420px) {
  .logo {
    font-size: 18px;
  }

  .nav-order-btn {
    display: inline-flex;
    padding: 8px 12px !important;
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-cart-link {
    padding: 8px 11px;
  }

  .how-card-body {
    padding: 20px;
  }

  .review-card {
    padding: 20px;
  }

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

  .footer-brand,
  .footer-highlights {
    grid-column: auto;
  }

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

/* ===== FINAL V12 VISUAL + CART POLISH ===== */
.why-compact-section {
  padding: 64px 24px 72px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.why-compact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 58px;
}

.why-compact-copy {
  max-width: 590px;
}

.why-compact-copy h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--leaf-900);
}

.why-compact-copy h2 em {
  color: var(--accent);
  font-style: italic;
}

.why-compact-lead {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(31, 51, 36, .68);
  margin: 0 0 23px;
}

.why-compact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-compact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--leaf-900);
  font-weight: 500;
}

.why-compact-list li span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 25px;
}

.why-compact-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-compact-image {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
  background: #f3ece4;
  box-shadow: 0 24px 55px -30px rgba(31, 51, 36, .35);
}

.why-compact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
}

.why-compact-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 253, 248, .97);
  border: 1px solid rgba(31, 51, 36, .1);
  border-radius: 16px;
  padding: 11px 15px;
  box-shadow: 0 15px 35px -20px rgba(31, 51, 36, .4);
}

.why-compact-badge strong {
  font-family: 'Fraunces', serif;
  font-size: 25px;
  color: var(--leaf-800);
  line-height: 1;
}

.why-compact-badge span {
  font-size: 10px;
  line-height: 1.3;
  color: rgba(31, 51, 36, .58);
}

/* Cart is a real viewport drawer: header/progress stay visible and each step gets its own scroll area. */
body.drawer-open {
  overflow: hidden;
}

.cart-drawer.checkout-drawer {
  top: 0;
  right: 0;
  width: min(500px, 100vw);
  height: 100dvh;
  max-height: 100dvh;
  min-height: 100dvh;
  padding: 20px 20px 18px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.drawer-head {
  flex: 0 0 auto;
}

.drawer-progress {
  flex: 0 0 auto;
}

.drawer-step {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2px 1px 8px;
  scrollbar-width: thin;
}

#drawerCartStep {
  display: flex;
  flex-direction: column;
}

#drawerCartPanel {
  flex: 0 0 auto;
}

.drawer-cart-product {
  grid-template-columns: 74px minmax(0, 1fr) auto;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.drawer-cart-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -22px rgba(31, 51, 36, .5);
  border-color: rgba(31, 51, 36, .16);
}

.drawer-cart-product img {
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.drawer-qty-row {
  gap: 8px;
}

.drawer-qty-btn {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
  position: relative;
  z-index: 3;
  touch-action: manipulation;
}

.drawer-qty-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 7px 15px -11px rgba(31, 51, 36, .5);
}

.drawer-qty-btn:active {
  transform: scale(.94);
}

.drawer-total-row {
  flex: 0 0 auto;
  margin-top: 12px;
}

.drawer-cart-assurance {
  flex: 0 0 auto;
}

#drawerCheckoutBtn {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  margin-top: 12px;
  box-shadow: 0 14px 30px -18px rgba(31, 51, 36, .55);
}

.drawer-full-btn {
  min-height: 50px;
}

#drawerDetailsStep form,
#drawerPaymentStep {
  padding-bottom: 6px;
}

#drawerDetailsStep .drawer-back-btn,
#drawerPaymentStep .drawer-back-btn {
  flex: 0 0 auto;
}

.drawer-cart-note {
  margin-bottom: 4px;
}

/* Footer: clean 3-column information hierarchy, no bulky panels below. */
.pro-footer {
  padding: 58px 24px 22px !important;
}

.footer-main {
  grid-template-columns: 1.45fr 1fr 1fr !important;
  gap: 54px !important;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 4px !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.footer-column a,
.footer-column button {
  font: inherit;
  font-size: 11px;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-column button:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-inline-faq {
  width: 100%;
  max-width: 250px;
}

.footer-inline-faq summary {
  list-style: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inline-faq summary::-webkit-details-marker {
  display: none;
}

.footer-inline-faq summary span {
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease;
}

.footer-inline-faq[open] summary span {
  transform: rotate(45deg);
}

.footer-faq-list {
  margin-top: 11px;
  padding: 10px 12px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  gap: 8px;
}

.footer-faq-list p {
  margin: 0;
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
  line-height: 1.55;
}

.footer-faq-list strong {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
}

.footer-bottom {
  margin-top: 42px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-panels,
.footer-highlights {
  display: none !important;
}

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

  .why-compact-copy {
    max-width: 720px;
  }

  .why-compact-media {
    justify-content: flex-start;
  }

  .why-compact-image {
    width: min(100%, 360px);
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr !important;
    gap: 30px !important;
  }
}

@media(max-width:640px) {
  .why-compact-section {
    padding: 48px 18px 58px !important;
  }

  .why-compact-grid {
    gap: 28px;
  }

  .why-compact-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .why-compact-image {
    width: 100%;
    border-radius: 22px;
  }

  .why-compact-image img {
    border-radius: 22px;
  }

  .why-compact-badge {
    left: 12px;
    bottom: 12px;
  }

  .cart-drawer.checkout-drawer {
    width: 100vw;
    padding: 16px 14px 14px;
  }

  .drawer-cart-product {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .drawer-cart-product img {
    width: 62px;
    height: 62px;
  }

  .drawer-line-total {
    grid-column: 2;
    justify-self: start;
    margin-top: -1px;
  }

  .drawer-cart-assurance {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .drawer-cart-assurance span:last-child {
    grid-column: 1/-1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 24px !important;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 7px !important;
  }
}

@media(max-width:400px) {
  .why-compact-copy h2 {
    font-size: 29px;
  }

  .drawer-progress {
    gap: 4px;
  }

  .progress-dot {
    width: 24px;
    height: 24px;
  }

  .progress-caption {
    font-size: 9px;
  }

  .drawer-form-grid {
    grid-template-columns: 1fr !important;
  }

  .drawer-form-grid .full {
    grid-column: auto !important;
  }
}

.shop-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin: 0 0 10px;
}

.shop-title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  margin: 0 0 12px;
}

.shop-lead {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(31, 51, 36, .7);
  margin: 0 0 22px;
}

.shop-tax {
  font-size: 12px;
  color: rgba(31, 51, 36, .5);
  margin: -18px 0 10px;
}

.shop-pay-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 16px;
}

.shop-pay-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  border: 1.5px solid rgba(31, 51, 36, .14);
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
}

.shop-pay-choice:has(input:checked) {
  border-color: var(--leaf-700);
  background: var(--accent-light);
}

.shop-pay-choice input {
  margin-top: 3px;
  accent-color: var(--leaf-800);
}

.shop-pay-choice span {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-pay-choice strong {
  font-size: 15px;
  color: var(--leaf-900, #1f3324);
}

.shop-pay-choice small {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(31, 51, 36, .62);
}

.shop-pay-choice b {
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--leaf-800);
  white-space: nowrap;
  padding-top: 3px;
}

.shop-gift {
  font-size: 13px;
  color: var(--leaf-800);
  background: var(--accent-light);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 0 22px;
}

.shop-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(31, 51, 36, .7);
}

.shop-qty-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-qty-row #shopQty {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--leaf-900);
}

.pay-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 22px;
}

.pay-marks span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(31, 51, 36, .55);
  border: 1px solid rgba(31, 51, 36, .12);
  background: #fff;
  border-radius: 999px;
  padding: 5px 9px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin: 0;
}

.spec-grid dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}

.spec-grid dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(31, 51, 36, .72);
}

.why-compact-caption {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(31, 51, 36, .52);
}

.product-demo {
  max-width: 860px;
  margin: 0 auto;
}

.product-demo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #17241a;
  box-shadow: 0 25px 55px -35px rgba(31, 51, 36, .55);
}

.product-demo-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #101810;
}

.product-demo-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 24, 16, .28);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-demo-play[hidden],
.product-demo-frame.is-playing .product-demo-play {
  display: none !important;
}

.product-demo-play span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(31, 51, 36, .92);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 28px -14px #000;
}

.product-demo-play span::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
}

.product-demo-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(31, 51, 36, .58);
}

.faq-section {
  padding: 64px 0 72px;
  background: var(--cream);
}

.faq-heading {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
}

.faq-heading p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin: 0 0 10px;
}

.faq-heading h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(31, 51, 36, .1);
}

.faq-section .faq-item {
  border-bottom: 1px solid rgba(31, 51, 36, .1);
  padding: 4px 0;
}

.faq-section .faq-item summary {
  padding: 16px 0;
  font-size: 15px;
  color: var(--leaf-900);
  gap: 16px;
}

.faq-section .faq-item p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(31, 51, 36, .68);
  max-width: 58ch;
}

.faq-section .faq-item a {
  color: var(--leaf-800);
}

.sticky-buy {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 65;
  max-width: 720px;
  margin: 0 auto;
  padding: 10px 10px 10px 10px;
  border: 1px solid rgba(31, 51, 36, .1);
  border-radius: 22px;
  background: rgba(250, 246, 239, .96);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 50px -22px rgba(31, 51, 36, .45),
    0 0 0 1px rgba(255, 255, 255, .5) inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}

.sticky-buy.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.sticky-buy-product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sticky-buy-product img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--cream-2);
  border: 1px solid rgba(31, 51, 36, .08);
  flex: 0 0 auto;
}

.sticky-buy-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 1px;
}

.sticky-buy-meta span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.sticky-buy-meta strong {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--leaf-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy-meta b {
  font-size: 13px;
  font-weight: 700;
  color: var(--leaf-800);
}

.sticky-buy-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.sticky-cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(31, 51, 36, .16);
  background: #fff;
  color: var(--leaf-900);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.sticky-cart-btn:hover {
  border-color: var(--leaf-900);
  background: var(--accent-light);
  transform: translateY(-1px);
}

.sticky-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--leaf-800);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cart-count[hidden] {
  display: none !important;
}

.sticky-buy-cta {
  padding: 12px 22px !important;
  white-space: nowrap;
}

body.drawer-open .sticky-buy {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

.cart-fab {
  display: none !important;
}

@media (max-width: 700px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy .cta-row {
    margin-bottom: 22px;
  }

  .hero-copy .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .sticky-buy {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px;
    border-radius: 20px;
  }

  .sticky-buy-meta span,
  .sticky-buy-meta strong {
    display: none;
  }

  .sticky-buy-cta {
    padding: 12px 18px !important;
  }
}

.page-intro {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(96% .03 15) 0%, oklch(98.5% .012 85) 55%, oklch(94% .04 85) 100%);
  transition: opacity .6s ease;
}

.page-intro.is-done {
  opacity: 0;
  pointer-events: none;
}

.page-intro-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.page-intro-plant {
  width: min(62vw, 540px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(80, 40, 30, .18));
  transform-origin: center 58%;
  animation: pageIntroSpin 1.35s cubic-bezier(.22, 1, .36, 1) both;
}

.page-intro-mark {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  color: var(--leaf-800);
  opacity: 0;
  animation: pageIntroMark .5s ease .75s forwards;
}

@keyframes pageIntroSpin {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(.6);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes pageIntroMark {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-intro {
    display: none !important;
  }
}
