:root{
  --purple:#5B248D; --purple-dk:#3E1863; --pink:#F29AD6; --pink-soft:#FBE3F1;
  --gold:#C58A00; --gold-soft:#F4E3BE; --ivory:#F4ECEB; --white:#FFFFFF;
  --ink:#2E1B3D; --muted:#6B5A72; --line:#E7D9E9; --radius:18px;
  --shadow:0 10px 30px rgba(91,36,141,.10);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Poppins',sans-serif;color:var(--ink);background:var(--ivory);line-height:1.55;-webkit-font-smoothing:antialiased;padding-bottom:66px;}
h1,h2,h3,h4{font-family:'Playfair Display',serif;font-weight:700;color:var(--purple-dk);line-height:1.15;}
a{text-decoration:none;color:inherit;}
img{display:block;max-width:100%;}
picture{display:contents;}
.wrap{max-width:1180px;margin:0 auto;padding:0 24px;}
.eyebrow{font-size:12.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--purple);display:inline-flex;align-items:center;gap:8px;margin-bottom:12px;}
.eyebrow::before{content:"";width:18px;height:2px;background:var(--gold);display:inline-block;}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:'Poppins',sans-serif;font-weight:600;font-size:15px;padding:14px 26px;border-radius:999px;border:none;cursor:pointer;transition:transform .15s ease, box-shadow .15s ease;}
.btn:active{transform:scale(.97);}
.btn-primary{background:var(--purple);color:#fff;box-shadow:0 8px 20px rgba(91,36,141,.28);}
.btn-primary:hover{background:var(--purple-dk);}
.btn-call{background:var(--white);color:var(--purple);border:1.5px solid var(--purple);}
.btn-call:hover{background:var(--pink-soft);}
.btn-wa{background:#25D366;color:#fff;}
.btn-wa:hover{filter:brightness(0.95);}
.btn-ghost{background:transparent;color:var(--purple);border:1.5px solid var(--line);}
.btn-block{width:100%;}
.btn-sm{padding:9px 16px;font-size:13px;}
.pill{display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:600;padding:7px 14px;border-radius:999px;background:var(--white);color:var(--purple-dk);border:1px solid var(--line);}
.section{padding:76px 0;}
.section-narrow{padding:56px 0;}
.section-title{font-size:clamp(24px,3.2vw,36px);margin-bottom:10px;}
.section-sub{color:var(--muted);font-size:15.5px;max-width:640px;margin-bottom:36px;}
.card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);}
.center{text-align:center;margin-left:auto;margin-right:auto;}

/* header */
header.site{position:sticky;top:0;z-index:50;background:rgba(244,236,235,.95);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:1px 2px;max-width:1180px;margin:0 auto;}
.brand{display:flex;align-items:center;gap:10px;flex:none;}
.brand img{height:142px;width:auto;}
.header-right{display:flex;align-items:center;gap:14px;flex:none;}
.header-actions{display:flex;gap:10px;align-items:center;}
.icon-btn{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;border:1.5px solid var(--purple);color:var(--purple);background:#fff;flex:none;}
.icon-btn.wa{border-color:#25D366;color:#25D366;}
.icon-btn svg{width:20px;height:20px;}
.burger{display:none;width:42px;height:42px;border-radius:10px;border:1.5px solid var(--line);background:#fff;color:var(--purple);align-items:center;justify-content:center;cursor:pointer;flex:none;}
.burger svg{width:21px;height:21px;}

/* desktop dropdown nav — flex:1 lets it own the middle space and self-center,
   so hiding it on mobile never disturbs the brand/burger positions at the ends */
.nav-desktop{flex:1;display:flex;gap:36px;justify-content:center;}
.nav-item{position:relative;}
.nav-top{display:inline-flex;align-items:center;gap:5px;font-weight:600;font-size:15px;color:var(--ink);cursor:pointer;padding:10px 2px;}
.nav-top svg{width:14px;height:14px;color:var(--purple);transition:transform .18s ease;}
.nav-item:hover .nav-top{color:var(--purple);}
.nav-item:hover .nav-top svg{transform:rotate(180deg);}
.nav-dropdown{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(6px);background:#fff;border-radius:12px;box-shadow:var(--shadow);padding:10px;min-width:220px;opacity:0;visibility:hidden;transition:opacity .16s ease, transform .16s ease;z-index:20;}
.nav-item:hover .nav-dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.nav-dropdown a{display:block;padding:9px 12px;border-radius:8px;font-size:13.5px;color:var(--ink);cursor:pointer;}
.nav-dropdown a:hover{background:var(--pink-soft);color:var(--purple-dk);}

/* mobile accordion panel */
.nav-panel-mobile{position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);box-shadow:0 16px 30px rgba(91,36,141,.14);max-height:0;overflow:hidden;transition:max-height .3s ease;}
.nav-panel-mobile.open{max-height:70vh;overflow-y:auto;}
.nav-acc-item{border-bottom:1px solid var(--line);}
.nav-acc-head{width:100%;display:flex;justify-content:space-between;align-items:center;padding:16px 20px;font-weight:600;font-size:15px;color:var(--ink);background:none;border:none;cursor:pointer;font-family:'Poppins',sans-serif;}
.nav-acc-head svg{width:16px;height:16px;color:var(--purple);transition:transform .2s ease;flex:none;}
.nav-acc-item.open .nav-acc-head svg{transform:rotate(180deg);}
.nav-acc-body{max-height:0;overflow:hidden;transition:max-height .25s ease;padding:0 20px;}
.nav-acc-item.open .nav-acc-body{max-height:320px;padding-bottom:10px;}
.nav-acc-body a{display:block;padding:9px 0;font-size:14px;color:var(--muted);cursor:pointer;}
.nav-overlay{display:none;position:fixed;inset:0;background:rgba(46,27,61,.35);z-index:45;}
.nav-overlay.open{display:block;}

/* highlight pulse for direct product navigation */
@keyframes pulseHighlight{
  0%{box-shadow:0 0 0 0 rgba(197,138,0,.55);}
  70%{box-shadow:0 0 0 16px rgba(197,138,0,0);}
  100%{box-shadow:0 0 0 0 rgba(197,138,0,0);}
}
.nav-target-highlight{animation:pulseHighlight 1.4s ease-out 2;border-radius:var(--radius);}

/* hero */
.hero{padding:44px 0 60px;}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:44px;align-items:start;}
.hero h1{font-size:clamp(32px,4.2vw,50px);margin-bottom:16px;}
.hero h1 em{font-style:normal;color:var(--purple);}
.hero-sub{font-size:17px;color:var(--muted);max-width:520px;margin-bottom:22px;}
.badge-row{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:28px;}
.hero-carousel{position:relative;margin-top:6px;border-radius:16px;overflow:hidden;box-shadow:var(--shadow);aspect-ratio:4/3.1;background:var(--white);}
.carousel-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .7s ease;}
.carousel-img.active{opacity:1;}
.carousel-dots{position:absolute;bottom:14px;left:0;right:0;display:flex;justify-content:center;gap:8px;}
.carousel-dots .dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.55);cursor:pointer;border:1px solid rgba(46,27,61,.2);}
.carousel-dots .dot.active{background:var(--gold);}

/* form card */
.form-card{padding:26px;position:sticky;top:84px;}
.form-card h3{font-size:20px;margin-bottom:4px;}
.form-card .form-note{font-size:13px;color:var(--muted);margin-bottom:18px;}
.step-row{display:flex;gap:8px;margin-bottom:6px;flex-wrap:wrap;}
.chip{padding:8px 14px;border-radius:999px;border:1.5px solid var(--line);font-size:13.5px;font-weight:600;color:var(--ink);background:#fff;cursor:pointer;transition:all .12s ease;}
.chip.active{background:var(--purple);border-color:var(--purple);color:#fff;}
.field-label{font-size:12.5px;font-weight:700;color:var(--purple-dk);text-transform:uppercase;letter-spacing:.04em;margin:16px 0 8px;display:block;}
.field-label:first-of-type{margin-top:4px;}
.summary-box{background:var(--pink-soft);border-radius:12px;padding:12px 14px;font-size:13.5px;color:var(--purple-dk);margin:16px 0;font-weight:600;}
input[type=text], input[type=tel], input[type=date], textarea{
  width:100%;padding:11px 13px;border-radius:10px;border:1.5px solid var(--line);font-family:'Poppins',sans-serif;font-size:14px;background:#fff;
}
input:focus, textarea:focus{outline:2px solid var(--purple);outline-offset:1px;}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.form-actions{margin-top:20px;display:flex;flex-direction:column;gap:10px;}
.trust-mini{display:flex;gap:14px;margin-top:18px;justify-content:center;flex-wrap:wrap;}
.trust-mini span{font-size:11.5px;color:var(--muted);display:flex;align-items:center;gap:5px;}
.trust-mini svg{width:13px;height:13px;color:var(--gold);}

/* usp */
.usp-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.usp-card{padding:24px 20px;text-align:left;}
.usp-icon{width:46px;height:46px;border-radius:12px;background:var(--pink-soft);display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.usp-icon svg{width:22px;height:22px;color:var(--purple);}
.usp-card h4{font-size:16px;margin-bottom:6px;color:var(--ink);}
.usp-card p{font-size:13.5px;color:var(--muted);}

/* cake builder / gallery */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:44px;}
.gallery-grid figure{position:relative;border-radius:16px;overflow:hidden;box-shadow:var(--shadow);}
.gallery-grid img{aspect-ratio:1/1;object-fit:cover;object-position:top center;}
.gallery-grid figcaption{position:absolute;bottom:0;left:0;right:0;padding:14px 16px;background:linear-gradient(0deg,rgba(46,27,61,.78),transparent);color:#fff;font-weight:600;font-size:14px;}

.builder{display:grid;grid-template-columns:1.1fr .9fr;gap:0;overflow:hidden;}
.builder-left{padding:36px;}
.builder-right{background:var(--purple);color:#fff;padding:36px;display:flex;flex-direction:column;justify-content:center;}
.builder-right h3{color:#fff;font-size:20px;margin-bottom:10px;}
.builder-right p{color:#E7D2F0;font-size:14px;margin-bottom:18px;}
.builder-summary{background:rgba(255,255,255,.12);border-radius:12px;padding:16px;font-size:14px;margin-bottom:18px;}
.builder-summary b{display:block;font-family:'Playfair Display',serif;font-size:17px;margin-bottom:4px;}
.builder-group{margin-bottom:22px;}
.builder-group .field-label{color:var(--purple-dk);}

/* bundles */
.bundle-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.bundle-card{padding:22px 20px;display:flex;flex-direction:column;gap:10px;border:1.5px solid transparent;}
.bundle-card.reco{border-color:var(--gold);}
.bundle-tag{align-self:flex-start;font-size:10.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;background:var(--gold-soft);color:var(--gold);padding:4px 10px;border-radius:999px;}
.bundle-card h4{font-size:17px;}
.bundle-card p{font-size:13px;color:var(--muted);flex:1;}
.bundle-card .btn{margin-top:4px;}

/* treats */
.treats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:20px;}
.treat-card{overflow:hidden;display:flex;flex-direction:column;}
.treat-card img{aspect-ratio:3/4;object-fit:contain;background:var(--ivory);padding:14px;}
.treat-body{padding:16px 18px 18px;}
.treat-name{font-size:16px;font-family:'Playfair Display',serif;font-weight:700;color:var(--purple-dk);}
.treat-for{font-size:12px;color:var(--gold);font-weight:700;text-transform:uppercase;letter-spacing:.03em;margin-bottom:8px;}
.treat-body p{font-size:12.5px;color:var(--muted);margin-bottom:10px;}
.treat-add{display:flex;align-items:center;gap:8px;font-size:12.5px;font-weight:600;color:var(--purple);cursor:pointer;}
.treat-add input{width:16px;height:16px;accent-color:var(--purple);}

.treats-only{background:var(--purple);border-radius:var(--radius);padding:32px 36px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;color:#fff;}
.treats-selected{background:var(--pink-soft);border:1.5px solid var(--pink);border-radius:12px;padding:12px 16px;font-size:13.5px;color:var(--purple-dk);font-weight:600;margin-top:2px;}
.treats-only h3{color:#fff;font-size:21px;margin-bottom:6px;}
.treats-only p{color:#E7D2F0;font-size:14px;max-width:480px;}

/* trust strip */
.trust-strip{background:var(--white);}
.trust-icons{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;text-align:center;}
.trust-icons div{padding:18px 10px;}
.trust-icons svg{width:26px;height:26px;color:var(--purple);margin:0 auto 8px;}
.trust-icons span{font-size:12px;font-weight:600;color:var(--ink);display:block;}
.claims-row{display:flex;flex-wrap:wrap;gap:10px 22px;margin-top:26px;justify-content:center;}
.claims-row span{font-size:13px;color:var(--muted);display:flex;align-items:center;gap:6px;}
.claims-row svg{width:14px;height:14px;color:var(--gold);flex:none;}

/* disclaimer */
.disclaimer{background:var(--gold-soft);border-radius:14px;padding:18px 24px;display:flex;gap:14px;align-items:flex-start;}
.disclaimer svg{width:22px;height:22px;color:var(--gold);flex:none;margin-top:2px;}
.disclaimer p{font-size:13.5px;color:var(--ink);}
.disclaimer b{color:var(--purple-dk);}

/* faq */
.faq-item{border-bottom:1px solid var(--line);padding:18px 0;}
.faq-q{display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:600;font-size:15.5px;color:var(--ink);}
.faq-q svg{width:18px;height:18px;color:var(--purple);transition:transform .2s ease;flex:none;}
.faq-item.open .faq-q svg{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease;font-size:14px;color:var(--muted);}
.faq-item.open .faq-a{max-height:200px;padding-top:12px;}

/* footer */
footer.site{background:var(--purple-dk);color:#E7D2F0;padding:44px 0 26px;}
.footer-grid{display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px;margin-bottom:24px;}
.footer-logo-badge{display:inline-block;background:var(--ivory);border-radius:14px;padding:10px 18px;margin-bottom:14px;line-height:0;}
.footer-logo-badge img{height:64px;width:auto;display:block;}
footer.site h4{color:#fff;font-size:15px;margin-bottom:10px;font-family:'Poppins',sans-serif;font-weight:600;}
footer.site p, footer.site a{font-size:13px;color:#D8C3E8;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:18px;font-size:12px;color:#B79FCB;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;}

/* sticky mobile bar */
.mobile-bar{position:fixed;bottom:0;left:0;right:0;display:none;gap:10px;padding:10px 14px;background:#fff;border-top:1px solid var(--line);box-shadow:0 -6px 20px rgba(0,0,0,.08);z-index:60;}
.mobile-bar .btn{flex:1;}

@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .form-card{position:static;}
  .usp-grid{grid-template-columns:1fr 1fr;}
  .gallery-grid{grid-template-columns:1fr 1fr;}
  .gallery-grid figure:first-child{grid-column:span 2;}
  .builder{grid-template-columns:1fr;}
  .bundle-grid{grid-template-columns:1fr 1fr;}
  .treats-grid{grid-template-columns:1fr 1fr;}
  .trust-icons{grid-template-columns:repeat(3,1fr);}
  .header-actions{display:none;}
  .nav-desktop{display:none;}
  .burger{display:flex;}
  .mobile-bar{display:flex;}
  .brand img{height:128px;}
}
@media(max-width:620px){
  .usp-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr;}
  .gallery-grid figure:first-child{grid-column:span 1;}
  .bundle-grid{grid-template-columns:1fr;}
  .treats-grid{grid-template-columns:1fr;}
  .two-col{grid-template-columns:1fr;}
  .trust-icons{grid-template-columns:repeat(2,1fr);}
  .treats-only{flex-direction:column;align-items:flex-start;}
  .brand img{height:116px;}
  .btn{font-size:13.5px;padding:11px 20px;}
  .btn-sm{font-size:12px;padding:8px 14px;}
  .form-card{padding:20px;}
  .form-card h3{font-size:18px;}
  .chip{padding:7px 12px;font-size:12.5px;}
  .mobile-bar .btn{font-size:13px;padding:11px 12px;}
  .section{padding:52px 0;}
  .section-title{font-size:24px;}
  .treats-only{padding:24px 22px;}
  .treats-only .btn{width:100%;}
  .header-inner{padding:1px 10px;gap:10px;}
}
