/* ==========================================================================
   Sterilifer — folha de estilo principal
   Convertido fielmente dos mockups (.dc.html). Paleta verde, cards brancos,
   cantos arredondados, fonte Manrope.
   ========================================================================== */

:root{
  --ac:#24743c;            /* verde de destaque (accent) */
  --ac-dark:#117a3d;
  --ink:#12281a;           /* texto escuro principal */
  --ink-2:#3c5256;
  --muted:#43595d;
  --muted-2:#7b9698;
  --placeholder:#a9c4c5;
  --bg:#f2f9f4;            /* fundo da página */
  --bg-soft:#e9f4ec;
  --line:#e7f2eb;
  --line-2:#d2e6d7;
  --white:#fff;
  --footer:#12281a;
  --footer-text:#a8c6c7;
  --footer-line:#1f3d2a;
  --radius:20px;
  --radius-lg:24px;
  --radius-pill:999px;
  --shadow-card:0 12px 30px -22px rgba(12,46,48,.4);
  --shadow-pop:0 18px 36px -22px rgba(12,46,48,.45);
  --maxw:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
  color:var(--ink);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
img{ max-width:100%; height:auto; display:block; }
::selection{ background:var(--ac); color:#fff; }

@keyframes waPulse{ 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.45);} 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }
@keyframes popIn{ 0%{ opacity:0; transform:translateY(12px) scale(.97);} 100%{ opacity:1; transform:none;} }
@keyframes fadeIn{ 0%{ opacity:0;} 100%{ opacity:1;} }

/* layout helpers ---------------------------------------------------------- */
.container{ max-width:var(--maxw); margin:0 auto; padding-left:clamp(16px,4vw,40px); padding-right:clamp(16px,4vw,40px); }
.section{ padding-top:clamp(40px,6vw,64px); }
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:9px; border-radius:var(--radius-pill); font-weight:700; font-size:15px; padding:15px 28px; border:none; transition:filter .15s ease, transform .15s ease; }
.btn:hover{ filter:brightness(.96); }
.btn:active{ transform:translateY(1px); }
.btn--primary{ background:var(--ac); color:#fff; }
.btn--ghost{ background:#fff; color:var(--ink); }
.btn--block{ width:100%; }
.eyebrow{ font-size:13px; font-weight:700; color:var(--ac); text-transform:uppercase; letter-spacing:.06em; }

/* announcement bar -------------------------------------------------------- */
.announcement{ background:var(--ac); color:#e8f4ec; text-align:center; padding:10px 20px; font-size:13px; font-weight:500; }

/* header ------------------------------------------------------------------ */
.site-header-wrap{ position:sticky; top:0; z-index:40; padding:14px clamp(16px,4vw,40px); background:rgba(244,251,251,.86); backdrop-filter:blur(10px); }
.site-header{ max-width:var(--maxw); margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:18px; padding:13px 22px; background:#fff; border-radius:18px; box-shadow:var(--shadow-card); }
.site-brand{ font-weight:800; font-size:22px; letter-spacing:-.02em; color:var(--ink); }
.site-brand img{ max-height:38px; width:auto; }
/* menu principal: <ul.main-nav><li><a>…</a><ul.sub-menu>…</ul></li></ul> */
.main-nav,
.main-nav .sub-menu{ list-style:none; margin:0; padding:0; }
.main-nav{ display:flex; align-items:center; gap:clamp(14px,2vw,28px); font-size:14.5px; font-weight:600; color:var(--ink-2); flex-wrap:wrap; }
.main-nav li{ position:relative; }
.main-nav a{ display:block; padding:6px 0; white-space:nowrap; }
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current-menu-parent > a{ color:var(--ac); }

/* seta indicadora de submenu */
.main-nav .menu-item-has-children > a::after{
  content:""; display:inline-block; width:7px; height:7px; margin-left:6px; vertical-align:middle;
  border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg) translateY(-1px);
}

/* dropdown (desktop) */
.main-nav .sub-menu{
  position:absolute; top:100%; left:0; min-width:210px; z-index:60;
  background:#fff; border-radius:14px; padding:10px; margin-top:8px;
  box-shadow:var(--shadow-card);
  opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.main-nav .sub-menu li{ width:100%; }
.main-nav .sub-menu a{ padding:9px 12px; border-radius:9px; font-weight:600; font-size:14px; color:var(--ink-2); }
.main-nav .sub-menu a:hover{ background:var(--bg-soft); color:var(--ac); }
.main-nav .sub-menu .menu-item-has-children > a::after{ transform:rotate(-45deg); float:right; }
/* submenu de 2º nível abre ao lado */
.main-nav .sub-menu .sub-menu{ top:0; left:100%; margin:0 0 0 6px; }
.header-actions{ display:flex; align-items:center; gap:12px; }
.icon-btn{ width:40px; height:40px; border-radius:50%; background:var(--bg-soft); display:flex; align-items:center; justify-content:center; color:var(--ac); border:none; }
.cart-btn{ position:relative; width:40px; height:40px; border-radius:50%; background:var(--ac); display:flex; align-items:center; justify-content:center; }
.cart-count{ position:absolute; top:-4px; right:-4px; background:var(--ink); color:#fff; font-size:10px; min-width:18px; height:18px; padding:0 4px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-weight:700; }
.nav-toggle{ display:none; background:none; border:none; color:var(--ink); }

/* breadcrumb -------------------------------------------------------------- */
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted-2); flex-wrap:wrap; padding-top:clamp(20px,3vw,28px); }
.breadcrumb .current{ color:var(--ink); font-weight:600; }

/* hero -------------------------------------------------------------------- */
.hero{ padding-top:clamp(24px,4vw,40px); }
.hero__inner{ background:linear-gradient(135deg,#e9f4ec,#dcefe0); border-radius:clamp(20px,3vw,28px); padding:clamp(32px,5vw,56px); display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:clamp(28px,4vw,44px); align-items:center; }
.hero__badge{ display:inline-block; padding:7px 14px; background:#fff; border-radius:var(--radius-pill); font-size:12.5px; font-weight:700; color:var(--ac); }
.hero__title{ margin:22px 0 0; font-weight:800; font-size:clamp(32px,5vw,50px); line-height:1.05; letter-spacing:-.03em; color:var(--ink); text-wrap:balance; }
.hero__text{ margin:20px 0 0; font-size:clamp(15px,1.6vw,16.5px); line-height:1.6; color:var(--muted); max-width:440px; }
.hero__cta{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.hero__media{ position:relative; }
.media-placeholder{ aspect-ratio:1/1; border-radius:var(--radius-lg); background:#fff; border:1px solid var(--line-2); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.media-placeholder span{ font-weight:700; font-size:13px; letter-spacing:.05em; color:var(--placeholder); text-transform:uppercase; }
.media-placeholder img{ width:100%; height:100%; object-fit:cover; }
/* hero: imagem cobre o card inteiro */
.media-placeholder--contain{ background:var(--bg-soft); padding:0; }
.media-placeholder--contain img{ object-fit:cover; }
.hero__float{ position:absolute; top:-16px; right:-16px; background:#fff; border-radius:16px; padding:14px 18px; box-shadow:var(--shadow-pop); display:flex; align-items:center; gap:10px; }
.hero__float .tag{ width:38px; height:38px; border-radius:50%; background:var(--bg-soft); display:flex; align-items:center; justify-content:center; color:var(--ac); font-weight:800; }

/* section heading --------------------------------------------------------- */
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:24px; flex-wrap:wrap; }
.section-head h2{ margin:8px 0 0; font-weight:800; font-size:clamp(24px,3vw,30px); letter-spacing:-.02em; color:var(--ink); }
.link-more{ font-size:14px; font-weight:700; color:var(--ac); }

/* category cards ---------------------------------------------------------- */
.cat-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px; }
.cat-card{ background:#fff; border-radius:var(--radius); padding:24px; display:flex; align-items:center; gap:16px; transition:transform .15s ease, box-shadow .15s ease; }
.cat-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow-card); }
.cat-card .ico{ width:54px; height:54px; border-radius:16px; background:var(--bg-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cat-card .t{ font-weight:700; font-size:15.5px; color:var(--ink); }
.cat-card .s{ font-size:12.5px; color:var(--muted-2); margin-top:2px; }

/* carrossel de categorias (com fotos) */
.cat-carousel-wrap{ position:relative; }
.cat-carousel{
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:4px 2px 12px; -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.cat-carousel::-webkit-scrollbar{ display:none; }
.cat-slide{
  flex:0 0 auto; width:clamp(180px,42vw,250px); scroll-snap-align:start;
  background:#fff; border-radius:20px; overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease;
}
.cat-slide:hover{ transform:translateY(-3px); box-shadow:var(--shadow-card); }
.cat-slide__img{ aspect-ratio:1/1; background:linear-gradient(150deg,#e9f4ec,#d8eddd); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.cat-slide__img img{ width:100%; height:100%; object-fit:cover; }
.cat-slide__img .ph{ font-size:11px; color:var(--placeholder); letter-spacing:.1em; font-weight:700; }
.cat-slide__name{ padding:14px 16px 2px; font-weight:700; font-size:15px; color:var(--ink); line-height:1.3; }
.cat-slide__count{ padding:0 16px 16px; font-size:12.5px; color:var(--muted-2); }
.carousel-nav{
  position:absolute; top:38%; transform:translateY(-50%); z-index:5;
  width:42px; height:42px; border-radius:50%; background:#fff; box-shadow:var(--shadow-card);
  border:none; display:flex; align-items:center; justify-content:center; color:var(--ink);
}
.carousel-nav.prev{ left:-10px; transform:translateY(-50%) rotate(180deg); }
.carousel-nav.next{ right:-10px; }
.carousel-nav:hover{ background:var(--bg-soft); color:var(--ac); }
@media (max-width:880px){ .carousel-nav{ display:none; } /* mobile: arrastar com o dedo */ }

/* dual verticals ---------------------------------------------------------- */
.verticals{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:18px; padding-top:clamp(40px,6vw,56px); }
.vert{ border-radius:var(--radius-lg); padding:clamp(28px,4vw,40px); min-height:260px; display:flex; flex-direction:column; justify-content:space-between; }
.vert--dark{ background:linear-gradient(160deg,#12281a,#1e5634); color:#fff; }
.vert--light{ background:linear-gradient(160deg,#e9f4ec,#cfead6); }
.vert .pill{ display:inline-block; padding:6px 12px; border-radius:var(--radius-pill); font-size:11.5px; font-weight:700; }
.vert--dark .pill{ background:#ffffff1a; color:#a6e2b4; }
.vert--light .pill{ background:#fff; color:var(--ac); }
.vert h3{ margin:16px 0 0; font-weight:800; font-size:clamp(22px,2.5vw,26px); letter-spacing:-.02em; }
.vert--light h3{ color:var(--ink); }
.vert p{ margin:12px 0 0; font-size:14.5px; line-height:1.6; max-width:330px; }
.vert--dark p{ color:#b8d4c0; }
.vert--light p{ color:var(--muted); }
.vert .go{ font-weight:700; font-size:14.5px; }
.vert--dark .go{ color:#fff; }
.vert--light .go{ color:var(--ac); }

/* trust chips ------------------------------------------------------------- */
.trust{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:14px; padding-top:clamp(40px,6vw,52px); }
.chip{ background:#fff; border-radius:18px; padding:20px 22px; display:flex; gap:14px; align-items:center; }
.chip .t{ font-weight:700; font-size:14px; color:var(--ink); }
.chip .s{ font-size:12.5px; color:var(--muted-2); }

/* about ------------------------------------------------------------------- */
.about{ padding-top:clamp(48px,7vw,72px); padding-bottom:clamp(48px,7vw,72px); }
.about__inner{ background:#fff; border-radius:var(--radius-lg); padding:clamp(28px,4vw,44px); display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:32px; align-items:center; }
.about__inner h3{ margin:0; font-weight:800; font-size:clamp(22px,2.6vw,28px); line-height:1.2; letter-spacing:-.02em; color:var(--ink); }
.about__inner p{ margin:0; font-size:15px; line-height:1.7; color:var(--muted); }

/* footer ------------------------------------------------------------------ */
.site-footer{ background:var(--footer); color:var(--footer-text); padding:clamp(40px,6vw,52px) clamp(16px,4vw,40px) 26px; }
.site-footer .inner{ max-width:var(--maxw); margin:0 auto; }
.footer-cols{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:36px; padding-bottom:36px; border-bottom:1px solid var(--footer-line); }
.footer-cols .brand{ font-weight:800; font-size:22px; color:#fff; }
.footer-cols p{ margin:14px 0 0; font-size:13.5px; line-height:1.6; max-width:260px; }
.footer-cols h4{ color:#fff; font-weight:700; font-size:14px; margin:0 0 14px; }
.footer-list{ display:flex; flex-direction:column; gap:9px; font-size:13.5px; }
.footer-list a:hover{ color:#fff; }
.footer-addr{ margin-top:14px; font-size:12.5px; line-height:1.6; color:#7c9d86; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:20px; font-size:12px; color:#7c9d86; flex-wrap:wrap; gap:10px; }
.footer-bottom .links{ display:flex; gap:18px; flex-wrap:wrap; }

/* whatsapp float ---------------------------------------------------------- */
.wa-float{ position:fixed; right:22px; bottom:22px; z-index:50; width:56px; height:56px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; animation:waPulse 2.4s infinite; }

/* ==========================================================================
   WooCommerce — vitrine / arquivo
   ========================================================================== */
.shop-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-top:18px; flex-wrap:wrap; }
.shop-head h1{ margin:0; font-weight:800; font-size:clamp(28px,4vw,36px); letter-spacing:-.02em; color:var(--ink); }
.shop-head .count{ margin:8px 0 0; color:var(--muted); font-size:14.5px; }
.shop-sort{ display:flex; align-items:center; gap:10px; padding:12px 18px; background:#fff; border-radius:var(--radius-pill); font-size:13.5px; font-weight:600; color:var(--ink-2); }
.shop-sort select{ border:none; background:transparent; font:inherit; color:inherit; cursor:pointer; }

.shop-layout{ padding-top:clamp(22px,3vw,28px); padding-bottom:clamp(40px,6vw,56px); display:flex; gap:clamp(20px,3vw,28px); flex-wrap:wrap; align-items:flex-start; }
.shop-sidebar{ flex:1 1 210px; min-width:200px; max-width:260px; background:#fff; border-radius:var(--radius); padding:24px; display:flex; flex-direction:column; gap:24px; position:sticky; top:96px; }
.shop-sidebar .group-title{ font-weight:700; font-size:14px; color:var(--ink); margin-bottom:14px; }
.shop-sidebar .divider{ height:1px; background:var(--line); }
.filter-list{ display:flex; flex-direction:column; gap:11px; font-size:13.5px; color:var(--muted); }
.filter-list label, .filter-list a{ display:flex; align-items:center; gap:9px; cursor:pointer; }
.filter-box{ width:18px; height:18px; border-radius:6px; border:1.5px solid #cde1d3; flex-shrink:0; }
.filter-box--on{ background:var(--ac); border-color:var(--ac); display:flex; align-items:center; justify-content:center; }

.products-grid{ flex:5 1 460px; min-width:280px; display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:18px; }

/* product card (loop) */
.product-card{ background:#fff; border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; transition:transform .15s ease, box-shadow .15s ease; }
.product-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-card); }
.product-card .thumb{ aspect-ratio:1/1; background:linear-gradient(150deg,#e9f4ec,#d8eddd); position:relative; display:flex; align-items:center; justify-content:center; }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.product-card .thumb .ph{ font-size:11px; color:var(--placeholder); letter-spacing:.1em; font-weight:700; }
.product-card .badge{ position:absolute; top:12px; left:12px; color:#fff; font-size:10px; padding:5px 9px; border-radius:var(--radius-pill); font-weight:700; }
.product-card .badge--stock{ background:var(--ink); }
.product-card .badge--sale{ background:var(--ac); }
.product-card .body{ padding:18px; display:flex; flex-direction:column; flex:1; }
.product-card .sku{ font-size:11px; color:var(--placeholder); font-weight:700; letter-spacing:.05em; }
.product-card .name{ font-weight:700; font-size:15px; color:var(--ink); margin-top:5px; line-height:1.3; }
.product-card .price{ font-weight:800; font-size:21px; color:var(--ink); margin-top:12px; }
.product-card .price del{ color:var(--muted-2); font-weight:600; font-size:14px; margin-right:6px; }
.product-card .installments{ font-size:12px; color:var(--ac); margin-top:3px; font-weight:600; }
.product-card .card-btn{ margin-top:14px; display:flex; align-items:center; justify-content:center; padding:11px; background:var(--ac); color:#fff; border-radius:var(--radius-pill); font-weight:700; font-size:13.5px; }

/* pagination */
.shop-pagination{ display:flex; justify-content:center; gap:8px; padding:0 0 clamp(44px,6vw,60px); }
.shop-pagination .page-numbers{ width:40px; height:40px; border-radius:50%; background:#fff; color:var(--ink-2); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:600; }
.shop-pagination .page-numbers.current{ background:var(--ac); color:#fff; font-weight:700; }

/* ==========================================================================
   WooCommerce — produto único
   ========================================================================== */
.single-product-main{ padding-top:clamp(20px,3vw,28px); display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:clamp(28px,4vw,48px); align-items:start; }
.pdp-gallery{ display:flex; gap:14px; flex-wrap:wrap; }
.pdp-thumbs{ display:flex; flex-direction:column; gap:12px; order:2; }
.pdp-thumbs .thumb{ width:64px; height:64px; border-radius:14px; border:1px solid var(--line-2); background:linear-gradient(150deg,#e9f4ec,#d8eddd); overflow:hidden; cursor:pointer; }
.pdp-thumbs .thumb.is-active{ border:2px solid var(--ac); }
.pdp-main-img{ flex:1; min-width:240px; aspect-ratio:1/1.02; border-radius:var(--radius-lg); background:linear-gradient(150deg,#e9f4ec,#d3ebd9); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pdp-main-img .ph{ font-weight:700; font-size:13px; letter-spacing:.06em; color:var(--placeholder); text-transform:uppercase; }

.pdp-meta{ font-size:12px; font-weight:700; letter-spacing:.06em; color:var(--placeholder); text-transform:uppercase; }
.pdp-title{ margin:10px 0 0; font-weight:800; font-size:clamp(26px,3.4vw,34px); line-height:1.1; letter-spacing:-.02em; color:var(--ink); }
.pdp-rating{ display:flex; align-items:center; gap:10px; margin-top:14px; }
.pdp-rating .stars{ display:flex; gap:2px; color:#f5a623; }
.pdp-rating .txt{ font-size:13px; color:var(--muted-2); }
.pdp-price-box{ margin-top:22px; padding:22px; background:#fff; border-radius:18px; }
.pdp-price{ font-weight:800; font-size:clamp(30px,4vw,36px); color:var(--ink); }
.pdp-price .suffix{ font-size:15px; color:var(--muted-2); font-weight:500; white-space:nowrap; }
.pdp-price del{ font-size:18px; color:var(--muted-2); font-weight:600; margin-right:8px; }
.pdp-installments{ font-size:14px; color:var(--ac); margin-top:4px; font-weight:700; }
.pdp-features{ display:flex; flex-direction:column; gap:11px; margin-top:22px; }
.pdp-features li{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--ink-2); list-style:none; }
.pdp-features ul{ margin:0; padding:0; }
.pdp-buy{ display:flex; gap:12px; margin-top:26px; flex-wrap:wrap; align-items:stretch; }
.qty-stepper{ display:flex; align-items:center; background:#fff; border-radius:var(--radius-pill); overflow:hidden; }
.qty-stepper button{ width:46px; height:54px; border:none; background:transparent; color:var(--muted-2); font-size:20px; }
.qty-stepper input{ width:46px; height:54px; text-align:center; border:none; background:transparent; font-weight:700; color:var(--ink); font-size:15px; -moz-appearance:textfield; }
.qty-stepper input::-webkit-outer-spin-button,.qty-stepper input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.add-to-cart-btn{ flex:1; min-width:220px; display:flex; align-items:center; justify-content:center; gap:10px; background:var(--ac); color:#fff; border:none; border-radius:var(--radius-pill); font-weight:700; font-size:15.5px; padding:0 24px; }
.pdp-wa{ margin-top:12px; display:flex; align-items:center; justify-content:center; gap:9px; padding:14px; background:#fff; color:var(--ac-dark); border:1px solid #b9e8cd; border-radius:var(--radius-pill); font-weight:700; font-size:14.5px; }
.pdp-assurances{ display:flex; gap:24px; margin-top:24px; padding-top:22px; border-top:1px solid #e1eee6; font-size:13px; color:var(--muted); flex-wrap:wrap; }
.pdp-assurances span{ display:flex; align-items:center; gap:8px; }

.pdp-info{ padding-top:clamp(40px,6vw,56px); padding-bottom:clamp(48px,7vw,64px); display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:clamp(24px,3vw,40px); }
.pdp-info .card{ background:#fff; border-radius:var(--radius); padding:clamp(24px,3vw,32px); }
.pdp-info h2{ margin:0 0 14px; font-weight:800; font-size:20px; color:var(--ink); }
.pdp-info p{ margin:0; font-size:14.5px; line-height:1.7; color:var(--muted); }
.spec-row{ display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px solid var(--line); font-size:13.5px; }
.spec-row:last-child{ border-bottom:none; }
.spec-row .k{ color:var(--muted-2); }
.spec-row .v{ color:var(--ink); font-weight:600; }

/* ==========================================================================
   Blog
   ========================================================================== */
.page-hero{ padding-top:clamp(28px,4vw,44px); }
.page-hero h1{ margin:0; font-weight:800; font-size:clamp(28px,4vw,38px); letter-spacing:-.02em; color:var(--ink); }
.page-hero p{ margin:10px 0 0; color:var(--muted); font-size:15px; max-width:620px; line-height:1.6; }

.posts-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; padding-top:clamp(28px,4vw,40px); }
.post-card{ background:#fff; border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; transition:transform .15s ease, box-shadow .15s ease; }
.post-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-card); }
.post-card .cover{ aspect-ratio:16/10; background:linear-gradient(150deg,#e9f4ec,#d8eddd); overflow:hidden; }
.post-card .cover img{ width:100%; height:100%; object-fit:cover; }
.post-card .body{ padding:22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.post-card .cat{ font-size:12px; font-weight:700; color:var(--ac); text-transform:uppercase; letter-spacing:.05em; }
.post-card h3{ margin:0; font-weight:800; font-size:18px; line-height:1.3; color:var(--ink); }
.post-card .excerpt{ font-size:14px; line-height:1.6; color:var(--muted); }
.post-card .meta{ margin-top:auto; padding-top:12px; font-size:12.5px; color:var(--muted-2); display:flex; gap:10px; align-items:center; }

.single-article{ padding-top:clamp(28px,4vw,44px); padding-bottom:clamp(48px,7vw,72px); }
.article-wrap{ max-width:760px; margin:0 auto; }
.article-cover{ width:100%; aspect-ratio:16/8; border-radius:var(--radius-lg); object-fit:cover; margin:24px 0; background:linear-gradient(150deg,#e9f4ec,#d8eddd); }
.article-body{ background:#fff; border-radius:var(--radius-lg); padding:clamp(28px,4vw,48px); font-size:16px; line-height:1.8; color:var(--ink-2); }
.article-body h2{ font-size:24px; color:var(--ink); margin:32px 0 12px; letter-spacing:-.01em; }
.article-body h3{ font-size:19px; color:var(--ink); margin:26px 0 10px; }
.article-body p{ margin:0 0 18px; }
.article-body img{ border-radius:14px; margin:18px 0; }
.article-body a{ color:var(--ac); text-decoration:underline; }
.article-body blockquote{ border-left:4px solid var(--ac); margin:18px 0; padding:6px 0 6px 20px; color:var(--muted); font-style:italic; }
.article-body ul,.article-body ol{ margin:0 0 18px; padding-left:22px; }
.article-body li{ margin-bottom:8px; }

/* generic page */
.page-content{ background:#fff; border-radius:var(--radius-lg); padding:clamp(28px,4vw,48px); font-size:16px; line-height:1.8; color:var(--ink-2); max-width:860px; }
.page-content h2{ color:var(--ink); }

/* 404 / search empty */
.notice-block{ text-align:center; padding:clamp(60px,10vw,120px) 0; }
.notice-block h1{ font-size:clamp(40px,8vw,72px); color:var(--ink); margin:0; }
.notice-block p{ color:var(--muted); font-size:16px; margin:14px 0 26px; }

/* ==========================================================================
   Carrinho / checkout one-page (estilo Yampi)
   Estilos detalhados em assets/css/checkout.css
   ========================================================================== */

/* responsivo -------------------------------------------------------------- */
@media (max-width:880px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .main-nav.is-open{ display:flex; position:absolute; top:72px; left:14px; right:14px; background:#fff; flex-direction:column; align-items:flex-start; gap:4px; padding:18px 22px; border-radius:18px; box-shadow:var(--shadow-card); }
  .main-nav.is-open li{ width:100%; }
  /* no mobile o submenu vira lista recuada, sempre visível */
  .main-nav.is-open .sub-menu{
    position:static; opacity:1; visibility:visible; transform:none;
    box-shadow:none; padding:2px 0 6px 14px; margin:0; min-width:0; border-radius:0;
  }
  .main-nav.is-open .sub-menu .sub-menu{ left:auto; margin-left:14px; }
  .main-nav.is-open .menu-item-has-children > a::after{ float:right; }
  .shop-sidebar{ position:static; max-width:none; width:100%; }
}

/* mobile — página de produto: botões de compra se ajustam melhor */
@media (max-width:520px){
  .pdp-buy{ flex-direction:column; align-items:stretch; }
  .qty-stepper{ align-self:flex-start; }
  .add-to-cart-btn{ width:100%; min-width:0; }
  .pdp-thumbs{ flex-direction:row; order:3; flex-wrap:wrap; }
  .pdp-price-box{ padding:18px; }
}
