:root{
  --cream:#f4e8d8;
  --cream-light:#fbf6ee;
  --cream-deep:#ead6bd;
  --paper:#f7efe3;
  --brown:#5a2b1f;
  --brown-dark:#321b16;
  --brown-soft:#7a4a38;
  --teal:#15979a;
  --teal-dark:#0b6f72;
  --coral:#e66f58;
  --orange:#e28b1f;
  --gold:#d9a12f;
  --ink:#3b241d;
  --muted:#765f53;
  --white:#fffdf9;
  --line:rgba(90,43,31,.15);
  --shadow:0 24px 65px rgba(66,40,27,.13);
  --radius-lg:34px;
  --radius-md:24px;
  --radius-sm:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--cream-light);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
}
body.no-scroll{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{color:inherit}
img{display:block;max-width:100%}
h1,h2,h3,p{margin-top:0}
h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--brown);
  font-weight:500;
}
h1{font-size:clamp(52px,7vw,92px);line-height:.96;letter-spacing:-.04em}
h2{font-size:clamp(38px,4.5vw,62px);line-height:1.02;letter-spacing:-.025em}
h3{font-size:27px;line-height:1.08}
p{line-height:1.7}
button{cursor:pointer}

.announcement{
  min-height:36px;
  display:flex;align-items:center;justify-content:center;gap:12px;
  padding:7px 18px;
  background:var(--brown-dark);
  color:#f9eadb;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
}
.announcement .dot{color:var(--orange)}

.site-header{
  height:96px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 5vw;
  background:rgba(251,246,238,.94);
  border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:30;
  backdrop-filter:blur(14px);
}
.brand-link{
  width:118px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  overflow:hidden;
}
.brand-link img{
  display:block;
  width:auto;
  height:58px;
  max-width:112px;
  object-fit:contain;
  transform:none;
  transform-origin:center;
}
.main-nav{display:flex;gap:34px;align-items:center;font-size:13px}
.main-nav a{
  position:relative;padding:39px 0 35px;
  transition:color .2s ease;
}
.main-nav a::after{
  content:"";position:absolute;left:0;right:0;bottom:29px;height:1px;
  background:var(--brown);transform:scaleX(0);transform-origin:left;transition:.2s;
}
.main-nav a:hover::after,.main-nav a.active::after{transform:scaleX(1)}
.header-actions{display:flex;align-items:center;justify-content:flex-end;gap:6px}
.round-action,.cart-action,.menu-action,.close-button,.search-close{
  border:0;background:transparent;
}
.round-action{
  width:42px;height:42px;border-radius:50%;display:grid;place-items:center;
  font-size:24px;
}
.round-action:hover{background:var(--cream)}
.cart-action{
  border:1px solid var(--line);
  border-radius:999px;
  padding:11px 13px 11px 16px;
  font-size:12px;font-weight:700;
  display:flex;align-items:center;gap:9px;
}
.cart-action b{
  min-width:21px;height:21px;border-radius:999px;display:grid;place-items:center;
  background:var(--coral);color:white;font-size:10px;
}
.menu-action{display:none;font-size:21px;padding:10px}
.mobile-nav{
  display:none;position:fixed;left:0;right:0;top:132px;z-index:29;
  background:var(--cream-light);border-bottom:1px solid var(--line);
  padding:23px 5vw;gap:18px;font-size:15px;
}
.mobile-nav.open{display:grid}

.eyebrow{
  font-size:10px;letter-spacing:.22em;font-weight:800;
  text-transform:uppercase;color:var(--brown-soft);
  margin-bottom:17px;
}
.eyebrow.light{color:#f6dfcc}
.lead{font-size:18px;max-width:650px;color:#6c5145}
.button{
  min-height:50px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;padding:0 22px;
  border:1px solid transparent;
  font-size:12px;font-weight:800;letter-spacing:.045em;
  transition:.2s ease;
}
.button.primary{background:var(--brown-dark);color:white}
.button.primary:hover{background:var(--brown)}
.button.secondary{border-color:var(--brown);background:transparent}
.button.secondary:hover{background:rgba(90,43,31,.06)}
.button.dark{background:var(--brown-dark);color:white}
.button.full{width:100%}
.under-link{
  font-size:12px;font-weight:800;
  border-bottom:1px solid currentColor;padding-bottom:4px;
  width:max-content;
}
.under-link.light{color:#fff2e7}

.hero{
  min-height:calc(100vh - 132px);
  position:relative;overflow:hidden;
  background:
    radial-gradient(circle at 3% 20%, rgba(230,111,88,.16), transparent 22%),
    radial-gradient(circle at 89% 80%, rgba(21,151,154,.13), transparent 20%),
    var(--cream);
  display:grid;grid-template-columns:.9fr 1.1fr;
  align-items:center;gap:5vw;
  padding:7vw 6vw 8vw;
}
.hero::after{
  content:"";
  position:absolute;right:-120px;top:-150px;
  width:440px;height:350px;
  background:var(--teal);
  opacity:.10;border-radius:52% 48% 38% 62%;
  transform:rotate(26deg);
}
.hero-copy{position:relative;z-index:3;max-width:760px}
.hero h1 span{display:block;color:var(--teal-dark)}
.hero-buttons{display:flex;gap:10px;flex-wrap:wrap;margin-top:30px}
.hero-notes{
  margin-top:60px;padding-top:26px;border-top:1px solid rgba(90,43,31,.18);
  display:flex;gap:32px;flex-wrap:wrap;
}
.hero-notes div{display:flex;gap:10px;align-items:flex-start}
.hero-notes strong{font-family:Georgia,serif;color:var(--coral);font-size:22px}
.hero-notes span{font-size:11px;line-height:1.45;text-transform:uppercase;letter-spacing:.08em}
.hero-visual{
  min-height:650px;position:relative;z-index:2;
}
.hero-photo{
  position:absolute;overflow:hidden;border-radius:28px;
  box-shadow:var(--shadow);background:#ead6c6;
}
.hero-photo img{width:100%;height:100%;object-fit:cover}
.hero-photo-main{
  width:76%;height:78%;right:5%;top:7%;
  transform:rotate(1.5deg);
}
.hero-photo-small{
  width:43%;height:38%;left:0;bottom:0;
  border:10px solid var(--cream);
  transform:rotate(-3deg);
}
.seal{
  position:absolute;right:-5px;bottom:3%;
  width:145px;height:145px;border-radius:50%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;background:var(--orange);color:var(--brown-dark);
  font-family:Georgia,serif;
  transform:rotate(6deg);box-shadow:0 15px 35px rgba(68,39,24,.16);
}
.seal span{font-size:12px}
.seal strong{font-size:16px;line-height:1.1;margin-top:5px}
.hero-pattern{position:absolute;z-index:1}
.pattern-one{
  width:140px;height:70px;left:3%;bottom:14%;
  background:var(--coral);border-radius:60% 40% 52% 48%;
  transform:rotate(22deg);opacity:.55;
}
.pattern-two{
  width:190px;height:75px;left:35%;top:8%;
  border:2px solid var(--gold);border-radius:50%;
  transform:rotate(-16deg);opacity:.6;
}
.pattern-three{
  width:30px;height:30px;left:46%;bottom:18%;
  background:var(--teal);border-radius:50%;opacity:.65;
}

.brand-strip{
  background:var(--teal-dark);color:#fff7ed;
  display:grid;grid-template-columns:repeat(3,1fr);
  padding:25px 6vw;gap:20px;
}
.brand-strip-item{
  display:flex;align-items:center;justify-content:center;gap:14px;
  border-right:1px solid rgba(255,255,255,.23);
}
.brand-strip-item:last-child{border-right:0}
.brand-strip-item strong,.brand-strip-item small{display:block}
.brand-strip-item strong{font-family:Georgia,serif;font-size:18px;font-weight:500}
.brand-strip-item small{font-size:10px;text-transform:uppercase;letter-spacing:.11em;margin-top:3px;color:#d3ece9}
.mini-cacao{color:var(--orange);font-size:22px}

.section{padding:110px 6vw}
.section-heading{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:30px;margin-bottom:44px;
}
.section-heading h2{max-width:770px}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product-card{
  background:var(--white);border-radius:var(--radius-md);
  overflow:hidden;border:1px solid rgba(90,43,31,.08);
  box-shadow:0 10px 35px rgba(79,47,29,.035);
  transition:transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{transform:translateY(-4px);box-shadow:0 20px 50px rgba(79,47,29,.10)}
.product-image{
  display:block;position:relative;height:410px;overflow:hidden;
  background:#eee0ce;
}
.product-image img{
  width:100%;height:100%;object-fit:cover;transition:transform .5s ease;
}
.product-card:hover .product-image img{transform:scale(1.025)}
.product-image.portrait img{object-position:center 46%}
.product-badge{
  position:absolute;left:16px;bottom:16px;
  background:rgba(255,253,249,.93);backdrop-filter:blur(7px);
  padding:9px 12px;border-radius:999px;font-size:10px;font-weight:800;
}
.product-body{
  padding:22px;min-height:245px;
  display:flex;flex-direction:column;justify-content:space-between;
}
.product-kind{
  margin:0 0 8px;font-size:9px;font-weight:800;
  letter-spacing:.17em;color:var(--teal-dark);text-transform:uppercase;
}
.product-copy h3{margin-bottom:9px}
.product-copy p:not(.product-kind){
  color:var(--muted);font-size:13px;margin-bottom:18px;
}
.product-buy{display:flex;justify-content:space-between;align-items:center;gap:14px}
.price{font-size:15px;font-weight:800}
.price.muted{font-size:12px;color:var(--muted)}
.small-button{
  border:1px solid var(--brown);background:transparent;border-radius:999px;
  padding:10px 14px;font-size:11px;font-weight:800;
}
.small-button:hover{background:var(--brown);color:white}

.identity-panel{
  margin:0 4vw 110px;
  min-height:610px;display:grid;grid-template-columns:1fr 1fr;
  border-radius:var(--radius-lg);overflow:hidden;background:var(--teal-dark);
  color:white;
}
.identity-art{
  min-height:580px;position:relative;overflow:hidden;background:var(--teal);
}
.identity-art::before{
  content:"";position:absolute;width:420px;height:420px;left:-130px;bottom:-150px;
  background:var(--coral);border-radius:51% 49% 38% 62%;transform:rotate(28deg);
}
.identity-art::after{
  content:"";position:absolute;width:260px;height:190px;right:-70px;top:-60px;
  background:var(--orange);border-radius:54% 46% 61% 39%;transform:rotate(-19deg);
}
.cacao-shape{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) rotate(14deg);
  width:240px;height:345px;background:var(--brown);
  border-radius:49% 51% 49% 51% / 58% 58% 42% 42%;
  box-shadow:0 20px 60px rgba(49,26,19,.18);
}
.cacao-shape::before{
  content:"";position:absolute;left:50%;top:-46px;width:18px;height:75px;
  background:var(--brown);border-radius:20px;transform:translateX(-50%) rotate(35deg);
}
.cacao-shape span{
  position:absolute;left:50%;width:6px;height:235px;border-radius:999px;
  background:var(--coral);transform-origin:center;
}
.cacao-shape span:nth-child(1){top:55px;transform:translateX(-50%) rotate(23deg)}
.cacao-shape span:nth-child(2){top:58px;transform:translateX(-50%) rotate(-5deg);background:var(--orange)}
.cacao-shape span:nth-child(3){top:55px;transform:translateX(-50%) rotate(-28deg)}
.branch{
  position:absolute;width:160px;height:56px;background:var(--gold);
  border-radius:70% 30% 70% 30%;z-index:2;
}
.branch-a{left:12%;top:18%;transform:rotate(-15deg)}
.branch-b{right:9%;bottom:17%;background:#f3d7b6;transform:rotate(18deg)}
.bird-mark{
  position:absolute;right:18%;top:15%;font-size:85px;color:var(--brown);z-index:3;transform:rotate(-15deg)
}
.identity-copy{
  padding:8vw 7vw;display:flex;flex-direction:column;justify-content:center;
}
.identity-copy h2{color:#fff6ea;max-width:650px}
.identity-copy p:not(.eyebrow){font-size:17px;max-width:580px;color:#dceeed;margin:22px 0 28px}

.feature-section{
  display:grid;grid-template-columns:.8fr 1.2fr;gap:7vw;align-items:center;
}
.feature-copy p:not(.eyebrow){color:var(--muted);font-size:17px;max-width:540px;margin:20px 0 28px}
.feature-gallery{
  min-height:620px;position:relative;
}
.feature-image{
  position:absolute;overflow:hidden;border-radius:28px;box-shadow:var(--shadow);
}
.feature-image img{width:100%;height:100%;object-fit:cover}
.feature-image.wide{width:78%;height:68%;right:0;top:0}
.feature-image.tall{width:43%;height:56%;left:0;bottom:0;border:10px solid var(--cream-light)}
.feature-image.tall img{object-position:center 48%}

.custom-section{
  margin:0 4vw 110px;padding:7vw;
  display:grid;grid-template-columns:.85fr 1.15fr;gap:7vw;
  background:
    radial-gradient(circle at 5% 5%, rgba(226,139,31,.28), transparent 25%),
    var(--coral);
  border-radius:var(--radius-lg);position:relative;overflow:hidden;
}
.custom-section::after{
  content:"";position:absolute;width:180px;height:180px;right:-80px;bottom:-90px;
  background:var(--teal);border-radius:50%;
}
.custom-copy{position:relative;z-index:2}
.custom-copy p:not(.eyebrow){font-size:17px;max-width:500px}
.clean-list{list-style:none;padding:0;margin:28px 0 0;display:grid;gap:10px}
.clean-list li{display:flex;align-items:center;gap:10px;font-size:13px;font-weight:700}
.clean-list li::before{content:"✦";color:var(--brown)}
.project-form{
  position:relative;z-index:2;background:#fff8f0;
  border-radius:26px;padding:28px;display:grid;gap:16px;
  box-shadow:0 20px 50px rgba(95,43,31,.12);
}
.form-title{display:flex;justify-content:space-between;align-items:flex-end;gap:15px;margin-bottom:2px}
.form-title span{font-family:Georgia,serif;font-size:23px}
.form-title small{font-size:9px;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);text-align:right}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:13px}
.project-form label{display:grid;gap:7px}
.project-form label > span{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.project-form input,.project-form select,.project-form textarea{
  width:100%;background:white;border:1px solid rgba(90,43,31,.18);
  padding:13px 14px;border-radius:12px;outline:none;color:var(--ink);
}
.project-form input:focus,.project-form select:focus,.project-form textarea:focus{border-color:var(--teal)}

.story-section{
  display:grid;grid-template-columns:360px 1fr;gap:7vw;align-items:center;
}
.story-logo{
  min-height:360px;background:var(--cream);border-radius:50% 46% 52% 48%;
  display:grid;place-items:center;position:relative;overflow:hidden;
}
.story-logo::before{
  content:"";position:absolute;width:120px;height:70px;left:-20px;top:45px;
  background:var(--teal);border-radius:60% 40% 56% 44%;transform:rotate(23deg)
}
.story-logo::after{
  content:"";position:absolute;width:85px;height:85px;right:15px;bottom:22px;
  background:var(--coral);border-radius:50%;
}
.story-logo img{width:245px;position:relative;z-index:2}
.story-copy p:not(.eyebrow){max-width:730px;color:var(--muted);font-size:17px}

.cta-band{
  margin:0 6vw 110px;padding:50px;
  background:var(--brown);color:white;border-radius:28px;
  display:flex;align-items:center;justify-content:space-between;gap:34px;
}
.cta-band h2{color:#fff5e9;font-size:clamp(30px,3.4vw,46px);max-width:700px}
.newsletter{display:flex;min-width:min(460px,100%)}
.newsletter input{
  min-height:50px;flex:1;border:0;border-radius:999px 0 0 999px;
  padding:0 18px;outline:none;
}
.newsletter button{
  border:0;background:var(--orange);color:var(--brown-dark);font-weight:800;
  border-radius:0 999px 999px 0;padding:0 20px;
}

.site-footer{
  background:var(--brown-dark);color:#f7eadf;padding:70px 6vw;
  display:grid;grid-template-columns:1.7fr repeat(3,1fr);gap:45px;
}
.footer-brand img{width:145px;filter:brightness(0) invert(1);opacity:.92}
.footer-brand p{color:#d4bcae;max-width:330px;margin-top:18px}
.footer-column{display:flex;flex-direction:column;gap:12px;font-size:12px}
.footer-column strong{font-family:Georgia,serif;font-size:17px;margin-bottom:7px}

.search-overlay{
  position:fixed;inset:0;z-index:80;background:rgba(50,27,22,.96);
  color:white;display:flex;justify-content:center;align-items:flex-start;
  padding:15vh 5vw;opacity:0;pointer-events:none;transition:.22s;
}
.search-overlay.open{opacity:1;pointer-events:auto}
.search-close{position:absolute;right:5vw;top:5vh;color:white;font-size:34px}
.search-box{width:min(780px,100%)}
.search-box .eyebrow{color:#e8cbb7}
.search-box input{
  width:100%;background:transparent;color:white;border:0;border-bottom:1px solid rgba(255,255,255,.35);
  font-family:Georgia,serif;font-size:40px;padding:15px 0;outline:none;
}
.search-box input::placeholder{color:#bda99e}
.search-results{margin-top:28px;display:grid;gap:8px}
.search-result{
  display:flex;justify-content:space-between;gap:20px;padding:15px 0;
  border-bottom:1px solid rgba(255,255,255,.16);
}
.search-result strong{font-family:Georgia,serif;font-size:20px}
.search-result span{font-size:11px;color:#dfc9bb}

.drawer-backdrop{
  position:fixed;inset:0;z-index:60;background:rgba(50,27,22,.35);
  opacity:0;pointer-events:none;transition:.25s;
}
.drawer-backdrop.open{opacity:1;pointer-events:auto}
.cart-drawer{
  position:fixed;right:0;top:0;bottom:0;z-index:61;
  width:min(470px,94vw);background:var(--cream-light);
  transform:translateX(100%);transition:.28s ease;
  display:flex;flex-direction:column;
}
.cart-drawer.open{transform:translateX(0)}
.cart-header{
  padding:26px;display:flex;justify-content:space-between;align-items:flex-start;
  border-bottom:1px solid var(--line);
}
.cart-header h2{font-size:34px;margin:0}
.cart-header .eyebrow{margin-bottom:6px}
.close-button{font-size:30px;line-height:1}
.cart-content{padding:20px 25px;flex:1;overflow:auto}
.cart-empty{text-align:center;color:var(--muted);padding:70px 0}
.cart-item{
  display:grid;grid-template-columns:78px 1fr auto;gap:14px;
  align-items:center;padding:14px 0;border-bottom:1px solid var(--line);
}
.cart-thumb{width:78px;height:78px;border-radius:14px;overflow:hidden;background:#e7d7c5}
.cart-thumb img{width:100%;height:100%;object-fit:cover}
.cart-item h4{font-family:Georgia,serif;margin:0 0 6px;font-size:17px}
.cart-item small{color:var(--muted)}
.cart-remove{border:0;background:transparent;font-size:20px}
.cart-summary{padding:23px 25px;border-top:1px solid var(--line);display:grid;gap:14px}
.cart-summary > div{display:flex;justify-content:space-between}
.cart-summary small{color:var(--muted);font-size:10px;text-align:center}
.toast{
  position:fixed;left:50%;bottom:30px;z-index:100;
  transform:translate(-50%,20px);opacity:0;pointer-events:none;
  background:var(--brown-dark);color:white;border-radius:999px;
  padding:12px 18px;font-size:12px;transition:.22s;
}
.toast.show{transform:translate(-50%,0);opacity:1}

.shop-hero{
  padding:72px 6vw;background:var(--cream);
  display:flex;justify-content:space-between;align-items:center;overflow:hidden;
}
.shop-copy p:not(.eyebrow){color:var(--muted)}
.shop-copy h1{font-size:clamp(54px,7vw,82px)}
.shop-art{width:330px;height:180px;position:relative}
.shop-bean{
  position:absolute;right:60px;top:18px;width:115px;height:150px;
  border-radius:50% 50% 45% 55%;background:var(--brown);transform:rotate(25deg)
}
.shop-bean::before,.shop-bean::after{
  content:"";position:absolute;top:28px;width:4px;height:95px;border-radius:999px;background:var(--coral)
}
.shop-bean::before{left:43px;transform:rotate(15deg)}
.shop-bean::after{right:38px;transform:rotate(-18deg)}
.shop-leaf{
  position:absolute;width:150px;height:65px;left:25px;top:25px;background:var(--teal);
  border-radius:70% 30% 70% 30%;transform:rotate(-20deg)
}
.shop-dots{position:absolute;left:70px;bottom:15px;color:var(--orange);letter-spacing:10px;font-size:22px}

.shop-layout{padding:60px 6vw 110px;display:grid;grid-template-columns:240px 1fr;gap:44px}
.filters{position:sticky;top:145px;align-self:start}
.filter-head{display:flex;justify-content:space-between;padding-bottom:17px;border-bottom:1px solid var(--line)}
.filter-head button{border:0;background:transparent;text-decoration:underline;font-size:11px}
.filter-group{padding:22px 0;border-bottom:1px solid var(--line);display:grid;gap:12px}
.filter-group > span{font-weight:800;font-size:12px;margin-bottom:4px}
.filter-group label{font-size:12px;color:var(--muted)}
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:23px;font-size:12px}
.toolbar-actions{display:flex;gap:8px}
.shop-toolbar select,.filter-mobile{
  border:1px solid var(--line);border-radius:999px;background:transparent;padding:10px 13px;font-size:11px
}
.filter-mobile{display:none}
.shop-product-grid{grid-template-columns:repeat(3,1fr)}
.product-card.hidden{display:none}
.empty-state{text-align:center;padding:100px 20px;color:var(--muted)}
.empty-state span{font-size:38px;color:var(--orange)}
.empty-state h3{margin:13px 0 5px}

.product-page{padding:36px 6vw 100px}
.breadcrumb{display:flex;gap:9px;align-items:center;font-size:10px;color:var(--muted);margin-bottom:35px}
.product-detail{display:grid;grid-template-columns:1.05fr .95fr;gap:6vw;align-items:start}
.main-product-photo{
  height:680px;border-radius:28px;overflow:hidden;background:var(--cream);
  box-shadow:0 15px 45px rgba(74,43,28,.07);
}
.main-product-photo img{width:100%;height:100%;object-fit:cover}
.mini-features{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.mini-features div{
  background:var(--cream);padding:17px;border-radius:15px;display:grid;gap:5px
}
.mini-features strong{font-family:Georgia,serif;font-size:16px;color:var(--brown)}
.mini-features span{font-size:10px;color:var(--muted)}
.product-panel{position:sticky;top:150px}
.product-panel h1{font-size:clamp(46px,5vw,68px);margin-bottom:18px}
.product-description{font-size:17px;color:var(--muted);max-width:600px}
.detail-meta{display:flex;gap:8px;flex-wrap:wrap;margin:22px 0}
.detail-meta span{
  border:1px solid var(--line);border-radius:999px;padding:8px 11px;
  font-size:10px;font-weight:800
}
.detail-price{font-size:20px;font-weight:800;margin:24px 0}
.quantity-label{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;margin-bottom:8px}
.buy-controls{display:grid;grid-template-columns:125px 1fr;gap:10px;margin-bottom:28px}
.quantity-control{
  display:grid;grid-template-columns:34px 1fr 34px;
  border:1px solid var(--line);border-radius:999px;background:white;overflow:hidden
}
.quantity-control button{border:0;background:transparent}
.quantity-control input{width:100%;border:0;text-align:center;outline:none}
.detail-note{
  padding:20px;background:var(--cream);border-radius:18px;margin-bottom:24px
}
.detail-note strong{font-family:Georgia,serif;color:var(--brown)}
.detail-note p{font-size:12px;color:var(--muted);margin:7px 0 0}
details{padding:17px 0;border-bottom:1px solid var(--line)}
summary{font-size:12px;font-weight:800;cursor:pointer}
details p{font-size:12px;color:var(--muted);margin:12px 0 0}
.related{padding-top:90px;text-align:center}
.related-links{display:flex;justify-content:center;flex-wrap:wrap;gap:9px}
.related-links a{border:1px solid var(--line);border-radius:999px;padding:10px 13px;font-size:11px}

@media (max-width:1100px){
  .product-grid,.shop-product-grid{grid-template-columns:repeat(2,1fr)}
  .main-nav{gap:20px}
  .feature-section{grid-template-columns:1fr}
  .feature-gallery{min-height:580px}
  .custom-section{grid-template-columns:1fr}
  .identity-panel{grid-template-columns:1fr}
  .identity-copy{padding:70px 7vw}
  .story-section{grid-template-columns:300px 1fr}
  .site-footer{grid-template-columns:1.5fr 1fr 1fr}
  .site-footer .footer-column:last-child{grid-column:2}
}
@media (max-width:860px){
  .site-header{grid-template-columns:1fr auto;height:82px}
  .main-nav{display:none}
  .menu-action{display:block}
  .mobile-nav{top:118px}
  .hero{grid-template-columns:1fr;min-height:auto;padding-top:80px}
  .hero-visual{min-height:640px;margin-top:15px}
  .brand-strip{grid-template-columns:1fr;gap:0}
  .brand-strip-item{border-right:0;border-bottom:1px solid rgba(255,255,255,.2);padding:12px 0}
  .brand-strip-item:last-child{border-bottom:0}
  .section-heading{align-items:flex-start;flex-direction:column}
  .story-section{grid-template-columns:1fr}
  .story-logo{max-width:420px}
  .cta-band{flex-direction:column;align-items:flex-start}
  .newsletter{width:100%}
  .shop-layout{grid-template-columns:1fr}
  .filters{display:none;position:static}
  .filters.mobile-open{display:block}
  .filter-mobile{display:inline-block}
  .product-detail{grid-template-columns:1fr}
  .product-panel{position:static}
}
@media (max-width:600px){
  .desktop-only{display:none}
  .announcement{font-size:8px}
  .site-header{padding:0 18px}
  .brand-link{
    width:96px;
    height:62px;
  }
  .brand-link img{
    width:auto;
    height:50px;
    max-width:92px;
  }
  .round-action{display:none}
  h1{font-size:48px}
  h2{font-size:36px}
  .hero{padding:63px 20px 70px}
  .hero-notes{gap:17px}
  .hero-visual{min-height:500px}
  .hero-photo-main{width:88%;height:73%;right:0}
  .hero-photo-small{width:50%;height:34%}
  .seal{width:115px;height:115px;right:4px;font-size:12px}
  .seal strong{font-size:13px}
  .section{padding:80px 20px}
  .product-grid,.shop-product-grid{grid-template-columns:1fr}
  .product-image{height:390px}
  .identity-panel,.custom-section{margin-left:14px;margin-right:14px;border-radius:24px}
  .identity-art{min-height:470px}
  .cacao-shape{transform:translate(-50%,-50%) rotate(14deg) scale(.82)}
  .identity-copy{padding:55px 24px}
  .feature-gallery{min-height:470px}
  .feature-image.wide{width:87%;height:64%}
  .feature-image.tall{width:47%;height:52%;border-width:7px}
  .custom-section{padding:50px 22px}
  .form-grid{grid-template-columns:1fr}
  .form-title{align-items:flex-start;flex-direction:column}
  .form-title small{text-align:left}
  .story-logo{min-height:300px}
  .cta-band{margin:0 14px 80px;padding:36px 22px}
  .newsletter{flex-direction:column;gap:8px}
  .newsletter input,.newsletter button{min-height:48px;border-radius:999px}
  .site-footer{grid-template-columns:1fr;padding:55px 22px}
  .site-footer .footer-column:last-child{grid-column:auto}
  .shop-hero{padding:55px 20px}
  .shop-art{display:none}
  .shop-layout{padding:35px 20px 80px}
  .shop-toolbar{align-items:flex-start;gap:14px}
  .toolbar-actions{flex-direction:column}
  .product-page{padding:24px 20px 80px}
  .main-product-photo{height:470px}
  .mini-features{grid-template-columns:1fr}
  .buy-controls{grid-template-columns:1fr}
  .search-box input{font-size:28px}
}

.product-card.indisponivel{opacity:.72}
.product-card.indisponivel .product-image img{filter:grayscale(.25)}
.sold-badge{
  position:absolute;right:16px;top:16px;background:var(--brown-dark);color:white;
  padding:8px 11px;border-radius:999px;font-size:10px;font-weight:800
}
.small-button:disabled,.button:disabled{opacity:.45;cursor:not-allowed}

[data-button][style*="display: none"]{display:none!important}


.offer-section{
  padding-top: 24px;
}
.offer-layout{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.offer-copy .lead{
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-top: 12px;
}
.offer-visual{
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(37, 28, 22, 0.12);
  background: #efe5d7;
}
.offer-visual img{
  display:block;
  width:100%;
  height:auto;
}
.signature-price-wrap{
  margin: 26px 0 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(86,58,45,.14);
  border-radius: 22px;
}
.signature-price{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  line-height: .95;
  color: var(--brown-dark);
}
.signature-meta{
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.signature-note{
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-soft);
}
.signature-flavors{
  display:grid;
  gap: 14px;
  margin: 0 0 26px;
}
.flavor-item{
  display:grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items:flex-start;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(86,58,45,.18);
}
.flavor-number{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(230,111,88,.14);
  color: var(--coral);
  font-weight: 700;
}
.flavor-item h3{
  margin: 2px 0 4px;
  font-size: 28px;
}
.flavor-item p{
  margin:0;
  line-height:1.65;
  color: var(--text-soft);
}
.corporate-points{
  display:grid;
  gap: 14px;
  margin: 24px 0 28px;
}
.corporate-point{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items:flex-start;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(86,58,45,.18);
}
.corporate-point span{
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}
.corporate-point p{
  margin:0;
  line-height:1.7;
  color: var(--text-soft);
}
@media (max-width: 980px){
  .offer-layout{
    grid-template-columns: 1fr;
  }
  .offer-visual{
    order:-1;
  }
}
@media (max-width: 640px){
  .signature-price{
    font-size: 44px;
  }
  .flavor-item h3{
    font-size: 24px;
  }
}


.section-heading-centered{
  justify-content:center;
  text-align:center;
}
.section-supporting-text{
  max-width: 680px;
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.75;
}

.offer-map-section{
  padding-top: 20px;
}
.offer-map-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer-map-card{
  padding: 28px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(244,232,216,.74));
  border: 1px solid rgba(86,58,45,.12);
  box-shadow: 0 16px 38px rgba(37,28,22,.06);
}
.offer-map-number{
  display:inline-grid;
  place-items:center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(230,111,88,.14);
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
}
.offer-map-eyebrow{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
}
.offer-map-card h3{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.04;
}
.offer-map-card p:last-of-type{
  margin-bottom: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.products-section .product-grid{
  margin-top: 8px;
}

.signature-section{
  padding-top: 8px;
}
.corporate-section{
  padding-top: 8px;
}
.custom-section{
  margin-top: 16px;
}

@media (max-width: 980px){
  .offer-map-grid{
    grid-template-columns: 1fr;
  }
}














/* ===== PÁGINAS INTERNAS V4.6 ===== */
.inner-page-hero{
  min-height: 610px;
  padding: 72px 6vw;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 6vw;
  align-items:center;
  background:
    radial-gradient(circle at 5% 20%, rgba(230,111,88,.12), transparent 24%),
    var(--cream);
}
.inner-page-hero h1{
  font-size: clamp(52px,7vw,88px);
}
.inner-page-hero .lead{
  max-width: 670px;
}
.inner-page-hero-image{
  border-radius: 32px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#eadac7;
  max-height: 640px;
}
.inner-page-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bombons-art-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.bombom-art-card{
  background:var(--white);
  border:1px solid rgba(90,43,31,.10);
  border-radius:24px;
  padding:28px;
}
.bombom-index{
  width:40px;height:40px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(230,111,88,.13);
  color:var(--coral);
  font-weight:800;
  margin-bottom:22px;
}
.bombom-art-card h3{font-size:36px;margin-bottom:12px}
.bombom-art-card p{color:var(--muted);margin-bottom:0}

.bombons-selection-cta{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:5vw;
  align-items:center;
}
.selection-summary p:not(.eyebrow){color:var(--muted)}
.selection-price-line{
  display:flex;align-items:end;gap:16px;flex-wrap:wrap;
  margin:22px 0 26px;
}
.selection-price-line strong{
  font-family:Georgia,serif;
  font-size:48px;
  color:var(--brown);
}
.selection-price-line span{font-size:12px;color:var(--muted);padding-bottom:8px}
.selection-image{border-radius:28px;overflow:hidden;box-shadow:var(--shadow)}
.selection-image img{width:100%;display:block}

.gift-kit-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.gift-kit-placeholder{
  background:var(--white);
  border:1px solid rgba(90,43,31,.10);
  border-radius:25px;
  overflow:hidden;
}
.gift-kit-image{height:390px;overflow:hidden;background:var(--cream)}
.gift-kit-image img{width:100%;height:100%;object-fit:cover}
.gift-kit-placeholder > div:last-child{padding:24px}
.gift-kit-placeholder p:last-child{color:var(--muted)}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:42px;
}
.process-grid article{
  background:var(--white);
  border:1px solid rgba(90,43,31,.10);
  border-radius:20px;
  padding:22px;
}
.process-grid article > span{
  display:inline-grid;place-items:center;
  width:38px;height:38px;border-radius:999px;
  background:rgba(21,151,154,.10);
  color:var(--teal-dark);
  font-weight:800;
  margin-bottom:18px;
}
.process-grid h3{font-size:25px;margin-bottom:9px}
.process-grid p{font-size:13px;color:var(--muted);margin-bottom:0}
.standalone-points{max-width:900px}
.standalone-custom{margin-top:0}

.about-page-logo{
  min-height:430px;
  display:grid;place-items:center;
  background:var(--cream-light);
  border-radius:48% 52% 44% 56%;
  position:relative;
  overflow:hidden;
}
.about-page-logo::before{
  content:"";position:absolute;width:170px;height:90px;left:-20px;top:55px;
  background:var(--teal);border-radius:70% 30% 70% 30%;transform:rotate(22deg)
}
.about-page-logo::after{
  content:"";position:absolute;width:110px;height:110px;right:15px;bottom:25px;
  background:var(--coral);border-radius:50%;
}
.about-page-logo img{width:330px;position:relative;z-index:2}
.about-story-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:16px;
  align-items:stretch;
}
.about-story-grid > div:first-child{padding-right:25px}
.about-story-grid > div:first-child p:last-child{color:var(--muted)}
.about-value-card{
  background:var(--white);
  border:1px solid rgba(90,43,31,.10);
  border-radius:22px;
  padding:24px;
}
.about-value-card span{color:var(--coral);font-weight:800}
.about-value-card h3{font-size:28px;margin:20px 0 10px}
.about-value-card p{font-size:13px;color:var(--muted);margin:0}
.about-identity-panel{margin-top:0}

@media(max-width:1000px){
  .inner-page-hero,
  .bombons-selection-cta{
    grid-template-columns:1fr;
  }
  .inner-page-hero-image{max-height:none}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .about-story-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
  .inner-page-hero{padding:55px 20px}
  .bombons-art-grid,
  .gift-kit-grid,
  .process-grid,
  .about-story-grid{
    grid-template-columns:1fr;
  }
}


/* V4.7 — páginas de Bombons e Presentes como lojas */
body[data-shop-page] .shop-product-grid .product-card{
  min-height:100%;
}
body[data-shop-page] .product-card .product-body{
  height:100%;
}
body[data-shop-page] .product-card .product-buy{
  margin-top:auto;
}


/* =======================================================
   V4.9 — HOME COMPACTA
   ======================================================= */

.home-v49 .hero{
  min-height: 610px;
  padding: 62px 6vw 68px;
}
.home-v49 .hero-visual{
  min-height: 500px;
}
.home-v49 .hero-photo-main{
  width:74%;
  height:78%;
}
.home-v49 .hero-photo-small{
  width:41%;
  height:37%;
}
.home-v49 .hero-notes{
  margin-top:34px;
  padding-top:20px;
}

.home-featured-section{
  padding-top:78px;
  padding-bottom:82px;
}
.home-featured-heading{
  margin-bottom:30px;
}
.home-section-intro{
  margin:12px 0 0;
  color:var(--muted);
  max-width:650px;
  line-height:1.7;
}
.home-featured-grid{
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.home-featured-grid .product-image{
  height:330px;
}
.home-featured-grid .product-body{
  padding:18px;
}
.home-featured-grid .product-copy h3{
  font-size:25px;
}

.home-discover-section{
  padding-top:74px;
  padding-bottom:84px;
  background:#efe5d7;
}
.compact-heading{
  margin-bottom:30px;
}
.home-discover-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.home-discover-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:var(--cream-light);
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(90,43,31,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.home-discover-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(67,39,27,.10);
}
.home-discover-image{
  height:310px;
  overflow:hidden;
  background:#e6d5c3;
}
.home-discover-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.home-discover-card:hover .home-discover-image img{
  transform:scale(1.025);
}
.home-discover-copy{
  padding:24px 24px 27px;
}
.home-discover-copy h3{
  font-size:36px;
  margin:0 0 10px;
}
.home-discover-copy p{
  color:var(--muted);
  min-height:70px;
  line-height:1.65;
  margin-bottom:18px;
}
.home-discover-copy .under-link{
  display:inline-block;
}

.home-benefits-section{
  background:var(--teal-dark);
  color:#fff7ed;
  padding:28px 6vw 30px;
}
.home-benefits-title{
  text-align:center;
  margin-bottom:18px;
}
.home-benefits-title .eyebrow{
  margin:0;
}
.home-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:1300px;
  margin:0 auto;
}
.home-benefits-grid article{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  padding:16px 22px;
  border-right:1px solid rgba(255,255,255,.20);
}
.home-benefits-grid article:last-child{
  border-right:0;
}
.home-benefits-grid article > span{
  font-family:Georgia,serif;
  color:var(--orange);
  font-size:24px;
}
.home-benefits-grid strong,
.home-benefits-grid small{
  display:block;
}
.home-benefits-grid strong{
  font-family:Georgia,serif;
  font-size:18px;
  font-weight:500;
  margin-bottom:4px;
}
.home-benefits-grid small{
  color:#cde3df;
  font-size:10px;
  line-height:1.45;
}

.home-newsletter{
  margin-top:70px;
  margin-bottom:70px;
  padding:38px 42px;
}

.home-v49 .site-footer{
  padding-top:54px;
  padding-bottom:54px;
}

@media(max-width:1150px){
  .home-featured-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .home-discover-grid{
    grid-template-columns:1fr 1fr;
  }
  .home-benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .home-benefits-grid article:nth-child(2){
    border-right:0;
  }
}

@media(max-width:760px){
  .home-v49 .hero{
    min-height:auto;
    padding-top:48px;
    padding-bottom:48px;
  }
  .home-featured-section,
  .home-discover-section{
    padding:58px 20px;
  }
  .home-featured-grid,
  .home-discover-grid,
  .home-benefits-grid{
    grid-template-columns:1fr;
  }
  .home-featured-grid .product-image{
    height:360px;
  }
  .home-discover-image{
    height:330px;
  }
  .home-benefits-grid article{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.18);
  }
  .home-benefits-grid article:last-child{
    border-bottom:0;
  }
  .home-newsletter{
    margin:46px 20px;
    padding:32px 24px;
  }
}


/* =========================================================
   V5.0 — PERSONALIZADOS
   ========================================================= */
.personalized-v50{
  background:var(--cream-light);
}
.personalized-hero-v50{
  min-height:620px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:stretch;
  background:var(--cream);
}
.personalized-hero-copy{
  padding:78px 6vw 74px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.personalized-hero-copy h1{
  font-size:clamp(54px,6.8vw,92px);
  line-height:.9;
  margin-bottom:24px;
}
.personalized-hero-copy .lead{
  max-width:650px;
  margin-bottom:30px;
}
.personalized-hero-media{
  min-height:620px;
  position:relative;
  overflow:hidden;
  background:#d8c2a7;
}
.personalized-hero-media > img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.personalized-hero-stamp{
  position:absolute;
  right:32px;
  bottom:30px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:var(--teal-dark);
  color:#fff8ef;
  display:grid;
  place-content:center;
  text-align:center;
  transform:rotate(-7deg);
  box-shadow:0 20px 48px rgba(40,24,18,.18);
}
.personalized-hero-stamp span{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.personalized-hero-stamp strong{
  font-family:Georgia,serif;
  font-size:29px;
  line-height:.92;
  font-weight:500;
  margin-top:5px;
}

.personalized-options-section{
  padding-top:86px;
  padding-bottom:94px;
}
.personalized-centered-heading{
  justify-content:center;
  text-align:center;
}
.personalized-centered-heading > div{
  max-width:850px;
}
.personalized-section-text{
  max-width:720px;
  margin:14px auto 0;
  color:var(--muted);
  line-height:1.75;
}
.personalized-options-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  margin-top:34px;
}
.personalized-option-card{
  background:#fff;
  border:1px solid rgba(90,43,31,.09);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(50,27,22,.06);
}
.personalized-option-image{
  height:390px;
  position:relative;
  overflow:hidden;
  background:#e9d9c7;
}
.personalized-option-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.personalized-option-card:hover .personalized-option-image img{
  transform:scale(1.025);
}
.personalized-option-index{
  position:absolute;
  left:20px;
  bottom:18px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(251,246,238,.92);
  color:var(--brown-dark);
  display:grid;
  place-items:center;
  font-family:Georgia,serif;
  font-size:18px;
}
.personalized-option-body{
  padding:27px 28px 30px;
}
.personalized-option-body h3{
  font-size:39px;
  margin:4px 0 12px;
}
.personalized-option-description{
  color:var(--muted);
  line-height:1.7;
}
.personalized-option-body ul{
  list-style:none;
  padding:0;
  margin:22px 0 25px;
  border-top:1px solid rgba(90,43,31,.09);
}
.personalized-option-body li{
  padding:11px 0;
  border-bottom:1px solid rgba(90,43,31,.09);
  font-size:13px;
  color:var(--text-soft);
}
.personalized-option-body li::before{
  content:"✦";
  color:var(--orange);
  margin-right:9px;
}
.personalized-interest-button{
  width:100%;
}

.personalized-benefits-v50{
  background:var(--teal-dark);
  color:#fff7ee;
  padding:46px 6vw 48px;
}
.personalized-benefits-header{
  text-align:center;
  margin-bottom:27px;
}
.personalized-benefits-header .eyebrow{margin:0}
.personalized-benefits-grid{
  max-width:1320px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.personalized-benefits-grid article{
  padding:12px 24px 10px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  border-right:1px solid rgba(255,255,255,.17);
}
.personalized-benefits-grid article:last-child{border-right:0}
.personalized-benefits-grid article > span{
  color:var(--orange);
  font-family:Georgia,serif;
  font-size:24px;
}
.personalized-benefits-grid h3{
  color:#fff7ee;
  font-size:21px;
  margin:0 0 6px;
}
.personalized-benefits-grid p{
  color:#cfe6e2;
  font-size:11px;
  line-height:1.55;
  margin:0;
}

.personalized-process-v50{
  padding-top:86px;
  padding-bottom:88px;
}
.process-grid-v50 article{
  background:#fff;
  min-height:210px;
}
.process-grid-v50 article > span{
  background:rgba(226,139,31,.12);
  color:var(--orange);
}

.personalized-form-section-v50{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:48px;
  padding:76px 6vw 84px;
  background:#eadcc9;
  align-items:start;
}
.personalized-form-copy{
  position:sticky;
  top:118px;
}
.personalized-form-copy h2{
  font-size:54px;
  margin-bottom:18px;
}
.personalized-form-copy > p:not(.eyebrow){
  color:var(--muted);
  line-height:1.7;
}
.personalized-form-note{
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid rgba(90,43,31,.17);
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  color:var(--text-soft);
}
.personalized-form-note span{color:var(--coral)}
.personalized-form-note p{margin:0;font-size:12px;line-height:1.6}
.personalized-project-form{
  background:#fffdf9;
  box-shadow:0 22px 50px rgba(50,27,22,.08);
}
.wide-form-field{
  grid-column:1/-1;
}

@media(max-width:1000px){
  .personalized-hero-v50,
  .personalized-form-section-v50{
    grid-template-columns:1fr;
  }
  .personalized-hero-media{min-height:500px}
  .personalized-options-grid{
    grid-template-columns:1fr;
  }
  .personalized-benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .personalized-benefits-grid article:nth-child(2){
    border-right:0;
  }
  .personalized-form-copy{
    position:static;
  }
}
@media(max-width:680px){
  .personalized-hero-copy{
    padding:55px 20px 48px;
  }
  .personalized-hero-media{
    min-height:410px;
  }
  .personalized-hero-stamp{
    width:135px;height:135px;right:18px;bottom:18px;
  }
  .personalized-hero-stamp strong{font-size:23px}
  .personalized-options-section,
  .personalized-process-v50{
    padding:58px 20px;
  }
  .personalized-option-image{height:320px}
  .personalized-benefits-grid{
    grid-template-columns:1fr;
  }
  .personalized-benefits-grid article{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.15);
    padding:18px 0;
  }
  .personalized-benefits-grid article:last-child{border-bottom:0}
  .personalized-form-section-v50{
    padding:56px 20px 64px;
  }
  .personalized-form-copy h2{font-size:42px}
  .wide-form-field{grid-column:auto}
}


/* ETAPA 7 — estoque e disponibilidade */
.stock-badge.low{background:#e28b1f;color:#fff}
.stock-badge.order{background:#0b6f72;color:#fff}
.stock-badge.out,.stock-badge.inactive{background:#5a2b1f;color:#fff}
.product-stock-note{
  display:block;margin-top:10px;font-size:10px;font-weight:800;letter-spacing:.03em
}
.product-stock-note.low{color:#b66a0a}
.product-stock-note.order{color:var(--teal-dark)}
.detail-stock-status{
  display:inline-flex;align-items:center;width:max-content;
  margin:10px 0 22px;padding:7px 11px;border-radius:999px;
  font-size:10px;font-weight:800;background:#e4efe9;color:var(--teal-dark)
}
.detail-stock-status[data-state="low"]{background:#fff0d4;color:#9a5b08}
.detail-stock-status[data-state="order"]{background:#dceceb;color:var(--teal-dark)}
.detail-stock-status[data-state="out"],
.detail-stock-status[data-state="inactive"]{background:#eee2de;color:#7d3629}
.cart-stock-note{
  display:block;margin-top:4px;font-size:9px;font-style:normal;
  color:var(--teal-dark);font-weight:700
}


/* =========================================================
   ETAPA 8 — CARRINHO DEFINITIVO
   ========================================================= */
.cart-header{align-items:flex-start}
.cart-header small{
  display:block;margin-top:4px;font-size:10px;color:var(--muted)
}
.cart-content{overflow:auto}
.cart-item{
  grid-template-columns:78px minmax(0,1fr) auto;
  align-items:start;gap:13px;padding:16px 0
}
.cart-item-problem{
  background:rgba(230,111,88,.06);
  border-radius:14px;padding:14px 10px;border-bottom:0;margin-bottom:8px
}
.cart-thumb{display:block;flex:none}
.cart-thumb-placeholder{
  display:grid;place-items:center;font-family:Georgia,serif;
  font-size:28px;color:var(--muted)
}
.cart-item-main{min-width:0}
.cart-item-name{
  display:block;color:var(--brown-dark);text-decoration:none;
  font-family:Georgia,serif;font-size:17px;line-height:1.1;margin-bottom:6px
}
.cart-item-name:hover{text-decoration:underline}
.cart-item-meta{
  display:flex;gap:7px;align-items:center;flex-wrap:wrap;
  color:var(--muted);font-size:10px
}
.cart-item-controls{
  display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:12px
}
.cart-qty-control{
  display:inline-grid;grid-template-columns:32px 34px 32px;
  min-height:32px;border:1px solid var(--line);border-radius:999px;
  overflow:hidden;background:#fff
}
.cart-qty-control button{
  border:0;background:transparent;color:var(--brown-dark);cursor:pointer;font-size:16px
}
.cart-qty-control button:disabled{color:#c8bbb1;cursor:not-allowed}
.cart-qty-control span{
  display:grid;place-items:center;font-size:11px;font-weight:800
}
.cart-line-total{font-size:12px;white-space:nowrap}
.cart-line-warning{
  margin-top:9px;padding:7px 9px;border-radius:9px;
  background:#fff0e9;color:#9c4637;font-size:9px;line-height:1.45
}
.cart-line-limit{
  display:block;margin-top:7px;color:var(--muted);font-size:9px
}
.cart-stock-note.low{color:#a96306}
.cart-remove{
  width:28px;height:28px;display:grid;place-items:center;
  border-radius:50%;cursor:pointer
}
.cart-remove:hover{background:#f1e8df}
.cart-summary-v8{gap:11px}
.cart-summary-row{
  display:flex;align-items:center;justify-content:space-between
}
.cart-summary-row strong{
  font-family:Georgia,serif;font-size:22px
}
.cart-summary-note{
  margin:0;color:var(--muted);font-size:9px;line-height:1.5
}
.cart-checkout-warning{
  padding:9px 11px;border-radius:10px;background:#fff0e5;
  color:#8f4936;font-size:9px;line-height:1.5
}
.cart-summary [data-checkout]:disabled{opacity:.45;cursor:not-allowed}
.cart-continue-button,
.cart-continue-empty{
  border:0;background:transparent;color:var(--brown);
  font-weight:800;font-size:10px;text-decoration:underline;cursor:pointer
}
.cart-continue-button{justify-self:center}
.cart-continue-empty{margin-top:12px}
@media(max-width:520px){
  .cart-item{grid-template-columns:66px minmax(0,1fr) auto}
  .cart-thumb{width:66px;height:66px}
  .cart-item-controls{align-items:flex-start;flex-direction:column}
}


/* =========================================================
   ETAPA 12 — SOLICITAÇÕES DE PERSONALIZADOS
   ========================================================= */
.request-honeypot{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  clip:rect(0 0 0 0) !important;
  white-space:nowrap !important;
}
.project-form-status{
  margin:12px 0 0;
  padding:11px 13px;
  border-radius:11px;
  font-size:10px;
  line-height:1.5;
  background:#edf5f2;
  color:var(--teal-dark);
}
.project-form-status[data-type="error"]{
  background:#fff0e7;
  color:#914535;
}
.personalized-request-success{
  align-self:center;
  max-width:560px;
  border-radius:24px;
  padding:34px;
  background:#edf5f2;
  border:1px solid rgba(11,111,114,.16);
  text-align:center;
}
.request-success-mark{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--teal-dark);
  color:#fff;
  font-size:24px;
  margin:0 auto 17px;
}
.personalized-request-success h3{
  font-family:Georgia,serif;
  font-size:34px;
  font-weight:500;
  margin:8px 0 12px;
}
.personalized-request-success>p:not(.eyebrow){
  color:var(--muted);
  line-height:1.6;
}
.personalized-request-success>strong{
  display:block;
  width:max-content;
  max-width:100%;
  margin:18px auto;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  font-size:13px;
  letter-spacing:.05em;
}


/* =========================================================
   ETAPA 14 — ACESSIBILIDADE E FINALIZAÇÃO
   ========================================================= */
.skip-link{
  position:fixed;
  z-index:9999;
  top:-70px;
  left:16px;
  padding:10px 14px;
  border-radius:10px;
  background:#fff;
  color:var(--brown-dark);
  font-size:11px;
  font-weight:900;
  box-shadow:var(--shadow);
}
.skip-link:focus{top:16px}
:focus-visible{
  outline:3px solid var(--orange);
  outline-offset:3px;
}
.footer-legal-mini{
  grid-column:1/-1;
  margin-top:6px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.68);
  font-size:9px;
  line-height:1.5;
}
.footer-legal-mini.pending{color:#f0c98e}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}
