@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap");


:root{
  --cream:#f4ede5;
  --paper:#fff9f2;
  --ink:#2a211b;
  --muted:#75665d;
  --berry:#9a6a45;
  --berry-dark:#6f472f;
  --line:rgba(102,77,57,.18);
  --pink:#c2a07c;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{font:inherit}
h1,h2,h3,p{margin-top:0}
em{font-style:italic}
::selection{background:#9b6b45;color:#fff}

/* Original entrance animation from the main website */
.preview{
  --preview-radius:180px;
  position:fixed;
  inset:0;
  z-index:9999;
  width:100vw;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  background:#000;
  color:#fff;
  text-align:center;
  font-family:Georgia,serif;
  opacity:1;
  transition:opacity .8s ease-in-out;
}
.preview1{position:relative;width:100%;height:100%}
.text1{
  position:absolute;
  top:50%;left:50%;
  z-index:2;
  transform:translate(-50%,-50%);
  opacity:0;
  animation:previewFadeIn 2s ease-out 2.52s forwards;
}
.preview-logo{
  display:block;
  width:clamp(140px,20vw,260px);
  max-width:none;
  height:auto;
  object-fit:contain;
}
.circle-text{
  position:absolute;
  width:300px;height:300px;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  display:flex;
  justify-content:center;
  align-items:center;
}
.circle-text span{
  position:absolute;
  top:50%;
  left:50%;
  width:2.2em;
  text-align:center;
  font-family:"Dancing Script",cursive;
  font-size:2rem;
  font-weight:600;
  color:#e0b98b;
  transform-origin:center;
  pointer-events:none;
  opacity:0;
  animation:previewLetterIn .5s ease-out forwards;
  animation-delay:calc(.1s * var(--i));
  transform:translate(-50%,-50%) rotate(calc(var(--angle) * 1deg)) translateY(calc(-1 * var(--preview-radius))) rotate(calc(-1 * var(--angle) * 1deg));
}
.circle-text span:nth-child(12),.circle-text span:nth-child(24){color:#fff}
.circle-text span:nth-child(1){--angle:15;--i:1}.circle-text span:nth-child(2){--angle:30;--i:2}.circle-text span:nth-child(3){--angle:45;--i:3}.circle-text span:nth-child(4){--angle:60;--i:4}.circle-text span:nth-child(5){--angle:75;--i:5}.circle-text span:nth-child(6){--angle:90;--i:6}.circle-text span:nth-child(7){--angle:105;--i:7}.circle-text span:nth-child(8){--angle:120;--i:8}.circle-text span:nth-child(9){--angle:135;--i:9}.circle-text span:nth-child(10){--angle:150;--i:10}.circle-text span:nth-child(11){--angle:165;--i:11}.circle-text span:nth-child(12){--angle:180;--i:12}.circle-text span:nth-child(13){--angle:195;--i:13}.circle-text span:nth-child(14){--angle:210;--i:14}.circle-text span:nth-child(15){--angle:225;--i:15}.circle-text span:nth-child(16){--angle:240;--i:16}.circle-text span:nth-child(17){--angle:255;--i:17}.circle-text span:nth-child(18){--angle:270;--i:18}.circle-text span:nth-child(19){--angle:285;--i:19}.circle-text span:nth-child(20){--angle:300;--i:20}.circle-text span:nth-child(21){--angle:315;--i:21}.circle-text span:nth-child(22){--angle:330;--i:22}.circle-text span:nth-child(23){--angle:345;--i:23}.circle-text span:nth-child(24){--angle:360;--i:24}
@keyframes previewFadeIn{to{opacity:1}}
@keyframes previewLetterIn{from{opacity:0}to{opacity:1}}
@media(max-width:768px){
  .preview{--preview-radius:140px}
  .circle-text span{font-size:1.8rem}
}
@media(max-width:480px){
  .preview{--preview-radius:100px}
  .circle-text{width:220px;height:220px}
  .circle-text span{font-size:1.4rem}
}

/* Header */
.site-header{
  position:absolute;
  z-index:50;
  top:0;left:0;right:0;
  height:76px;
  padding:0 clamp(24px,5vw,74px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.brand img{width:94px;filter:brightness(0) invert(1)}
.desktop-nav{display:flex;align-items:center;gap:24px;font-size:12px;font-weight:700;white-space:nowrap}
.desktop-nav a{opacity:.86}
.desktop-nav a:hover{opacity:1}
.header-actions{display:flex;align-items:center;gap:18px}
/* Cart — intentionally identical to the legacy/product pages. */
.cart {
  align-self: center;
  justify-self: end;
  position: relative;
  display: inline-block;
  line-height: 0;
}

.cart__img {
  display: block;
  width: 34px;
  height: 34px;
}

.cart__count {
  position: absolute;
  top: 3px;
  right: -6px;
  display: inline-block;
  height: 25px;
  min-width: 25px;
  padding: 0 6px;
  border-radius: 40px;
  background-color: #a96432;
  font-weight: 700;
  line-height: 25px;
  font-family: var(--font-cards, Inter, sans-serif);
  font-size: 16px;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}
.menu-btn{
  width:36px;height:34px;border:0;background:transparent;
  display:flex;flex-direction:column;justify-content:center;gap:6px;cursor:pointer;
}
.menu-btn span{display:block;height:2px;background:#fff;border-radius:2px}
.mobile-menu{
  position:fixed;z-index:120;
  top:0;right:0;bottom:0;
  width:min(88vw,380px);
  padding:90px 30px 30px;
  background:#34251d;color:#fff;
  display:flex;flex-direction:column;gap:22px;
  transform:translateX(105%);
  transition:transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow:-20px 0 60px rgba(0,0,0,.25);
}
.mobile-menu.open{transform:none}
.mobile-menu a{font-family:Italiana,Georgia,serif;font-size:30px}
.menu-close{
  position:absolute;right:22px;top:18px;
  border:0;background:transparent;color:#fff;font-size:38px;cursor:pointer;
}

/* hero */
.hero{
  position:relative;
  min-height:620px;
  overflow:hidden;
  color:#fff;
  background:#2f2119;
}
.hero-bg{
  position:absolute;inset:0;
  background:
   radial-gradient(circle at 67% 20%,rgba(181,137,88,.18),transparent 28%),
   linear-gradient(90deg,#302119 0%,#4b3426 58%,#725038 100%);
}
.hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 15% 18%,rgba(255,255,255,.08),transparent 20%),
    linear-gradient(90deg,rgba(13,8,6,.52) 0%,rgba(13,8,6,.2) 44%,rgba(13,8,6,.02) 77%);
}
.hero-cake-wrap{
  position:absolute;
  right:-3%;
  bottom:-7%;
  width:min(58vw,760px);
  height:94%;
}
.hero-cake{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center;
  mix-blend-mode:normal;
  filter:saturate(1.06) contrast(1.04);
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 100%);
}
.hero-copy{
  position:relative;
  z-index:2;
  width:min(620px,52vw);
  padding:120px 0 44px clamp(42px,7vw,108px);
}
.hero h1{
  font-family:Italiana,Georgia,serif;
  font-size:clamp(54px,6vw,88px);
  font-weight:400;
  line-height:.91;
  letter-spacing:-.04em;
}
.hero h1 em{font-weight:400}
.hero-copy>p{
  width:min(470px,100%);
  color:rgba(255,255,255,.82);
  font-size:15px;
  line-height:1.55;
}
.hero-actions,.center-actions,.final-actions{
  display:flex;flex-wrap:wrap;align-items:center;gap:14px;
}
.hero-actions{margin-top:26px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:16px;
  min-height:46px;
  padding:12px 25px;
  border-radius:999px;
  font-size:13px;font-weight:800;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn.primary{background:linear-gradient(90deg,#8f603c,#b88750);color:#fff;box-shadow:0 10px 26px rgba(77,50,29,.22)}
.btn.ghost-light{border:1px solid rgba(255,255,255,.85);color:#fff}
.btn.outline{border:1px solid rgba(120,83,54,.65);color:#2a211b;background:transparent}
.signature{
  margin-top:30px;
  display:flex;align-items:center;gap:10px;
  font-family:Georgia,serif;
  font-style:italic;
  color:rgba(255,248,239,.74);
  font-size:13px;
}
.signature i,.final-signature i{width:100px;height:1px;background:currentColor;opacity:.35}

/* common */
.section-light{background:var(--paper)}
.section-title{
  width:min(760px,calc(100% - 40px));
  margin:0 auto 28px;
  text-align:center;
}
.section-title h2{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  font-weight:700;
  font-size:clamp(34px,3.4vw,48px);
  line-height:1.05;
  letter-spacing:-.04em;
}
.section-title h2 em{display:inline;font-style:normal}
.section-title p{margin:13px 0 0;color:var(--muted);font-size:14px}

/* why */
.why{padding:38px clamp(32px,6vw,88px) 36px}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:1180px;
  margin:0 auto;
}
.why-card{
  padding:0 24px 6px;
  text-align:center;
  border-right:1px solid var(--line);
}
.why-card:last-child{border-right:0}
.icon-circle{
  width:58px;height:58px;margin:0 auto 15px;
  border-radius:50%;
  display:grid;place-items:center;
  background:#eee0d2;color:#8d6040;
}
.icon-circle svg{width:29px;height:29px}
.why-card h3{
  margin:0 0 9px;
  font-family:Inter,Arial,sans-serif;
  font-size:19px;font-weight:700;line-height:1.2;letter-spacing:-.025em;
}
.why-card p{margin:0;color:var(--muted);font-size:12px;line-height:1.45}
.center-actions{justify-content:center;margin-top:26px}

/* steps */
.steps{padding:42px clamp(28px,5vw,78px) 28px}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:1180px;
  margin:0 auto;
  gap:34px;
}
.step-card{text-align:center}
.step-image{
  position:relative;
  width:148px;height:148px;
  margin:0 auto 13px;
  border-radius:50%;
  overflow:visible;
}
.step-image img{
  width:100%;height:100%;
  object-fit:contain;
}
.step-card h3{
  margin:0 0 7px;
  font-family:Inter,Arial,sans-serif;
  font-size:18px;font-weight:700;line-height:1.2;letter-spacing:-.025em;
}
.step-card p{margin:0;color:var(--muted);font-size:12px;line-height:1.45}
.upload-cta{display:flex;justify-content:center;margin-top:24px}

/* gallery */
.gallery-strip{
  display:grid;
  grid-template-columns:1.08fr 1.08fr 1fr 1fr;
  gap:14px;
  padding:18px clamp(18px,3.8vw,38px) 0;
  background:#f3ebe2;
}
.gallery-cell{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  min-height:290px;
  box-shadow:0 18px 42px rgba(33,24,17,.10);
  background:#e5d8ca;
}
.gallery-cell--tall{min-height:420px;}
.gallery-cell--wide{min-height:420px;}
.gallery-cell img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease, filter .35s ease}
.gallery-cell::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(35,27,21,0) 52%,rgba(35,27,21,.14) 76%,rgba(35,27,21,.42) 100%);
  pointer-events:none;
}
.gallery-cell:hover img{transform:scale(1.04);filter:saturate(1.03)}
.gallery-badge{
  position:absolute;left:16px;bottom:16px;z-index:2;
  padding:9px 14px;border-radius:999px;
  background:rgba(255,248,240,.9);
  backdrop-filter:blur(8px);
  color:#5a4334;font-size:12px;font-weight:600;letter-spacing:.05em;
  text-transform:uppercase;
}


/* faq */
.faq{padding:26px clamp(38px,7vw,105px) 30px}
.faq-heading{
  display:flex;justify-content:space-between;align-items:end;gap:20px;
  margin-bottom:10px;
}
.faq-heading h2{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  font-size:clamp(32px,3vw,44px);
  font-weight:700;
  line-height:1.05;
  letter-spacing:-.04em;
}
.faq-heading p{margin:0;color:var(--muted);font-size:12px}
.faq-heading a{color:var(--berry);text-decoration:underline}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:42px}
.faq-item{border-bottom:1px solid var(--line)}
.faq-item summary{
  list-style:none;cursor:pointer;position:relative;
  padding:12px 28px 10px 0;
  color:#4d4844;font-size:12px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  position:absolute;right:0;top:8px;
  color:#9d704d;font-size:20px;font-weight:400;
}
.faq-item[open] summary::after{content:"–"}
.faq-item p{margin:0;padding:0 28px 12px 0;color:var(--muted);font-size:12px;line-height:1.5}

/* final */
.final-cta{
  position:relative;
  min-height:270px;
  padding:34px clamp(40px,7vw,105px);
  display:flex;align-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 30%,rgba(255,255,255,.7),transparent 28%),
    #eee3d7;
}
.final-copy{position:relative;z-index:3;width:48%}
.final-copy h2{
  margin:0 0 10px;
  font-family:Inter,Arial,sans-serif;
  font-size:clamp(34px,3.6vw,50px);
  line-height:1.03;font-weight:700;letter-spacing:-.04em;
}
.final-copy>p{margin:0 0 20px;color:var(--muted);font-size:13px}
.final-art{position:absolute;right:0;top:0;bottom:0;width:58%}
.final-art img{width:100%;height:100%;object-fit:cover;object-position:center}
.final-art::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,#eee3d7 0%,rgba(238,227,215,.86) 20%,transparent 60%);
  z-index:1;
}
.final-signature{
  margin-top:24px;
  display:flex;align-items:center;gap:14px;
  color:#a77d5b;
  font-family:Georgia,serif;font-style:italic;font-size:12px;
}
.final-brand{
  position:absolute;right:46px;bottom:20px;z-index:4;
  color:#9a704f;font-family:Italiana,Georgia,serif;font-size:12px;letter-spacing:.06em;
}

/* reveal */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s cubic-bezier(.16,.84,.22,1)}
.reveal.show{opacity:1;transform:none}

/* Tablet */
@media(max-width:900px){
  .desktop-nav{display:none}
  .hero{min-height:690px}
  .hero-copy{width:60vw;padding-left:38px}
  .why-grid{grid-template-columns:repeat(2,1fr);gap:26px 0}
  .why-card:nth-child(2){border-right:0}
  .steps-grid{grid-template-columns:repeat(2,1fr);gap:36px 22px}
  .gallery-strip{grid-template-columns:repeat(2,1fr);gap:12px;padding:16px 16px 0}
  .gallery-cell,.gallery-cell--tall,.gallery-cell--wide{min-height:230px}
  .gallery-badge{left:12px;bottom:12px;padding:8px 12px;font-size:11px}
}

/* Mobile */
@media(max-width:600px){
  .site-header{
    height:66px;
    padding:0 18px;
  }
  .brand img{width:66px}
  .hero{
    min-height:760px;
    padding-top:66px;
  }
  .hero-media--desktop{display:none}
  .hero-mobile-carousel{display:block}
  .hero-mobile-slide:nth-child(1){object-position:center 40%}
  .hero-mobile-slide:nth-child(2){object-position:center 42%}
  .hero-mobile-slide:nth-child(3){object-position:center 46%}
  .hero-bg{
    z-index:1;
    background:
      linear-gradient(180deg,rgba(20,12,8,.22) 0%,rgba(20,12,8,.40) 46%,rgba(20,12,8,.78) 100%),
      linear-gradient(90deg,rgba(20,12,8,.22),rgba(20,12,8,.08));
  }
  .hero-copy{
    width:100%;
    padding:235px 22px 26px;
  }
  .hero h1{
    max-width:340px;
    font-size:51px;
    line-height:.9;
    text-shadow:0 2px 22px rgba(0,0,0,.28);
  }
  .hero-copy>p{
    max-width:340px;
    font-size:13px;
    line-height:1.5;
  }
  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    margin-top:20px;
  }
  .hero-actions .btn.primary{min-width:240px}
  .hero-actions .btn.ghost-light{min-width:170px}
  .signature{margin-top:22px}

  .why{padding:28px 18px 30px}
  .section-title{width:100%;margin-bottom:24px}
  .section-title h2{font-size:38px}
  .section-title p{font-size:12px;line-height:1.45}
  .why-grid{
    grid-template-columns:repeat(2,1fr);
    gap:26px 0;
  }
  .why-card{
    padding:0 11px 0;
    border-right:1px solid var(--line);
  }
  .why-card:nth-child(2n){border-right:0}
  .why-card h3{font-size:18px}
  .why-card p{font-size:11px}
  .icon-circle{width:50px;height:50px}
  .center-actions{
    flex-direction:column;
    align-items:stretch;
    padding:0 14px;
  }
  .center-actions .btn{width:100%}

  .steps{padding:34px 18px 26px}
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
    gap:34px 16px;
  }
  .step-image{width:126px;height:126px}
  .step-card h3{font-size:17px}
  .step-card p{font-size:11px}
  .upload-cta .btn{width:calc(100% - 28px);max-width:340px}

  .gallery-strip{
    grid-template-columns:repeat(2,1fr);
    min-height:0;
  }
  .gallery-cell{min-height:160px}

  .faq{padding:24px 18px 26px}
  .faq-heading{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }
  .faq-heading h2{font-size:34px}
  .faq-grid{grid-template-columns:1fr;gap:0}
  .faq-item summary{font-size:11.5px}
  .faq-item p{font-size:11px}

  .final-cta{
    min-height:390px;
    padding:34px 18px 26px;
    align-items:flex-end;
  }
  .final-copy{width:100%}
  .final-copy h2{font-size:42px;max-width:300px}
  .final-art{width:100%;opacity:.72}
  .final-art::before{
    background:linear-gradient(0deg,#eee3d7 0%,rgba(240,233,225,.95) 38%,rgba(240,233,225,.2) 75%,transparent 100%);
  }
  .final-actions{flex-direction:column;align-items:flex-start}
  .final-actions .btn.primary{width:100%}
  .final-brand{right:18px;bottom:12px;font-size:10px}
}

/* Very small phones */
@media(max-width:380px){
  .hero h1{font-size:46px}
  .hero-copy{padding-left:17px;padding-right:17px}
  .why-grid,.steps-grid{grid-template-columns:1fr}
  .why-card{border-right:0;border-bottom:1px solid var(--line);padding-bottom:24px}
  .gallery-strip{grid-template-columns:1fr}
}

/* Reduce motion */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .intro-ring{animation:none}
}




/* ===== Dynamic collection ===== */
.collection-v2{padding:58px clamp(18px,5.5vw,84px) 56px;background:#f6efe7}
.collection-v2__head{max-width:900px;margin:0 auto 28px;text-align:center}
.collection-v2__eyebrow{margin:0 0 10px;color:#b08a63;font-size:11px;font-weight:700;letter-spacing:.24em;text-transform:uppercase}
.collection-v2__head h2{margin:0;font-family:Inter,Arial,sans-serif;font-size:clamp(38px,4.2vw,58px);line-height:1.05;font-weight:700;letter-spacing:-.04em}
.collection-v2__head>p:last-child{width:min(700px,100%);margin:14px auto 0;color:var(--muted);font-size:14px;line-height:1.6}
.collection-v2__tabs{max-width:1180px;margin:0 auto 30px;display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
.collection-tab{appearance:none;display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:10px 18px;border:1px solid rgba(157,120,86,.28);border-radius:999px;background:#fff9f2;color:#6f5a4b;font:600 13px/1 Inter,Arial,sans-serif;cursor:pointer;transition:background .22s ease,color .22s ease,border-color .22s ease,transform .22s ease}
.collection-tab:hover{transform:translateY(-1px);border-color:rgba(151,103,64,.5)}
.collection-tab.is-active{border-color:transparent;background:linear-gradient(90deg,#8c5d39,#b98752);color:#fff;box-shadow:0 10px 24px rgba(104,70,42,.14)}
.collection-tab--link{background:#f3e9de;text-decoration:none}
.collection-v2__grid{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.collection-v2__grid.is-changing{animation:collectionIn .42s ease both}
@keyframes collectionIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.collection-card{overflow:hidden;border:1px solid rgba(146,118,92,.20);border-radius:24px;background:#fffaf5;box-shadow:0 14px 34px rgba(70,49,34,.07);transition:transform .24s ease,box-shadow .24s ease}
.collection-card:hover{transform:translateY(-4px);box-shadow:0 20px 46px rgba(70,49,34,.12)}
.collection-card__image{display:block;overflow:hidden;background:#e7d9ca}
.collection-card__image img{display:block;width:100%;aspect-ratio:4/4.75;object-fit:cover;object-position:center;transition:transform .55s cubic-bezier(.16,.84,.22,1)}
.collection-card:hover .collection-card__image img{transform:scale(1.025)}
.collection-card__body{padding:17px 18px 18px}
.collection-card__category{display:block;margin-bottom:8px;color:#a47752;font-size:10px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}
.collection-card h3{margin:0 0 8px;color:#342820;font-family:Inter,Arial,sans-serif;font-size:clamp(21px,1.8vw,27px);line-height:1.12;font-weight:700;letter-spacing:-.025em}
.collection-card p{margin:0;min-height:60px;color:var(--muted);font-size:13px;line-height:1.55}
.collection-card__link{display:inline-flex;align-items:center;gap:8px;margin-top:15px;padding-bottom:4px;border-bottom:1px solid rgba(151,103,64,.36);color:#8e623f;font-size:12px;font-weight:800}
.collection-v2__footer{display:flex;justify-content:center;margin-top:28px}
.collection-v2__view-all{min-width:220px}
@media(max-width:980px){.collection-v2__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:650px){
 .collection-v2{padding:38px 16px 34px}
 .collection-v2__head{text-align:left;margin-bottom:20px}
 .collection-v2__head h2{font-size:36px}
 .collection-v2__head>p:last-child{margin-left:0;font-size:13px}
 .collection-v2__tabs{margin:-8px -16px 20px;padding:10px 16px 8px;justify-content:flex-start;flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none}
 .collection-v2__tabs::-webkit-scrollbar{display:none}
 .collection-tab{flex:0 0 auto;min-height:38px;padding:9px 14px;font-size:12px;white-space:nowrap}
 .collection-v2__grid{display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;margin-right:-16px;padding-right:16px}
 .collection-v2__grid::-webkit-scrollbar{display:none}
 .collection-card{flex:0 0 80vw;scroll-snap-align:start;border-radius:22px}
 .collection-card__image img{aspect-ratio:4/4.7}
 .collection-card p{min-height:auto}
 .collection-v2__footer{justify-content:flex-start;margin-top:20px}
 .collection-v2__view-all{width:100%}
}


/* ==========================================================
   HERO BACKGROUND FIX v3
   Fixes stacked images / blank desktop hero.
   Text, fonts and layout remain unchanged.
   ========================================================== */
.hero{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

/* Desktop: three equal wholesale-style image panels */
.hero .hero-media--desktop{
  position:absolute;
  inset:0;
  z-index:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  width:100%;
  height:100%;
  overflow:hidden;
}
.hero .hero-media__panel{
  position:relative;
  min-width:0;
  height:100%;
  overflow:hidden;
}
.hero .hero-media__panel img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}
.hero .hero-media__panel:nth-child(1) img{object-position:center 40%}
.hero .hero-media__panel:nth-child(2) img{object-position:center 42%}
.hero .hero-media__panel:nth-child(3) img{object-position:center 46%}

/* Dark overlay above photos, below text */
.hero .hero-bg{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(22,13,9,.72) 0%,
      rgba(22,13,9,.58) 28%,
      rgba(22,13,9,.34) 54%,
      rgba(22,13,9,.18) 76%,
      rgba(22,13,9,.14) 100%),
    linear-gradient(180deg,rgba(22,13,9,.08),rgba(22,13,9,.22));
}
.hero .hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.08),transparent 38%,rgba(255,244,230,.025));
}

/* Keep existing text exactly where it was, only guarantee it sits on top */
.hero .hero-copy{
  position:relative;
  z-index:3;
}

/* Mobile carousel must also be absolute, never part of document flow */
.hero .hero-mobile-carousel{
  display:none;
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  overflow:hidden;
  background:#2f2119;
}
.hero .hero-mobile-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  opacity:0;
  transform:scale(1.025);
  transition:opacity .7s ease,transform 3s ease;
}
.hero .hero-mobile-slide.is-active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

/* Hide obsolete single-cake structure if cached HTML/CSS ever exposes it */
.hero .hero-cake-wrap{
  display:none !important;
}

@media (max-width:600px){
  .hero .hero-media--desktop{
    display:none !important;
  }
  .hero .hero-mobile-carousel{
    display:block;
  }
  .hero .hero-mobile-slide:nth-child(1){object-position:center 40%}
  .hero .hero-mobile-slide:nth-child(2){object-position:center 42%}
  .hero .hero-mobile-slide:nth-child(3){object-position:center 46%}
  .hero .hero-bg{
    z-index:1;
    background:
      linear-gradient(180deg,
        rgba(20,12,8,.18) 0%,
        rgba(20,12,8,.34) 48%,
        rgba(20,12,8,.78) 100%),
      linear-gradient(90deg,rgba(20,12,8,.16),rgba(20,12,8,.05));
  }
}


/* ===== User hero / header tuning v4 ===== */
.brand img{width:72px;filter:brightness(0) invert(1)}
.desktop-nav{display:flex;gap:34px;font-size:15px;font-weight:700;letter-spacing:.01em}
.desktop-nav a{opacity:.92;padding:10px 0}
.desktop-nav a:hover{opacity:1}

.hero .hero-bg{
  background:
    linear-gradient(90deg,
      rgba(20,12,8,.82) 0%,
      rgba(20,12,8,.66) 24%,
      rgba(20,12,8,.42) 48%,
      rgba(20,12,8,.22) 72%,
      rgba(20,12,8,.16) 100%),
    linear-gradient(180deg,rgba(20,12,8,.08),rgba(20,12,8,.22));
}
.hero .hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.10),transparent 40%,rgba(255,244,230,.03));
}
.hero .hero-media--desktop{grid-template-columns:repeat(3,minmax(0,1fr));}
.hero .hero-media__panel:nth-child(1) img{object-position:center 45%}
.hero .hero-media__panel:nth-child(2) img{object-position:center 34%}
.hero .hero-media__panel:nth-child(3) img{object-position:center 48%}
.hero .hero-mobile-slide:nth-child(1){object-position:center 45%}
.hero .hero-mobile-slide:nth-child(2){object-position:center 34%}
.hero .hero-mobile-slide:nth-child(3){object-position:center 48%}

@media (max-width: 980px){
  .desktop-nav{gap:22px;font-size:14px}
  .brand img{width:64px}
}
@media (max-width: 600px){
  .brand img{width:52px}
  .hero .hero-bg{
    background:
      linear-gradient(180deg,
        rgba(18,10,6,.20) 0%,
        rgba(18,10,6,.34) 34%,
        rgba(18,10,6,.80) 100%),
      linear-gradient(90deg,rgba(18,10,6,.12),rgba(18,10,6,.02));
  }
}


/* ==========================================================
   FINAL HEADER + HERO LAYOUT v5
   Desktop composition follows the wholesale page.
   Mobile restores the original slide-out side menu.
   Hero copy/text content and typography are unchanged.
   ========================================================== */

/* Desktop header: logo left, navigation centered, actions right */
@media (min-width: 901px){
  .site-header{
    height:78px;
    padding:0 clamp(34px,4vw,64px);
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
  }
  .brand{
    justify-self:start;
  }
  .brand img{
    width:66px;
  }
  .desktop-nav{
    display:flex !important;
    justify-self:center;
    align-items:center;
    gap:38px;
    font-size:15px;
    font-weight:700;
  }
  .desktop-nav a{
    padding:12px 2px;
    opacity:.94;
  }
  .header-actions{
    justify-self:end;
    gap:16px;
  }
  /* Side-menu trigger belongs to mobile only */
  .menu-btn{
    display:none;
  }

  /* Wholesale hero composition: copy can span across the image columns. */
  .hero{
    min-height:860px;
    min-height:100svh;
    display:flex;
    align-items:flex-end;
  }
  .hero-copy{
    width:min(970px,85vw);
    padding:135px 0 9vh 7vw;
  }
  .hero h1{
    max-width:900px;
    font-size:clamp(3.55rem,6.15vw,6.9rem);
    line-height:.96;
    letter-spacing:-.045em;
    text-wrap:balance;
  }
  .hero-copy>p{
    width:100%;
    max-width:690px;
    margin-top:24px;
    font-size:clamp(.98rem,1.14vw,1.11rem);
    line-height:1.62;
  }
  .hero-actions{
    margin-top:28px;
  }
  .signature{
    margin-top:28px;
  }
}

/* Wide desktop: give the hero copy the same breathing room as wholesale */
@media (min-width: 1380px){
  .site-header{
    padding-left:64px;
    padding-right:64px;
  }
  .desktop-nav{
    gap:42px;
  }
  .hero-copy{
    padding-left:7vw;
    width:min(970px,85vw);
  }
}

/* Mobile/tablet: restore the old side navigation behavior */
@media (max-width: 900px){
  .site-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .desktop-nav{
    display:none !important;
  }
  .menu-btn{
    display:flex !important;
  }
  .header-actions{
    margin-left:auto;
  }
}

@media (max-width: 600px){
  .site-header{
    height:66px;
    padding:0 18px;
  }
  .brand img{
    width:52px;
  }
  .header-actions{
    gap:12px;
  }
  .menu-btn{
    width:34px;
    height:34px;
  }
  .mobile-menu{
    display:flex;
    width:min(88vw,380px);
  }
  /* Keep existing mobile hero text placement; only menu behavior changes. */
  .hero-copy{
    width:100%;
    padding:235px 22px 26px;
  }
}


/* =========================================================
   Basket — exact legacy styling from the other site pages
   ========================================================= */
body.modal-open { overflow: hidden; }

.modal {
  isolation: isolate;
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  overflow: auto;
  flex-direction: column;
}

.modal-content {
  z-index: 2;
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 95%;
  max-width: 1300px;
  text-align: left;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
  color: #1e1e1e;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}

.cart-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.cart-left {
  flex: 2;
  overflow-y: auto;
  max-height: 75vh;
}

.cart-summary {
  flex: 1;
  background: #b57638;
  color: white;
  padding: 30px;
  border-radius: 16px;
  font-size: 18px;
}

.cart-summary h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.summary-line.total {
  font-weight: bold;
  font-size: 20px;
  border-top: 1px solid #fff;
  padding-top: 10px;
}

.cart-summary input[type="text"] {
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 15px;
  width: 100%;
  margin-top: 6px;
  outline: none;
  transition: border 0.3s ease, background 0.3s ease;
}

.cart-summary input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cart-summary input[type="text"]:focus {
  border-color: #ffe082;
  background-color: rgba(255, 255, 255, 0.25);
}

.cart-summary button {
  margin-top: 18px;
  background: #fdd835;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

#continueShopping {
  margin-right: 10px;
  background: #7a4318;
  color: white;
}

#continueShopping:hover { background: #5e3212; }
#checkout:hover { background: #c9a600; }

.cart-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ddd;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.cart-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.info-and-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
}

.item-description {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.item-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 70px;
  margin-top: 10px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8eedd;
  padding: 10px 14px;
  border-radius: 8px;
  min-width: 100px;
}

.quantity-controls button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
}

.quantity-controls span {
  min-width: 14px;
  text-align: center;
}

.remove-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #b30000;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.2s, transform 0.2s;
}

.remove-btn:hover {
  color: #ff0000;
  transform: scale(1.2);
}

.item-price {
  padding-top: 35px;
  font-weight: bold;
  font-size: 18px;
}

.free-ship {
  margin: 15px 0;
  font-size: 14px;
  color: #fff;
}

.free-ship-text {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.free-ship-amount {
  color: #ffcc33;
  font-weight: bold;
}

.free-ship-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  overflow: hidden;
}

.free-ship-fill {
  height: 100%;
  width: 0%;
  background: #ffcc33;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}

.modal-line {
  z-index: 1;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 4px;
  background-color: #b57638;
  animation: none;
  margin-bottom: 20px;
}

.modal-content.modal-animate {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center center;
  animation: none;
  margin-top: 0;
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 65vw; }
}

@keyframes expandModal {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

/* =========================================================
   Legacy mobile side-menu compatibility for the new homepage
   Uses the same IDs/classes and visual treatment as other pages.
   ========================================================= */
#open-mobile-nav-btn img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mobile-nav-wrapper {
  display: none;
  position: fixed;
  z-index: 1200;
  right: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 88vw;
  padding: 30px;
  overflow-y: auto;
  background-color: #e8d1bc;
  color: #3b2418;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .22);
}

.mobile-nav-wrapper--open {
  display: block;
}

.mobile-nav-wrapper a {
  color: #3b2418;
  transition: color .1s ease-in;
}

.mobile-nav-wrapper a:hover {
  color: #9b6d50;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(59, 36, 24, .18);
}

.mobile-cart {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(59, 36, 24, .18);
  font-size: 22px;
  font-weight: 500;
}

.mobile-cart .cart {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mobile-cart .cart__img {
  display: block;
  width: 28px;
  height: 28px;
}

.mobile-cart .cart__count {
  position: absolute;
  top: -9px;
  right: -12px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 20px;
  background: #a96432;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 22px;
}

.mobile-sub-nav {
  display: grid;
  gap: 14px;
  padding: 20px 0 0 20px;
  margin: 0;
  list-style: none;
  font-size: 16px;
}

.mobile-nav-btn-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-btn-close img,
.mobile-nav-wrapper .cart__img {
  filter: brightness(0) saturate(100%) sepia(22%) saturate(1040%) hue-rotate(344deg) brightness(35%);
}

@media (min-width: 901px) {
  .mobile-nav-wrapper { display: none !important; }
}

/* ==========================================================
   DESKTOP HERO REDESIGN v6 — reference layout
   Desktop only (>= 901px). Existing tablet/mobile hero stays intact.
   ========================================================== */
.desktop-brand-wordmark,
.desktop-order-btn,
.hero-desktop-redesign{
  display:none;
}

@media (min-width:901px){
  :root{
    --hero-cream:#f5eee6;
    --hero-brown:#382217;
    --hero-line:rgba(74,49,34,.34);
  }

  /* Header shown in the reference image. Mobile header is untouched. */
  .site-header{
    position:relative;
    height:90px;
    padding:0 clamp(52px,5.9vw,106px);
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:0;
    background:var(--hero-cream);
    color:var(--hero-brown);
    border-bottom:0;
  }
  .site-header::after{
    content:"";
    position:absolute;
    left:clamp(52px,5.9vw,106px);
    right:clamp(52px,5.9vw,106px);
    bottom:0;
    height:1px;
    background:var(--hero-line);
  }
  .brand{
    display:block;
    flex:0 0 auto;
    color:var(--hero-brown);
  }
  .brand img{
    display:none;
  }
  .desktop-brand-wordmark{
    display:flex;
    flex-direction:column;
    gap:0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:29px;
    font-weight:400;
    line-height:.92;
    letter-spacing:.26em;
  }
  .desktop-nav{
    display:flex !important;
    align-items:center;
    gap:34px;
    margin-left:auto;
    margin-right:60px;
    color:var(--hero-brown);
    font-family:Georgia,"Times New Roman",serif;
    font-size:16px;
    font-weight:400;
    letter-spacing:-.01em;
  }
  .desktop-nav a{
    padding:14px 0;
    opacity:.94;
  }
  .desktop-nav a:hover{
    opacity:.68;
  }
  .header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    margin:0;
  }
  .desktop-order-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:184px;
    height:51px;
    padding:0 28px;
    border-radius:999px;
    background:#3b2114;
    color:#fff8f0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:16px;
    font-weight:400;
    line-height:1;
    transition:transform .2s ease,background .2s ease;
  }
  .desktop-order-btn:hover{
    transform:translateY(-1px);
    background:#2d180f;
  }
  /* Keep the bakery's existing cart on desktop, positioned between nav and CTA. */
  .header-actions > .cart{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border:1px solid rgba(56,34,23,.20);
    border-radius:50%;
    background:rgba(255,255,255,.22);
    line-height:1;
    transition:transform .2s ease,background .2s ease,border-color .2s ease;
  }
  .header-actions > .cart:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.48);
    border-color:rgba(56,34,23,.34);
  }
  .header-actions > .cart .cart__img{
    width:24px;
    height:24px;
    filter:brightness(0) saturate(100%);
    opacity:.78;
  }
  .header-actions > .cart .cart__count{
    top:-5px;
    right:-5px;
    height:19px;
    min-width:19px;
    padding:0 5px;
    line-height:19px;
    border-radius:999px;
    background:#3b2114;
    color:#fff8f0;
    font-size:11px;
    font-weight:700;
  }
  .header-actions > .menu-btn{
    display:none !important;
  }

  /* Disable only the OLD desktop hero; it remains exactly as before below 901px. */
  .hero > .hero-media--desktop,
  .hero > .hero-mobile-carousel,
  .hero > .hero-bg,
  .hero > .hero-copy{
    display:none !important;
  }

  .hero{
    position:relative;
    display:block;
    width:100%;
    height:calc(100vh - 90px);
    min-height:720px;
    max-height:900px;
    overflow:hidden;
    background:var(--hero-cream);
    color:var(--hero-brown);
  }

  .hero-desktop-redesign{
    position:relative;
    display:block;
    width:100%;
    height:100%;
    overflow:hidden;
    background:var(--hero-cream);
  }

  .hero-desktop-botanical{
    position:absolute;
    z-index:1;
    left:-67px;
    bottom:-142px;
    width:184px;
    height:auto;
    max-width:none;
    opacity:.24;
    pointer-events:none;
  }

  .hero-desktop-copy{
    position:absolute;
    z-index:5;
    left:clamp(62px,5.9vw,106px);
    top:104px;
    width:min(590px,36vw);
  }

  .hero-desktop-eyebrow{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:31px;
    color:#49372d;
    font-family:Inter,Arial,sans-serif;
    font-size:11px;
    font-weight:600;
    line-height:1;
    letter-spacing:.31em;
    white-space:nowrap;
  }
  .hero-desktop-eyebrow i{
    display:block;
    width:128px;
    height:1px;
    background:rgba(63,43,31,.45);
  }

  .hero-desktop-copy h1{
    margin:0;
    max-width:590px;
    color:#382217;
    font-family:Italiana,Georgia,"Times New Roman",serif;
    font-size:clamp(70px,5.18vw,92px);
    font-weight:400;
    line-height:.96;
    letter-spacing:-.055em;
  }

  .hero-desktop-copy > p{
    margin:28px 0 0;
    color:#6e6058;
    font-family:Inter,Arial,sans-serif;
    font-size:20px;
    font-weight:400;
    line-height:1.45;
    letter-spacing:-.018em;
  }

  .hero-desktop-actions{
    display:flex;
    align-items:center;
    gap:28px;
    margin-top:34px;
  }
  .hero-desktop-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    min-width:285px;
    height:62px;
    padding:0 31px;
    border-radius:999px;
    background:#3b2114;
    color:#fff8f0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:17px;
    white-space:nowrap;
    transition:transform .2s ease,background .2s ease;
  }
  .hero-desktop-primary span{
    font-size:25px;
    line-height:1;
  }
  .hero-desktop-primary:hover{
    transform:translateY(-1px);
    background:#2d180f;
  }
  .hero-desktop-gallery{
    position:relative;
    display:inline-block;
    color:#3d2a1f;
    font-family:Georgia,"Times New Roman",serif;
    font-size:18px;
    line-height:1.2;
    white-space:nowrap;
  }
  .hero-desktop-gallery::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-5px;
    height:1px;
    background:currentColor;
  }

  .hero-desktop-signature{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:59px;
    color:#4d3425;
    font-family:Georgia,"Times New Roman",serif;
    font-size:18px;
    font-style:italic;
  }
  .hero-desktop-signature i{
    display:block;
    width:274px;
    height:1px;
    background:rgba(74,49,34,.38);
  }

  .hero-desktop-visual{
    position:absolute;
    z-index:2;
    top:0;
    right:clamp(62px,5.3vw,94px);
    width:50vw;
    max-width:900px;
    height:100%;
  }
  .hero-desktop-arch{
    position:absolute;
    inset:0;
    overflow:hidden;
    border-radius:50% 50% 0 0 / 46% 46% 0 0;
    background:#dfcbb9;
  }
  .hero-desktop-arch > img{
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
    object-position:center center;
  }
  .hero-desktop-quote{
    position:absolute;
    z-index:3;
    top:19%;
    right:6.4%;
    display:flex;
    flex-direction:column;
    align-items:center;
    color:rgba(76,56,43,.72);
    font-family:"Dancing Script",Georgia,cursive;
    font-size:29px;
    font-weight:500;
    line-height:1.12;
    transform:rotate(-4deg);
    text-align:center;
  }
  .hero-desktop-quote span:nth-child(2){ margin-left:8px; }
  .hero-desktop-quote span:nth-child(3){ margin-left:11px; }
  .hero-desktop-quote i{
    display:block;
    width:53px;
    height:1px;
    margin-top:24px;
    background:rgba(76,56,43,.55);
  }

  .hero-desktop-detail{
    position:absolute;
    z-index:4;
    left:-107px;
    top:49.3%;
    width:282px;
    height:316px;
    overflow:hidden;
    border:7px solid #fbf6f0;
    background:#d7c4b2;
    box-shadow:0 14px 34px rgba(58,37,24,.10);
  }
  .hero-desktop-detail img{
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
    object-position:47% 54%;
  }
}

@media (min-width:901px) and (max-width:1180px){
  .site-header{
    padding-left:44px;
    padding-right:44px;
  }
  .site-header::after{
    left:44px;
    right:44px;
  }
  .desktop-brand-wordmark{
    font-size:23px;
  }
  .desktop-nav{
    gap:20px;
    margin-right:28px;
    font-size:14px;
  }
  .header-actions{gap:9px;}
  .header-actions > .cart{width:40px;height:40px;}
  .header-actions > .cart .cart__img{width:22px;height:22px;}
  .desktop-order-btn{
    min-width:154px;
    height:47px;
    padding:0 21px;
    font-size:14px;
  }
  .hero-desktop-copy{
    left:44px;
    top:90px;
    width:43vw;
  }
  .hero-desktop-copy h1{
    font-size:clamp(62px,6.7vw,76px);
  }
  .hero-desktop-copy > p{
    font-size:17px;
  }
  .hero-desktop-primary{
    min-width:238px;
    height:56px;
    padding:0 24px;
    font-size:15px;
  }
  .hero-desktop-gallery{
    font-size:16px;
  }
  .hero-desktop-signature{
    margin-top:42px;
  }
  .hero-desktop-signature i{
    width:150px;
  }
  .hero-desktop-visual{
    right:44px;
    width:51vw;
  }
  .hero-desktop-detail{
    left:-73px;
    width:220px;
    height:250px;
  }
  .hero-desktop-botanical{
    opacity:.18;
  }
}


/* ==========================================================
   DESKTOP CART VISIBILITY FIX v2
   Keeps the existing Mousse Bakery cart behavior/IDs, but
   guarantees the cart remains visible in the redesigned header.
   Desktop only; mobile remains untouched.
   ========================================================== */
@media (min-width:901px){
  .site-header .header-actions > .desktop-header-cart{
    display:inline-flex !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative !important;
    flex:0 0 44px !important;
    width:44px !important;
    height:44px !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:visible !important;
    z-index:5 !important;
  }
  .site-header .desktop-header-cart .cart__img{
    display:block !important;
    visibility:visible !important;
    opacity:.82 !important;
    width:24px !important;
    height:24px !important;
    max-width:none !important;
    filter:brightness(0) saturate(100%) !important;
  }
  .site-header .desktop-header-cart .cart__count{
    display:inline-block !important;
    visibility:visible !important;
    opacity:1 !important;
    z-index:6 !important;
  }
}




/* =========================================================
   Cart payment methods — card-style block
   ========================================================= */
.payment-methods{
  margin:4px 0 20px;
  padding:16px;
  border:1px solid rgba(255,255,255,.34);
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
}

.payment-methods__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.payment-methods__title{
  font-size:15px;
  font-weight:700;
  line-height:1.2;
}

.payment-methods__stripe{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:4px 8px;
  border-radius:8px;
  background:#ffffff;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.payment-methods__stripe img{
  display:block;
  width:96px;
  max-width:100%;
  height:auto;
}

.payment-methods__icons{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px;
  align-items:stretch;
}

.payment-logo{
  min-height:38px;
  border-radius:8px;
  padding:7px 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(26,17,12,.08);
  box-shadow:0 2px 10px rgba(0,0,0,.08);
  background:#fff;
  overflow:hidden;
}

.payment-logo img{
  display:block;
  max-width:100%;
  max-height:24px;
  width:auto;
  height:auto;
  object-fit:contain;
  image-rendering:auto;
}

.payment-logo--visa{ background:#1a2e8a; }
.payment-logo--visa img{ max-height:18px; }

.payment-logo--mc{ background:#ffffff; }
.payment-logo--mc img{ max-height:23px; }

.payment-logo--amex{ background:#ffffff; }
.payment-logo--amex img{ max-height:22px; max-width:78px; }

.payment-logo--discover{ background:#ffffff; }
.payment-logo--discover img{ max-height:19px; }

.payment-logo--apple{ background:#121212; }
.payment-logo--apple img{ max-height:18px; }

.payment-logo--gpay{ background:#ffffff; justify-content:center; padding-left:10px; padding-right:10px; }
.payment-logo--gpay img{ max-height:20px; max-width:72px; }

.payment-methods__note{
  margin:12px 0 0;
  color:rgba(255,255,255,.86);
  font-size:11px;
  line-height:1.4;
}

@media(max-width:600px){
  .payment-methods{padding:14px;}
  .payment-methods__icons{gap:7px;}
  .payment-logo{min-height:36px;padding:6px 8px;}
  .payment-logo img{max-height:23px;}
}


/* =========================================================
   PAYMENT ICONS FINAL OVERRIDE — 2026-09-23
   Keeps tiles clean/white and makes the actual brand marks larger.
   ========================================================= */
.cart-summary .payment-methods__icons{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:10px !important;
}

.cart-summary .payment-logo{
  min-height:48px !important;
  height:48px !important;
  padding:7px 12px !important;
  border-radius:9px !important;
  background:#fff !important;
  border:1px solid rgba(38,29,23,.08) !important;
  box-shadow:0 2px 8px rgba(0,0,0,.08) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
}

.cart-summary .payment-logo img{
  display:block !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
  max-width:92% !important;
  max-height:31px !important;
  opacity:1 !important;
  filter:none !important;
  transform:none !important;
}

/* VISA: white card + blue brand wordmark */
.cart-summary .payment-logo--visa{
  background:#fff !important;
}
.cart-summary .payment-logo--visa img{
  max-width:78px !important;
  max-height:27px !important;
}

/* Mastercard */
.cart-summary .payment-logo--mc img{
  max-width:82px !important;
  max-height:30px !important;
}

/* American Express */
.cart-summary .payment-logo--amex{
  background:#fff !important;
}
.cart-summary .payment-logo--amex img{
  max-width:84px !important;
  max-height:32px !important;
}

/* Discover */
.cart-summary .payment-logo--discover img{
  max-width:82px !important;
  max-height:28px !important;
}

/* Apple Pay: white card + black logo */
.cart-summary .payment-logo--apple{
  background:#fff !important;
}
.cart-summary .payment-logo--apple img{
  max-width:80px !important;
  max-height:28px !important;
}

/* Google Pay */
.cart-summary .payment-logo--gpay{
  background:#fff !important;
  padding-left:10px !important;
  padding-right:10px !important;
}
.cart-summary .payment-logo--gpay img{
  max-width:86px !important;
  max-height:29px !important;
}

@media(max-width:600px){
  .cart-summary .payment-methods__icons{gap:7px !important;}
  .cart-summary .payment-logo{height:43px !important;min-height:43px !important;padding:6px 8px !important;}
  .cart-summary .payment-logo img{max-height:27px !important;}
}


/* Desktop navigation with Wedding + Custom */
@media (max-width: 1180px) and (min-width: 901px) {
  .site-header {
    padding-left: 28px;
    padding-right: 28px;
  }

  .desktop-nav {
    gap: 16px;
    font-size: 11px;
  }

  .header-actions {
    gap: 12px;
  }

  .desktop-order-btn {
    padding-left: 18px;
    padding-right: 18px;
  }
}


/* =========================================================
   LIGHT INLINE LEGAL BAR
   ========================================================= */

.home-legal-footer {
  display: none !important;
}

.home-legal-inline {
  padding: 18px 24px 28px;
  background: transparent;
}

.home-legal-inline__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 14px;
  border-top: 1px solid rgba(54, 37, 24, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(54, 37, 24, .72);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.home-legal-inline__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.home-legal-inline__links a {
  color: rgba(54, 37, 24, .82);
  text-decoration: none;
  transition: color .2s ease;
}

.home-legal-inline__links a:hover,
.home-legal-inline__links a:focus-visible {
  color: #2c190d;
}

@media (max-width: 600px) {
  .home-legal-inline {
    padding: 16px 20px 24px;
  }

  .home-legal-inline__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }

  .home-legal-inline__links {
    gap: 6px;
  }
}

/* =========================================================
   MOBILE HERO — POSITION ONLY
   Layout copied from Wholesale.
   Text/button visual styles are NOT changed here.
   ========================================================= */

/* Desktop headline styling stays exactly as it was */
@media (min-width: 901px) {
  .hero-desktop-copy h1 {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-weight: 500 !important;
    font-style: normal !important;
    line-height: .94 !important;
    letter-spacing: -.045em !important;
  }
}

@media (max-width: 760px) {
  /* Wholesale hero section placement */
  .hero {
    min-height: 100svh !important;
    display: flex !important;
    align-items: flex-end !important;
  }

  /* Wholesale content-container placement */
  .hero .hero-copy {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    padding: 96px 18px 70px !important;
  }

  /* Move only the big title + use Fraunces like Wholesale */
  .hero .hero-copy .hero-mobile-title-balanced {
    position: relative !important;
    top: -50px !important;
    margin: 0 0 12px !important;
    font-family: "Cormorant Garamond", serif !important;
  }

  /* Keep each title line where it already belongs */
  .hero .hero-copy .hero-mobile-title-balanced > span {
    display: block !important;
    white-space: nowrap !important;
    font-family: inherit !important;
  }

  /* Position only — typography stays from the existing Index CSS */
  .hero .hero-copy > p {
    position: relative !important;
    top: -28px !important;
    max-width: 330px !important;
    margin: 20px 0 18px !important;
  }

  /* Position the mobile highlights like the Wholesale trust row */
  .hero .hero-copy .hero-trust {
    max-width: 330px !important;
    margin: 0 0 28px !important;
  }

  /* Position buttons only. Their visual styling remains unchanged. */
  .hero .hero-actions {
    width: 100% !important;
    max-width: 320px !important;
    margin-top: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  /* Position signature only */
  .hero .signature {
    margin-top: 28px !important;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 760px) {
    .hero {
      min-height: 100dvh !important;
    }
  }
}

@media (max-width: 390px) {
  .hero .hero-copy {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero .hero-copy > p,
  .hero .hero-copy .hero-trust,
  .hero .hero-actions {
    max-width: 300px !important;
  }
}

/* =========================================================
   HERO TRUST HIGHLIGHTS
   ========================================================= */
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:8px 10px;
  margin-top:18px;
}
.hero-trust__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:31px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:rgba(255,255,255,.92);
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:700;
  line-height:1;
  letter-spacing:.01em;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  white-space:nowrap;
}
.hero-trust__item::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  flex:0 0 5px;
  background:#d7a46f;
  box-shadow:0 0 0 3px rgba(215,164,111,.18);
}


@media (max-width:900px){
  .hero .hero-copy > p{
    margin-bottom:0 !important;
  }
  .hero .hero-copy .hero-trust{
    margin-top:18px !important;
    max-width:330px;
  }
  .hero .hero-copy .hero-trust__item{
    font-size:10.5px;
    min-height:29px;
    padding:7px 11px;
  }
}

@media (max-width:600px){
  .hero .hero-copy .hero-trust{
    margin-top:18px !important;
    gap:8px 8px !important;
  }
}
/* =========================================================
   MOUSSE BAKERY — PRIVACY + TERMS + FOOTER
   Only styles needed by privacy-policy.html and terms.html.
   Safe to append to the main site's CSS.
   ========================================================= */

/* ---------- Shared legal-page brand/link basics ---------- */

.legal-page a {
  color: inherit;
  text-decoration: none;
}

.legal-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  white-space: nowrap;
}

.legal-page .brand-logo-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.legal-page .brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ---------- Privacy Policy / Terms page ---------- */

.legal-page {
  min-height: 100vh;
  margin: 0;
  background: var(--paper, #f6f0e7);
  color: var(--ink, #11110f);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line, rgba(17,17,15,.14));
  background: #11110f;
  color: var(--white, #fff);
}

.legal-header .brand {
  color: var(--white, #fff);
}

.legal-back {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.74);
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--white, #fff);
}

.legal-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-main .eyebrow {
  margin-bottom: 12px;
}

.legal-main h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.legal-updated {
  margin-bottom: 42px;
  color: var(--muted, #6f6a63);
  font-size: .82rem;
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid var(--line, rgba(17,17,15,.14));
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content li {
  color: var(--muted, #6f6a63);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--ink, #11110f);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ---------- Footer used by Privacy + Terms ---------- */

.legal-page .footer {
  display: grid;
  gap: 40px;
  margin-top: 0;
  padding: 62px 20px 24px;
  background: #11110f;
  color: var(--white, #fff);
}

.legal-page .footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.legal-page .brand-footer {
  gap: 10px;
  font-size: .75rem;
  color: #fff;
}

.legal-page .footer-brand p {
  max-width: 340px;
  margin: 18px 0 6px;
  color: rgba(255,255,255,.68);
}

.legal-page .footer-brand > span {
  color: rgba(255,255,255,.42);
  font-size: .78rem;
}

.legal-page .footer-nav {
  display: grid;
  gap: 12px;
}

.legal-page .footer-nav a {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  transition: color .2s ease;
}

.legal-page .footer-nav a:hover,
.legal-page .footer-nav a:focus-visible {
  color: #fff;
}

.legal-page .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.42);
  font-size: .72rem;
}

.legal-page .footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.42);
  font-size: .72rem;
}

.legal-page .footer-legal a {
  color: rgba(255,255,255,.58);
  transition: color .2s ease;
}

.legal-page .footer-legal a:hover,
.legal-page .footer-legal a:focus-visible,
.legal-page .footer-legal a[aria-current="page"] {
  color: rgba(255,255,255,.95);
}


/* ---------- Desktop ---------- */

@media (min-width: 761px) {
  .legal-page .brand {
    font-size: .72rem;
  }

  .legal-page .brand-logo-wrap {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .legal-header {
    padding: 20px 5vw;
  }

  .legal-main {
    padding: 104px 0 120px;
  }

  .legal-page .footer {
    grid-template-columns: 1.1fr .9fr;
    padding: 78px 5vw 28px;
  }

  .legal-page .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }

  .legal-page .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* =========================================================
   DESKTOP HEADER WORDMARK LOGO COLOR FIX
   Keep the new Mousse Bakery wordmark in its original brown.
   ========================================================= */
@media (min-width: 901px) {
  .site-header .brand .desktop-header-wordmark-logo {
    filter: none !important;
    -webkit-filter: none !important;
  }
}
/* =========================================================
   HOME REVIEWS SECTION
   ========================================================= */
.reviews-home{
  padding:34px clamp(18px,4vw,40px) 24px;
  background:
    radial-gradient(circle at top left, rgba(201,166,128,.10), transparent 22%),
    linear-gradient(180deg, rgba(255,249,242,.65) 0%, rgba(255,249,242,0) 100%);
}
.reviews-home__inner{
  max-width:1260px;
  margin:0 auto;
}
.reviews-home__intro{
  max-width:760px;
  margin:0 auto 26px;
  text-align:center;
}
.reviews-home__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  padding:8px 14px;
  border:1px solid rgba(111,71,47,.18);
  border-radius:999px;
  background:rgba(255,255,255,.55);
  color:#8b5f41;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
}
.reviews-home__intro h2{
  margin:0 0 12px;
  font-family:Italiana, Georgia, serif;
  font-size:clamp(34px,4vw,56px);
  font-weight:400;
  line-height:1;
  letter-spacing:-.03em;
  color:#2a211b;
}
.reviews-home__intro p{
  margin:0 auto;
  max-width:650px;
  color:#6f6258;
  font-size:15px;
  line-height:1.75;
}
.reviews-home__chips{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.reviews-home__chips span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(102,77,57,.12);
  box-shadow:0 8px 25px rgba(48,33,25,.05);
  color:#5e4d41;
  font-size:12px;
  font-weight:700;
}
.reviews-home__chips span::before{
  content:"✦";
  color:#a56f43;
  font-size:11px;
}
.reviews-masonry{
  column-count:3;
  column-gap:22px;
}
.review-card{
  display:inline-block;
  width:100%;
  margin:0 0 22px;
  border:1px solid rgba(102,77,57,.13);
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.78);
  box-shadow:0 18px 45px rgba(47,33,25,.08);
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  backdrop-filter:blur(3px);
}
.review-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px 14px;
}
.review-card__type{
  color:#8a6042;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
}
.review-card__stars{
  color:#c08a4f;
  font-size:13px;
  letter-spacing:.1em;
  white-space:nowrap;
}
.review-card__media{
  display:block;
  padding:0 12px;
}
.review-card__media img{
  width:100%;
  height:auto;
  border-radius:22px;
  background:#eee5dc;
  box-shadow:0 10px 30px rgba(40,28,22,.06);
}
.review-card__body{
  padding:16px 18px 20px;
}
.review-card__body h3{
  margin:0 0 8px;
  font-family:Italiana, Georgia, serif;
  font-size:28px;
  font-weight:400;
  line-height:1.04;
  color:#2b2019;
}
.review-card__body p{
  margin:0;
  color:#6b5c51;
  font-size:14px;
  line-height:1.65;
}
.reviews-home__footer{
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

@media (max-width: 1100px){
  .reviews-masonry{
    column-count:2;
  }
}
@media (max-width: 700px){
  .reviews-home{
    padding-top:22px;
  }
  .reviews-home__intro{
    margin-bottom:22px;
  }
  .reviews-home__eyebrow{
    margin-bottom:10px;
  }
  .reviews-home__intro h2{
    font-size:34px;
  }
  .reviews-home__intro p{
    font-size:14px;
    line-height:1.65;
  }
  .reviews-home__chips{
    gap:8px;
  }
  .reviews-home__chips span{
    min-height:34px;
    padding:7px 12px;
    font-size:11px;
  }
  .reviews-masonry{
    column-count:1;
    column-gap:0;
  }
  .review-card{
    margin-bottom:18px;
    border-radius:24px;
  }
  .review-card__top{
    padding:14px 15px 12px;
  }
  .review-card__media{
    padding:0 10px;
  }
  .review-card__media img{
    border-radius:18px;
  }
  .review-card__body{
    padding:14px 15px 18px;
  }
  .review-card__body h3{
    font-size:24px;
  }
  .review-card__body p{
    font-size:13px;
  }
}

/* =========================================================
   PHONE ONLY — TINDER-STYLE REVIEW DECK
   Clean version: visible drag + fly-out + infinite loop.
   Desktop and tablet are unchanged.
   ========================================================= */

.reviews-swipe-hint {
  display: none;
}

@media (max-width: 600px) {
  html.phone-review-deck .reviews-home {
    overflow: hidden;
  }

  html.phone-review-deck .reviews-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -2px 0 14px;
    color: #8a6042;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  html.phone-review-deck .reviews-swipe-hint span:first-child,
  html.phone-review-deck .reviews-swipe-hint span:last-child {
    font-size: 16px;
    font-weight: 500;
  }

  html.phone-review-deck .reviews-masonry {
    position: relative;
    display: block;
    width: 100%;
    min-height: 560px;
    margin: 0 auto 8px;
    padding: 0;
    overflow: visible;
    column-count: initial;
    column-gap: 0;
    isolation: isolate;
  }

  html.phone-review-deck .review-card {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: min(calc(100% - 28px), 380px);
    margin: 0;
    border-radius: 24px;
    background: #fffaf6;
    pointer-events: none;
    transform-origin: 50% 55%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
      transform .34s cubic-bezier(.22,.78,.24,1),
      box-shadow .25s ease;
  }

  /* Front card */
  html.phone-review-deck .review-card:nth-child(1) {
    z-index: 30;
    opacity: 1;
    pointer-events: auto;
    transform:
      translate3d(-50%, 0, 0)
      rotate(0deg)
      scale(1);
    box-shadow: 0 17px 36px rgba(47,33,25,.12);
  }

  /*
   * Rear cards peek from opposite sides near the center.
   * Their text/header is hidden until the card becomes the front card.
   */
  html.phone-review-deck .review-card:nth-child(2) {
    z-index: 20;
    opacity: .92;
    transform:
      translate3d(calc(-50% - 16px), 5px, 0)
      rotate(-2.5deg)
      scale(.975);
    box-shadow: 0 9px 20px rgba(47,33,25,.055);
  }

  html.phone-review-deck .review-card:nth-child(3) {
    z-index: 10;
    opacity: .78;
    transform:
      translate3d(calc(-50% + 16px), 8px, 0)
      rotate(2.6deg)
      scale(.952);
    box-shadow: 0 7px 16px rgba(47,33,25,.04);
  }

  html.phone-review-deck .review-card:nth-child(n+4) {
    display: none !important;
  }

  html.phone-review-deck .review-card:nth-child(2) .review-card__top,
  html.phone-review-deck .review-card:nth-child(2) .review-card__body,
  html.phone-review-deck .review-card:nth-child(3) .review-card__top,
  html.phone-review-deck .review-card:nth-child(3) .review-card__body {
    opacity: 0;
    visibility: hidden;
    transition: none !important;
    animation: none !important;
  }

  /*
   * When the top card flies away, the second card rises into the front
   * at the same time. This is the part that creates the Tinder feel.
   */
  html.phone-review-deck .reviews-masonry.is-advancing
    .review-card:nth-child(2) {
    z-index: 25;
    opacity: 1;
    transform:
      translate3d(-50%, 0, 0)
      rotate(0deg)
      scale(1);
    box-shadow: 0 17px 36px rgba(47,33,25,.12);
  }

  html.phone-review-deck .reviews-masonry.is-advancing
    .review-card:nth-child(2) .review-card__top,
  html.phone-review-deck .reviews-masonry.is-advancing
    .review-card:nth-child(2) .review-card__body {
    opacity: 1;
    visibility: visible;
  }

  html.phone-review-deck .reviews-masonry.is-advancing
    .review-card:nth-child(3) {
    z-index: 15;
    opacity: .92;
    transform:
      translate3d(calc(-50% - 16px), 5px, 0)
      rotate(-2.5deg)
      scale(.975);
  }

  /* The card follows the finger in real time. */
  html.phone-review-deck .review-card:nth-child(1).is-dragging {
    transition: none !important;
    transform:
      translate3d(
        calc(-50% + var(--swipe-x, 0px)),
        0,
        0
      )
      rotate(var(--swipe-rotate, 0deg))
      scale(1) !important;
    opacity: var(--swipe-opacity, 1) !important;
    box-shadow: 0 20px 42px rgba(47,33,25,.15);
  }

  /* If the swipe is too short, visibly spring back to the center. */
  html.phone-review-deck .review-card:nth-child(1).is-returning {
    transition:
      transform .30s cubic-bezier(.22,.82,.22,1),
      opacity .25s ease !important;
    transform:
      translate3d(
        calc(-50% + var(--swipe-x, 0px)),
        0,
        0
      )
      rotate(var(--swipe-rotate, 0deg))
      scale(1) !important;
    opacity: var(--swipe-opacity, 1) !important;
  }

  /* Full Tinder-style fly-out after the threshold is crossed. */
  html.phone-review-deck .review-card:nth-child(1).is-leaving {
    z-index: 40 !important;
    transition:
      transform .48s cubic-bezier(.18,.72,.23,1),
      opacity .40s ease !important;
    transform:
      translate3d(
        calc(-50% + var(--leave-x, 520px)),
        -8px,
        0
      )
      rotate(var(--leave-rotate, 18deg))
      scale(.985) !important;
    opacity: 0 !important;
  }

  html.phone-review-deck .review-card__media,
  html.phone-review-deck .review-card__media img {
    -webkit-user-drag: none;
  }

  html.phone-review-deck .review-card__media img {
    box-shadow: none;
  }

  /*
   * Text on the front card is always present immediately.
   * There is no independent text fade/reveal animation.
   */
  html.phone-review-deck .review-card:nth-child(1) .review-card__top,
  html.phone-review-deck .review-card:nth-child(1) .review-card__media,
  html.phone-review-deck .review-card:nth-child(1) .review-card__body,
  html.phone-review-deck .review-card:nth-child(1) .review-card__body h3,
  html.phone-review-deck .review-card:nth-child(1) .review-card__body p {
    opacity: 1;
    visibility: visible;
    animation: none !important;
  }

  /* Keep review text sizes consistent so the deck height is stable. */
  html.phone-review-deck .review-card__body {
    min-height: 112px;
  }

  html.phone-review-deck .review-card__body h3 {
    min-height: 50px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  html.phone-review-deck .review-card__body p {
    min-height: 42px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  /* CTA buttons always stay below the moving deck. */
  html.phone-review-deck .reviews-home__footer {
    position: relative;
    z-index: 50;
    margin-top: 8px !important;
    padding-top: 8px;
  }

  html.phone-review-deck .reviews-home__footer .btn {
    position: relative;
    z-index: 51;
  }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  html.phone-review-deck .review-card,
  html.phone-review-deck .review-card.is-returning,
  html.phone-review-deck .review-card.is-leaving {
    transition-duration: .01ms !important;
  }
}

