/* ============================================================
   Instituto Stone — Design System + WooCommerce Styles
   Fontes: coloque SharonDisplay.woff2 e SharonSans.woff2
   em assets/fonts/ para usar as fontes originais da marca.
============================================================ */

@font-face {
  font-family: 'SharonDisplay';
  src: url('../fonts/SharonDisplay.woff2') format('woff2'),
       url('../fonts/SharonDisplay.woff')  format('woff');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'SharonSans';
  src: url('../fonts/SharonSans.woff2') format('woff2'),
       url('../fonts/SharonSans.woff')  format('woff');
  font-weight: 100 700;
  font-display: swap;
}

/* ----------------------------------------------------------
   TOKENS
---------------------------------------------------------- */
:root {
  --is-green:       #00af55;
  --is-green-d:     #009e4c;
  --is-dark:        #003c1e;
  --is-pink:        #ffc8c3;
  --is-teal:        #62d3d0;
  --is-cream:       #f2f0eb;
  --is-muted:       #6a8a70;
  --is-body-text:   #2d4e35;
  --is-border:      rgba(0,60,30,.08);
  --is-font-h:      'SharonDisplay', 'DM Serif Display', Georgia, serif;
  --is-font-b:      'SharonSans',    'DM Sans', system-ui, sans-serif;
  --is-radius:      16px;
  --is-pill:        50px;
  --is-shadow-g:    0 4px 20px rgba(0,175,85,.4);
  --is-shadow-g-h:  0 8px 28px rgba(0,175,85,.5);
}

/* ----------------------------------------------------------
   RESET
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--is-font-b); background: var(--is-cream); color: var(--is-dark); overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font-family: var(--is-font-b); }

/* ----------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------- */
@keyframes fadeUp   { from { opacity:0; transform:translateY(26px) } to { opacity:1; transform:translateY(0) } }
@keyframes progGrow { from { width:0 } to { width: var(--prog-w, 67%) } }
@keyframes floatY   { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-10px) } }
@keyframes pulse    { 0%,100% { transform:scale(1) } 50% { transform:scale(1.07) } }
@keyframes checkPop { 0% { transform:scale(0) } 70% { transform:scale(1.3) } 100% { transform:scale(1) } }

.fu  { opacity:0; animation:fadeUp .7s ease forwards; }
.d1  { animation-delay:.1s } .d2 { animation-delay:.2s }
.d3  { animation-delay:.3s } .d4 { animation-delay:.4s }

/* ----------------------------------------------------------
   GRAFISMO (padrão decorativo da marca)
   Usa gradient de pontos para aproximar o grafismo original.
   Substitua por <img src="grafismo.png"> se preferir.
---------------------------------------------------------- */
.is-grf {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background-image:
    radial-gradient(circle, rgba(0,175,85,.5) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(98,211,208,.3) 1px, transparent 1px);
  background-size: 18px 18px, 9px 9px;
  background-position: 0 0, 9px 9px;
}

/* ----------------------------------------------------------
   TIPOGRAFIA UTILITÁRIA
---------------------------------------------------------- */
.is-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--is-green); display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.is-tag::before { content:''; width:28px; height:2px; background:var(--is-green); border-radius:2px; flex-shrink:0; }

.is-sec-title {
  font-family: var(--is-font-h); font-size: clamp(28px,3vw,44px); font-weight: 900;
  line-height: 1.1; letter-spacing: -.02em; color: var(--is-dark); margin-bottom: 20px;
}
.is-sec-body { font-size: 16px; line-height: 1.75; color: var(--is-body-text); margin-bottom: 28px; }

/* ----------------------------------------------------------
   BADGE
---------------------------------------------------------- */
.is-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,175,85,.15); border: 1px solid rgba(0,175,85,.4);
  color: var(--is-green); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--is-pill); margin-bottom: 24px;
}
.is-badge-dot { width:6px; height:6px; background:var(--is-green); border-radius:50%; animation:pulse 1.8s infinite; flex-shrink:0; }

/* ----------------------------------------------------------
   BOTÕES
---------------------------------------------------------- */
.is-btn-p,
button.is-btn-p,
input[type="submit"].is-btn-p,
.woocommerce .button.is-btn-p {
  background: var(--is-green); color: #fff !important;
  padding: 17px 40px; border-radius: var(--is-pill); font-size: 16px; font-weight: 700;
  font-family: var(--is-font-b); border: none; cursor: pointer;
  box-shadow: var(--is-shadow-g); transition: all .2s; display: inline-block; text-align: center; line-height: 1;
}
.is-btn-p:hover { background: var(--is-green-d) !important; transform: translateY(-2px); box-shadow: var(--is-shadow-g-h); }

.is-btn-o {
  background: transparent; color: var(--is-cream);
  padding: 15px 38px; border-radius: var(--is-pill); font-size: 16px; font-weight: 700;
  font-family: var(--is-font-b); border: 2px solid rgba(242,240,235,.3);
  cursor: pointer; transition: all .2s; display: inline-block; text-align: center; line-height: 1;
}
.is-btn-o:hover { border-color: var(--is-green); color: var(--is-green); transform: translateY(-2px); }

.is-btn-ghost {
  background: transparent; color: var(--is-green);
  padding: 12px 26px; border-radius: var(--is-pill); font-size: 14px; font-weight: 700;
  font-family: var(--is-font-b); border: 1.5px solid var(--is-green);
  cursor: pointer; transition: all .2s; display: inline-block; text-align: center;
}
.is-btn-ghost:hover { background: var(--is-green); color: #fff; }

.is-btn-white {
  background: #fff; color: var(--is-green);
  padding: 15px 34px; border-radius: var(--is-pill); font-size: 15px; font-weight: 700;
  font-family: var(--is-font-b); border: none; cursor: pointer; display: inline-block; transition: all .2s;
}
.is-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); color: var(--is-green-d); }

/* ----------------------------------------------------------
   PROGRESS BAR
---------------------------------------------------------- */
.is-prog-wrap { }
.is-prog-head {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(242,240,235,.65); margin-bottom: 8px; font-weight: 500;
}
.is-prog-track { background: rgba(242,240,235,.15); border-radius: 50px; height: 8px; overflow: hidden; }
.is-prog-fill {
  background: linear-gradient(90deg, var(--is-green), var(--is-teal));
  height: 100%; border-radius: 50px;
  animation: progGrow 1.6s .5s ease both;
}

/* ----------------------------------------------------------
   STRIP STATS
---------------------------------------------------------- */
.is-strip {
  background: var(--is-green); padding: 22px 56px;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px;
}
.is-strip-item { text-align: center; color: #fff; }
.is-strip-item strong { font-family: var(--is-font-h); font-size: 28px; font-weight: 900; display: block; line-height: 1; }
.is-strip-item span   { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; opacity: .85; font-weight: 500; }

/* ----------------------------------------------------------
   TRUST BAR
---------------------------------------------------------- */
.is-trust-bar {
  background: var(--is-green); padding: 14px 56px;
  display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}
.is-trust-item { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 600; }
.is-trust-item svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */
.is-site-header {
  background: var(--is-dark); padding: 18px 56px;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(242,240,235,.08);
}
.is-logo { display: flex; align-items: center; gap: 6px; }
.is-logo-text {
  font-family: var(--is-font-h); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; color: rgba(242,240,235,.6);
}
.is-logo-brand {
  font-family: var(--is-font-h); font-size: 22px; font-weight: 900; color: var(--is-cream); letter-spacing: -.01em;
}
.is-logo-brand em { font-style: normal; color: var(--is-green); }
.is-logo-sep { width: 1px; height: 24px; background: rgba(242,240,235,.2); margin: 0 4px; }

.is-nav { display: flex; gap: 28px; align-items: center; }
.is-nav a { font-size: 14px; font-weight: 600; color: rgba(242,240,235,.7); transition: color .2s; }
.is-nav a:hover { color: var(--is-green); }

.is-header-cart {
  display: flex; align-items: center; gap: 8px; position: relative;
  background: rgba(242,240,235,.08); border: 1px solid rgba(242,240,235,.12);
  border-radius: var(--is-pill); padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--is-cream); transition: all .2s;
}
.is-header-cart:hover { border-color: var(--is-green); color: var(--is-green); }
.is-header-cart svg { width: 18px; height: 18px; }
.is-cart-count {
  background: var(--is-green); color: #fff; font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.is-site-footer { background: var(--is-dark); padding: 60px 56px 28px; }
.is-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.is-footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(242,240,235,.5); margin-top: 14px; max-width: 280px; }
.is-footer-col h4 {
  font-family: var(--is-font-h); font-size: 12px; font-weight: 700;
  color: var(--is-cream); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em;
}
.is-footer-col ul { list-style: none; }
.is-footer-col ul li { margin-bottom: 10px; }
.is-footer-col ul li a { font-size: 13px; color: rgba(242,240,235,.5); transition: color .2s; }
.is-footer-col ul li a:hover { color: var(--is-green); }
.is-footer-bottom {
  border-top: 1px solid rgba(242,240,235,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.is-footer-bottom p { font-size: 12px; color: rgba(242,240,235,.35); }

/* ----------------------------------------------------------
   BREADCRUMB (WooCommerce override)
---------------------------------------------------------- */
.woocommerce-breadcrumb,
.is-breadcrumb {
  padding: 14px 56px !important; font-size: 12px !important; font-weight: 500;
  color: var(--is-muted) !important; display: flex !important; gap: 6px; align-items: center;
  background: var(--is-cream); margin: 0 !important;
}
.woocommerce-breadcrumb a,
.is-breadcrumb a { color: var(--is-green) !important; }
.woocommerce-breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   SINGLE PRODUCT — PÁGINA DE DOAÇÃO
============================================================ */
.is-product-hero {
  background: var(--is-dark); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 56px 56px 64px; align-items: start;
}
.is-product-hero .is-grf.tr { width:360px; height:360px; opacity:.13; top:-40px; right:-40px; }
.is-product-hero .is-grf.bl { width:220px; height:220px; opacity:.09; bottom:-40px; left:-40px; }

/* Imagem do produto */
.is-product-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/3; background: rgba(242,240,235,.06);
  border: 1.5px solid rgba(242,240,235,.1);
  animation: floatY 7s ease-in-out infinite;
}
/* Quando .fu e .is-product-img-wrap coincidem no mesmo elemento, o floatY
   sobrescreveria o fadeUp — combinamos os dois aqui para garantir opacity:1 */
.is-product-img-wrap.fu {
  animation: fadeUp .7s .1s ease forwards, floatY 7s .9s ease-in-out infinite;
}
.is-product-img-wrap img { width:100%; height:100%; object-fit:cover; }
.is-product-img-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:12px; color:rgba(242,240,235,.3);
}
.is-product-img-placeholder svg  { width:48px; height:48px; }
.is-product-img-placeholder span { font-size:12px; text-transform:uppercase; letter-spacing:.08em; }

/* Info */
.is-product-info { position: relative; z-index: 2; }

.is-product-category {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--is-green); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.is-product-category::before { content:''; width:22px; height:2px; background:var(--is-green); border-radius:2px; }

.is-product-title {
  font-family: var(--is-font-h); font-size: clamp(28px,3vw,46px); font-weight: 900;
  line-height: 1.06; letter-spacing: -.02em; color: var(--is-cream); margin-bottom: 16px;
}

.is-product-excerpt { font-size: 15px; line-height: 1.7; color: rgba(242,240,235,.62); margin-bottom: 32px; }

/* Meta de arrecadação */
.is-product-goal {
  background: rgba(242,240,235,.06); border: 1.5px solid rgba(242,240,235,.12);
  border-radius: 16px; padding: 20px; margin-bottom: 28px;
}
.is-product-goal-top {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px;
}
.is-product-goal-raised { font-family: var(--is-font-h); font-size: 28px; font-weight: 900; color: var(--is-green); line-height: 1; }
.is-product-goal-target { font-size: 12px; color: rgba(242,240,235,.5); font-weight: 500; }

/* Formulário de doação */
.is-donation-form { }
.is-donation-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(242,240,235,.5); margin-bottom: 12px; display: block;
}

.is-amount-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.is-amount-btn {
  background: rgba(242,240,235,.07); border: 1.5px solid rgba(242,240,235,.18);
  border-radius: 12px; padding: 14px 8px; text-align: center; cursor: pointer;
  transition: all .18s; color: var(--is-cream); font-weight: 700; font-size: 15px;
  font-family: var(--is-font-b); line-height: 1;
}
.is-amount-btn:hover,
.is-amount-btn.active { background: var(--is-green); border-color: var(--is-green); color: #fff; box-shadow: 0 4px 16px rgba(0,175,85,.35); }
.is-amount-btn small { font-size: 10px; font-weight: 500; opacity: .7; display: block; margin-top: 4px; }

.is-amount-custom { position: relative; margin-bottom: 24px; }
.is-amount-custom-prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 15px; font-weight: 700; color: rgba(242,240,235,.45); pointer-events: none;
}
.is-amount-custom input[type="number"],
.is-amount-custom-input {
  width: 100%; background: rgba(242,240,235,.07); border: 1.5px solid rgba(242,240,235,.18);
  border-radius: 12px; padding: 14px 16px 14px 44px;
  color: var(--is-cream); font-size: 18px; font-weight: 700; font-family: var(--is-font-b);
  outline: none; transition: border-color .2s; -moz-appearance: textfield;
}
.is-amount-custom input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.is-amount-custom input:focus { border-color: var(--is-green); }
.is-amount-custom input::placeholder { color: rgba(242,240,235,.25); font-weight: 400; font-size: 14px; }

/* Botão adicionar ao carrinho */
.is-add-to-cart-btn,
.single_add_to_cart_button.is-btn-p {
  width: 100%; background: var(--is-green); color: #fff;
  padding: 20px; border-radius: var(--is-pill); font-size: 17px; font-weight: 700;
  font-family: var(--is-font-b); border: none; cursor: pointer;
  box-shadow: var(--is-shadow-g); transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px; line-height: 1;
}
.is-add-to-cart-btn:hover,
.single_add_to_cart_button.is-btn-p:hover {
  background: var(--is-green-d); transform: translateY(-2px); box-shadow: var(--is-shadow-g-h);
}
.is-add-to-cart-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Selos de segurança */
.is-product-security { display: flex; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
.is-sec-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(242,240,235,.45); font-weight: 500; }
.is-sec-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--is-teal); }

/* Stats abaixo do hero */
.is-product-stats {
  padding: 0; background: var(--is-cream);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.is-product-stat {
  text-align: center; padding: 36px 24px;
  border-right: 1px solid var(--is-border);
}
.is-product-stat:last-child { border-right: none; }
.is-product-stat-num {
  font-family: var(--is-font-h); font-size: 36px; font-weight: 900;
  color: var(--is-green); line-height: 1; letter-spacing: -.03em; margin-bottom: 6px;
}
.is-product-stat-lbl { font-size: 11px; color: var(--is-muted); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }

/* Descrição + Como funciona */
.is-product-body {
  padding: 80px 56px; display: grid; grid-template-columns: 3fr 2fr; gap: 64px;
  max-width: 1200px; margin: 0 auto;
}
.is-product-desc h2 {
  font-family: var(--is-font-h); font-size: clamp(22px,2.4vw,34px); font-weight: 900;
  color: var(--is-dark); margin-bottom: 20px; letter-spacing: -.02em; line-height: 1.15;
}
.is-product-desc p  { font-size: 15px; line-height: 1.8; color: var(--is-body-text); margin-bottom: 14px; }
.is-product-desc ul { padding-left: 20px; margin-bottom: 14px; }
.is-product-desc ul li { font-size: 15px; line-height: 1.8; color: var(--is-body-text); margin-bottom: 6px; }

.is-product-how { }
.is-product-how h3 {
  font-family: var(--is-font-h); font-size: 18px; font-weight: 700;
  color: var(--is-dark); margin-bottom: 20px;
}
.is-product-steps { display: flex; flex-direction: column; gap: 18px; }
.is-product-step  { display: flex; gap: 16px; }
.is-product-step-num {
  font-family: var(--is-font-h); font-size: 28px; font-weight: 900;
  color: rgba(0,175,85,.22); line-height: 1; flex-shrink: 0; width: 36px; padding-top: 2px;
}
.is-product-step-body h4 { font-size: 14px; font-weight: 700; color: var(--is-dark); margin-bottom: 4px; }
.is-product-step-body p  { font-size: 13px; line-height: 1.6; color: var(--is-muted); }

/* ============================================================
   CARRINHO
============================================================ */
.is-cart-hero {
  background: var(--is-dark); padding: 52px 56px;
  position: relative; overflow: hidden; text-align: center;
}
.is-cart-hero .is-grf.tr { width:300px; height:300px; opacity:.11; top:-30px; right:-30px; }
.is-cart-hero-inner { position: relative; z-index: 2; }
.is-cart-hero h1 {
  font-family: var(--is-font-h); font-size: clamp(28px,3.5vw,46px); font-weight: 900;
  color: var(--is-cream); letter-spacing: -.02em; margin-bottom: 8px;
}
.is-cart-hero h1 em { font-style: normal; color: var(--is-green); }
.is-cart-hero p { font-size: 15px; color: rgba(242,240,235,.5); }

.is-cart-layout {
  max-width: 1100px; margin: 0 auto; padding: 52px 40px 80px;
  display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start;
}

/* Tabela de itens */
.is-cart-table { width:100%; border-collapse:collapse; }
.is-cart-table thead th {
  text-align: left; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--is-muted); padding: 0 0 14px 0;
  border-bottom: 1.5px solid var(--is-border);
}
.is-cart-table thead th.col-remove { width: 32px; }
.is-cart-table tbody tr { border-bottom: 1px solid var(--is-border); }
.is-cart-table tbody td { padding: 20px 0; vertical-align: middle; }
.is-cart-table td.product-remove { width: 32px; }

.is-cart-product { display: flex; gap: 16px; align-items: center; }
.is-cart-thumb {
  width: 72px; height: 72px; border-radius: 12px; overflow: hidden; flex-shrink: 0;
  background: rgba(0,60,30,.06);
}
.is-cart-thumb img { width:100%; height:100%; object-fit:cover; }
.is-cart-name { font-weight: 700; font-size: 14px; color: var(--is-dark); margin-bottom: 3px; display: block; }
.is-cart-name:hover { color: var(--is-green); }
.is-cart-cat  { font-size: 12px; color: var(--is-muted); }

.is-qty-wrap { display: flex; align-items: center; gap: 8px; }
.is-qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,60,30,.06); border: 1.5px solid var(--is-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; font-weight: 700; color: var(--is-dark);
  transition: all .18s; line-height: 1;
}
.is-qty-btn:hover { background: var(--is-green); color: #fff; border-color: var(--is-green); }
.qty,
.is-qty-input {
  width: 44px; text-align: center;
  border: 1.5px solid var(--is-border); border-radius: 8px;
  padding: 6px 4px; font-weight: 700; font-size: 14px; font-family: var(--is-font-b);
  background: transparent; outline: none; color: var(--is-dark);
}
.is-cart-price { font-family: var(--is-font-h); font-size: 17px; font-weight: 700; color: var(--is-dark); }

a.remove,
.is-remove-btn {
  color: rgba(0,60,30,.3) !important; font-size: 20px; cursor: pointer;
  transition: color .18s; background: none; border: none; padding: 4px; line-height: 1;
  display: block; text-align: center;
}
a.remove:hover,
.is-remove-btn:hover { color: #d94f4f !important; }

/* Cupom */
.is-coupon-row { display: flex; gap: 10px; margin-top: 24px; }
.is-coupon-input {
  flex: 1; border: 1.5px solid var(--is-border); border-radius: var(--is-pill);
  padding: 12px 20px; font-size: 13px; font-family: var(--is-font-b);
  outline: none; background: transparent; transition: border-color .2s; color: var(--is-dark);
}
.is-coupon-input:focus { border-color: var(--is-green); }
.is-coupon-input::placeholder { color: var(--is-muted); }

.is-cart-actions { display: flex; justify-content: space-between; margin-top: 24px; }

/* Resumo do carrinho */
.is-cart-summary {
  background: var(--is-dark); border-radius: 24px; padding: 32px;
  position: sticky; top: 90px;
}
.is-cart-summary h3 {
  font-family: var(--is-font-h); font-size: 19px; font-weight: 900;
  color: var(--is-cream); margin-bottom: 20px;
}
.is-summary-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(242,240,235,.08); font-size: 14px;
}
.is-summary-line:last-of-type { border-bottom: none; }
.is-summary-line span   { color: rgba(242,240,235,.55); }
.is-summary-line strong { color: var(--is-cream); font-weight: 700; }
.is-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0 0;
}
.is-summary-total-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(242,240,235,.45); font-weight: 700; }
.is-summary-total-value { font-family: var(--is-font-h); font-size: 34px; font-weight: 900; color: var(--is-green); }
.is-summary-checkout-btn { width: 100%; margin-top: 20px; }

.is-impact-note {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 16px;
  padding: 14px; background: rgba(0,175,85,.12); border-radius: 12px;
}
.is-impact-note svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--is-green); margin-top: 1px; }
.is-impact-note p { font-size: 12px; line-height: 1.55; color: rgba(242,240,235,.6); }

/* Carrinho vazio */
.is-cart-empty { text-align: center; padding: 80px 40px; }
.is-cart-empty-icon { font-size: 52px; margin-bottom: 16px; }
.is-cart-empty h3 { font-family: var(--is-font-h); font-size: 24px; color: var(--is-dark); margin-bottom: 8px; }
.is-cart-empty p  { font-size: 14px; color: var(--is-muted); margin-bottom: 28px; }

/* ============================================================
   CHECKOUT
============================================================ */
.is-checkout-hero {
  background: var(--is-dark); padding: 40px 56px;
  position: relative; overflow: hidden;
}
.is-checkout-hero .is-grf.tr { width: 260px; height: 260px; opacity: .1; top: -20px; right: -20px; }
.is-checkout-hero-content { position: relative; z-index: 2; }
.is-checkout-hero h1 {
  font-family: var(--is-font-h); font-size: clamp(24px,2.8vw,38px); font-weight: 900;
  color: var(--is-cream); letter-spacing: -.02em; margin-bottom: 8px;
}
.is-checkout-hero p { font-size: 14px; color: rgba(242,240,235,.5); }

/* Indicador de passos */
.is-steps-bar { display: flex; align-items: center; margin-top: 20px; }
.is-step-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; }
.is-step-circle {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
}
.is-step-item.done   .is-step-circle { background: rgba(0,175,85,.35); color: var(--is-green); }
.is-step-item.active .is-step-circle { background: var(--is-green); color: #fff; }
.is-step-item.next   .is-step-circle { background: rgba(242,240,235,.1); color: rgba(242,240,235,.35); }
.is-step-item.done   span { color: rgba(242,240,235,.55); }
.is-step-item.active span { color: var(--is-cream); }
.is-step-item.next   span { color: rgba(242,240,235,.3); }
.is-step-sep { width: 28px; height: 1px; background: rgba(242,240,235,.15); margin: 0 8px; }

/* Layout 2 colunas */
.is-checkout-layout {
  max-width: 1100px; margin: 0 auto; padding: 48px 40px 80px;
  display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start;
}

/* Seções do formulário */
.is-checkout-section { margin-bottom: 32px; }
.is-section-title {
  font-family: var(--is-font-h); font-size: 17px; font-weight: 700;
  color: var(--is-dark); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1.5px solid var(--is-border); display: flex; align-items: center; gap: 10px;
}
.is-section-title svg { width: 18px; height: 18px; color: var(--is-green); flex-shrink: 0; }

/* Campos do formulário */
.woocommerce-billing-fields,
.woocommerce-account-fields,
.woocommerce-additional-fields { }

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 { display: none; }

.woocommerce-checkout .form-row,
.is-form-row { margin-bottom: 14px; }

.woocommerce-checkout label,
.is-form-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--is-muted); margin-bottom: 6px;
}
.woocommerce-checkout label .required,
.is-required { color: var(--is-green); margin-left: 2px; }

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.is-form-input,
.is-form-select {
  width: 100%; border: 1.5px solid var(--is-border); border-radius: 12px;
  padding: 16px 18px; font-size: 14px; font-family: var(--is-font-b);
  background: #fff; color: var(--is-dark); outline: none;
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.is-form-input:focus,
.is-form-select:focus {
  border-color: var(--is-green);
  box-shadow: 0 0 0 3px rgba(0,175,85,.1);
}

select.is-form-select,
.woocommerce-checkout select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a8a70' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px); display: inline-block; vertical-align: top;
}
.woocommerce-checkout .form-row-first { margin-right: 16px; }

/* ============================================================
   CHECKOUT — MÉTODOS DE PAGAMENTO
   Cada <li> vira um card clicável; radio nativo oculto e
   substituído por indicador CSS customizado.
============================================================ */

/* Tabela de produtos no #order_review (âncora AJAX oculta) — a sidebar já mostra o resumo */
.woocommerce-checkout-review-order-table { display: none !important; }

#payment { display: block !important; background: none !important; }

#payment .wc_payment_methods {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card de cada método */
#payment .wc_payment_methods li.wc_payment_method {
  border: 1.5px solid var(--is-border) !important;
  border-radius: 14px !important;
  overflow: hidden;
  margin: 0 !important;
  background: #fff;
  transition: border-color .2s, background .2s;
}

/* Radio nativo: oculto mas funcional — display:none não impede o label de acionar o input */
#payment .wc_payment_methods input[type="radio"] {
  display: none !important;
}

/* Label do método — clicável, ocupa toda a linha do cabeçalho do card */
#payment .wc_payment_methods li.wc_payment_method > label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 15px 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--is-dark) !important;
  cursor: pointer;
  /* Remove estilos do gateway */
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  transition: none !important;
  width: 100%;
}

/* Indicador circular customizado no lugar do radio */
#payment .wc_payment_methods li.wc_payment_method > label::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,60,30,.2);
  background: #fff;
  transition: border-color .18s, background .18s, box-shadow .18s;
}

/* Estado selecionado — card inteiro */
#payment .wc_payment_methods li.wc_payment_method:has(input:checked) {
  border-color: var(--is-green) !important;
  background: rgba(0,175,85,.02) !important;
}

/* Indicador preenchido quando selecionado */
#payment .wc_payment_methods li.wc_payment_method:has(input:checked) > label::before {
  border-color: var(--is-green);
  background: var(--is-green);
  box-shadow: inset 0 0 0 3px #fff;
}

/* payment_box — area de campos do gateway */
.payment_box {
  border-top: 1.5px solid var(--is-border) !important;
  background: rgba(0,175,85,.025) !important;
  padding: 18px 20px 10px !important;
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* Reset de bordas em qualquer container/fieldset/table do gateway */
.payment_box fieldset,
.payment_box table,
.payment_box thead,
.payment_box tbody,
.payment_box tr,
.payment_box td,
.payment_box th,
.payment_box > div,
.payment_box > p,
.payment_box > ul,
.payment_box > ol {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Override do padding do gateway Pagar.me — mesma especificidade (1,3,2) + source order */
#payment .payment_methods li[class*="pagarme"] input[type="text"],
#payment .payment_methods li[class*="pagarme"] input[type="number"],
#payment .payment_methods li[class*="pagarme"] input[type="email"],
#payment .payment_methods li[class*="pagarme"] input[type="tel"],
#payment .payment_methods li[class*="pagarme"] input[type="url"],
#payment .payment_methods li[class*="pagarme"] input[type="password"],
#payment .payment_methods li[class*="pagarme"] input[type="search"],
#payment .payment_methods li[class*="pagarme"] select,
#payment .payment_methods li[class*="pagarme"] textarea,
#payment .payment_methods li[class*="pagarme"] .input-text {
  padding: 16px 18px !important;
  height: auto !important;
}

/* Labels dos campos dentro do payment_box (override dos estilos do gateway) */
.payment_box label,
.payment_box .wc-credit-card-form-card-number label {
  font-family: var(--is-font-b) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  color: var(--is-muted) !important;
  display: block !important;
  margin-bottom: 6px !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: auto !important;
}

/* Asterisco de campo obrigatório */
.payment_box .required,
.payment_box abbr[title] {
  color: var(--is-green) !important;
  text-decoration: none !important;
  border: none !important;
}

/* Inputs e selects do gateway */
.payment_box input[type="text"],
.payment_box input[type="number"],
.payment_box input[type="email"],
.payment_box input[type="tel"],
.payment_box input[type="password"],
.payment_box input.input-text,
.payment_box select {
  width: 100% !important;
  border: 1.5px solid var(--is-border) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-family: var(--is-font-b) !important;
  font-size: 14px !important;
  color: var(--is-dark) !important;
  background: #fff !important;
  outline: none !important;
  transition: border-color .18s, box-shadow .18s;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  margin: 0 0 14px !important;
}

.payment_box input:focus,
.payment_box select:focus {
  border-color: var(--is-green) !important;
  box-shadow: 0 0 0 3px rgba(0,175,85,.1) !important;
}

/* form-row padrão do WooCommerce dentro do gateway */
.payment_box .form-row {
  margin-bottom: 0 !important;
  padding: 0 !important;
  clear: none !important;
}

.payment_box .form-row-first,
.payment_box .form-row-last {
  display: inline-block !important;
  width: calc(50% - 8px) !important;
  vertical-align: top;
}
.payment_box .form-row-first { margin-right: 16px !important; }

/* Qualquer .label customizado do gateway */
.payment_box .label,
.payment_box span.label,
.payment_box div.label {
  border: none !important;
  background: none !important;
  color: var(--is-muted) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .07em !important;
  font-family: var(--is-font-b) !important;
  width: auto !important;
}

/* Termos e condições */
.woocommerce-terms-and-conditions-wrapper {
  font-size: 12px; color: var(--is-muted); margin: 12px 0; line-height: 1.6;
}

/* Botão de confirmar */
#place_order,
.is-checkout-submit {
  width: 100%; background: var(--is-green); color: #fff;
  padding: 20px; border-radius: var(--is-pill); font-size: 17px; font-weight: 700;
  font-family: var(--is-font-b); border: none; cursor: pointer;
  box-shadow: var(--is-shadow-g); transition: all .2s; text-align: center; line-height: 1; margin-top: 20px;
}
#place_order:hover { background: var(--is-green-d); transform: translateY(-2px); box-shadow: var(--is-shadow-g-h); }

/* Resumo lateral do checkout */
.is-checkout-summary {
  background: var(--is-dark); border-radius: 24px; padding: 28px;
  position: sticky; top: 90px;
}
.is-checkout-summary h3 {
  font-family: var(--is-font-h); font-size: 17px; font-weight: 900;
  color: var(--is-cream); margin-bottom: 18px;
}
.is-checkout-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(242,240,235,.08);
}
.is-checkout-item:last-of-type { border-bottom: none; }
.is-checkout-item-img {
  width: 50px; height: 50px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: rgba(242,240,235,.1);
}
.is-checkout-item-img img { width:100%; height:100%; object-fit:cover; }
.is-checkout-item-name  { font-size: 13px; font-weight: 700; color: var(--is-cream); line-height: 1.3; }
.is-checkout-item-price { font-size: 11px; color: rgba(242,240,235,.5); margin-top: 3px; }
.is-checkout-sep { border: none; border-top: 1px solid rgba(242,240,235,.08); margin: 14px 0; }
.is-checkout-line {
  display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0;
}
.is-checkout-line span   { color: rgba(242,240,235,.5); }
.is-checkout-line strong { color: var(--is-cream); font-weight: 700; }
.is-checkout-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding-top: 14px;
  border-top: 1.5px solid rgba(242,240,235,.12);
}
.is-checkout-total-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(242,240,235,.4); font-weight: 700; }
.is-checkout-total-value { font-family: var(--is-font-h); font-size: 30px; font-weight: 900; color: var(--is-green); }

.is-checkout-secure {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 16px;
  padding: 12px; background: rgba(98,211,208,.08); border-radius: 10px;
}
.is-checkout-secure svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; color: var(--is-teal); }
.is-checkout-secure p { font-size: 11px; line-height: 1.5; color: rgba(242,240,235,.45); }

/* ============================================================
   PÁGINA DE AGRADECIMENTO
============================================================ */
.is-ty-hero {
  background: var(--is-dark); padding: 72px 56px;
  position: relative; overflow: hidden; text-align: center;
}
.is-ty-hero .is-grf.tl { position:absolute; top:-30px; left:-30px; width:300px; height:300px; opacity:.1; }
.is-ty-hero .is-grf.br { position:absolute; bottom:-40px; right:-40px; width:260px; height:260px; opacity:.09; }
.is-ty-hero-inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }

.is-ty-check {
  width: 72px; height: 72px; border-radius: 50%; background: var(--is-green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  animation: checkPop .7s cubic-bezier(.34,1.56,.64,1) .2s both;
}
.is-ty-check svg { width: 36px; height: 36px; color: #fff; }

.is-ty-hero h1 {
  font-family: var(--is-font-h); font-size: clamp(30px,4vw,52px); font-weight: 900;
  color: var(--is-cream); letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.06;
}
.is-ty-hero h1 em { font-style: normal; color: var(--is-green); }
.is-ty-hero p { font-size: 16px; line-height: 1.7; color: rgba(242,240,235,.6); max-width: 440px; margin: 0 auto; }

.is-ty-order-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(242,240,235,.08); border: 1px solid rgba(242,240,235,.14);
  border-radius: var(--is-pill); padding: 8px 22px; margin-top: 22px;
  font-size: 13px; font-weight: 600; color: rgba(242,240,235,.6);
}
.is-ty-order-badge strong { color: var(--is-cream); }

/* Impacto */
.is-ty-impact { padding: 56px 56px 0; max-width: 900px; margin: 0 auto; text-align: center; }
.is-ty-impact h2 {
  font-family: var(--is-font-h); font-size: clamp(22px,2.4vw,34px); font-weight: 900;
  color: var(--is-dark); letter-spacing: -.02em; margin-bottom: 6px;
}
.is-ty-impact > p { font-size: 14px; color: var(--is-muted); margin-bottom: 32px; }
.is-ty-impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.is-ty-impact-card {
  background: var(--is-dark); border-radius: 20px; padding: 28px 20px; text-align: center;
}
.is-ty-impact-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.is-ty-impact-num {
  font-family: var(--is-font-h); font-size: 30px; font-weight: 900;
  color: var(--is-green); line-height: 1; letter-spacing: -.03em; margin-bottom: 6px;
}
.is-ty-impact-lbl { font-size: 11px; color: rgba(242,240,235,.5); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* Detalhes do pedido */
.is-ty-details {
  max-width: 900px; margin: 0 auto; padding: 48px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.is-ty-box {
  background: #fff; border: 1.5px solid var(--is-border); border-radius: 20px; padding: 28px;
}
.is-ty-box h4 {
  font-family: var(--is-font-h); font-size: 15px; font-weight: 700;
  color: var(--is-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--is-border);
}
.is-ty-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 13px; border-bottom: 1px solid var(--is-border);
}
.is-ty-row:last-child { border-bottom: none; font-weight: 700; }
.is-ty-row span   { color: var(--is-muted); }
.is-ty-row strong { color: var(--is-dark); }

/* Compartilhar */
.is-ty-share { padding: 0 56px 28px; max-width: 900px; margin: 0 auto; text-align: center; }
.is-ty-share p { font-size: 14px; color: var(--is-muted); margin-bottom: 16px; }
.is-share-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.is-share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--is-pill); font-size: 13px; font-weight: 700;
  cursor: pointer; border: none; transition: all .2s; font-family: var(--is-font-b);
  text-decoration: none;
}
.is-share-wpp  { background: #25d366; color: #fff; }
.is-share-wpp:hover { background: #1da851; transform: translateY(-1px); }
.is-share-tw   { background: #1da1f2; color: #fff; }
.is-share-tw:hover { background: #0d8ecf; transform: translateY(-1px); }
.is-share-copy { background: #fff; color: var(--is-dark); border: 1.5px solid var(--is-border); }
.is-share-copy:hover { border-color: var(--is-green); color: var(--is-green); }
.is-share-btn svg { width: 16px; height: 16px; }

/* CTA verde */
.is-ty-cta {
  background: var(--is-green); padding: 56px; text-align: center;
  position: relative; overflow: hidden;
}
.is-ty-cta .is-grf.r { top:50%; right:60px; transform:translateY(-50%); width:200px; height:200px; opacity:.15; }
.is-ty-cta-inner { position: relative; z-index: 2; }
.is-ty-cta h2 {
  font-family: var(--is-font-h); font-size: clamp(22px,2.8vw,36px); font-weight: 900;
  color: #fff; letter-spacing: -.02em; margin-bottom: 10px;
}
.is-ty-cta p { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 26px; }
.is-ty-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.is-btn-whi-o {
  background: transparent; color: #fff;
  padding: 13px 32px; border-radius: var(--is-pill); font-size: 15px; font-weight: 700;
  font-family: var(--is-font-b); border: 2px solid rgba(255,255,255,.45);
  cursor: pointer; display: inline-block; transition: all .2s;
}
.is-btn-whi-o:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ============================================================
   WOOCOMMERCE — NOTICES + OVERRIDES GLOBAIS
============================================================ */
.woocommerce-notices-wrapper { padding: 0 56px; }

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border: none !important; border-radius: 12px !important;
  padding: 14px 20px 14px 44px !important; margin-bottom: 16px !important;
  font-size: 14px !important; font-family: var(--is-font-b) !important;
  position: relative; list-style: none !important;
}
.woocommerce-message::before { content: '✓'; position: absolute; left: 16px; top: 14px; font-weight: 700; }
.woocommerce-message { background: rgba(0,175,85,.1) !important; color: var(--is-dark) !important; border-left: 3px solid var(--is-green) !important; }
.woocommerce-error   { background: rgba(217,79,79,.08) !important; border-left: 3px solid #d94f4f !important; }
.woocommerce-info    { background: rgba(98,211,208,.1) !important;  border-left: 3px solid var(--is-teal) !important; }

.woocommerce-message a.button,
.woocommerce-error   a.button,
.woocommerce-info    a.button {
  background: var(--is-green) !important; color: #fff !important;
  border-radius: var(--is-pill) !important; padding: 8px 18px !important;
  font-size: 13px !important; font-weight: 700 !important; border: none !important;
  float: right; margin-left: 12px;
}

/* Botões WooCommerce genéricos */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--is-green); color: #fff; border-radius: var(--is-pill);
  padding: 12px 28px; font-family: var(--is-font-b); font-weight: 700; font-size: 14px;
  border: none; transition: all .2s; cursor: pointer; display: inline-block;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--is-green-d); color: #fff; transform: translateY(-1px);
}

/* Preço WooCommerce */
.woocommerce-Price-amount { font-family: var(--is-font-h); font-weight: 700; }
.woocommerce-Price-currencySymbol { font-size: .75em; margin-right: 1px; }

/* ============================================================
   SHOP / ARCHIVE — Grade de produtos (loop)
============================================================ */

/* Remove o float padrão do WooCommerce e aplica grid.
   O tema usa <main class="is-woo-main"> no lugar do wrapper .woocommerce padrão. */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  list-style: none !important;
  padding: 32px !important;
  margin: 0 !important;
  float: none !important;
  clear: both;
}

/* Remove o pseudo-elemento clearfix que o WooCommerce injeta */
ul.products::before,
ul.products::after { display: none !important; }

ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  clear: none !important;
  background: #fff;
  border-radius: var(--is-radius);
  border: 1.5px solid var(--is-border);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  display: flex !important;
  flex-direction: column;
}

ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,60,30,.12);
}

/* Imagem do card */
ul.products li.product > a:first-of-type {
  display: block;
  overflow: hidden;
  line-height: 0;
  border-radius: var(--is-radius) var(--is-radius) 0 0;
}

ul.products li.product a img {
  border-radius: 0 !important;
  object-fit: cover;
  width: 100% !important;
  height: 240px !important;
  transition: transform .4s ease;
  display: block;
  margin: 0 !important;
}

ul.products li.product:hover a img {
  transform: scale(1.04);
}

/* Área de conteúdo (título + preço + botão) */
ul.products li.product a:not(.button),
ul.products li.product > .price,
ul.products li.product > a.button {
  padding-left: 20px;
  padding-right: 20px;
}

/* Título */
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--is-font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--is-dark);
  padding: 14px 20px 2px !important;
  margin: 0 !important;
  line-height: 1.2;
}

/* Preço */
ul.products li.product .price {
  padding: 4px 20px 12px !important;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--is-muted);
  display: block;
  margin: 0 !important;
}

/* Botão "Doe agora" */
ul.products li.product a.button,
ul.products li.product a.add_to_cart_button {
  display: block !important;
  margin: auto 16px 16px !important;
  padding: 11px 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-align: center;
  border-radius: var(--is-pill) !important;
}

/* Oculta itens de categoria da grade (ex: "Oferta") */
ul.products li.product-category { display: none !important; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1024px) {
  ul.products { grid-template-columns: repeat(2,1fr) !important; padding: 24px !important; gap: 20px !important; }
  .is-product-hero      { grid-template-columns: 1fr; padding: 48px 32px; gap: 36px; }
  .is-product-stats     { grid-template-columns: repeat(2,1fr); }
  .is-product-body      { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
  .is-cart-layout       { grid-template-columns: 1fr; padding: 40px 24px; }
  .is-cart-summary      { position: static; }
  .is-checkout-layout   { grid-template-columns: 1fr; padding: 40px 24px; }
  .is-checkout-summary  { position: static; }
  .is-ty-details        { grid-template-columns: 1fr; padding: 40px 32px; }
  .is-footer-grid       { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  ul.products { grid-template-columns: 1fr !important; padding: 20px !important; gap: 16px !important; }
  .is-site-header       { padding: 14px 20px; }
  .is-nav               { display: none; }
  .woocommerce-breadcrumb,
  .is-breadcrumb        { padding: 12px 20px !important; }
  .is-trust-bar         { padding: 12px 20px; gap: 16px; }
  .is-strip             { padding: 18px 20px; }
  .is-amount-grid       { grid-template-columns: repeat(2,1fr); }
  .is-product-hero      { padding: 40px 20px 36px; }
  .is-product-stats     { grid-template-columns: repeat(2,1fr); }
  .is-cart-hero         { padding: 40px 20px; }
  .is-cart-layout       { padding: 32px 16px 60px; }
  .is-checkout-hero     { padding: 32px 20px; }
  .is-checkout-layout   { padding: 32px 16px 60px; }
  .is-ty-hero           { padding: 52px 20px; }
  .is-ty-impact         { padding: 40px 20px 0; }
  .is-ty-impact-grid    { grid-template-columns: 1fr; }
  .is-ty-details        { padding: 32px 20px; }
  .is-ty-share          { padding: 0 20px 24px; }
  .is-ty-cta            { padding: 48px 20px; }
  .is-site-footer       { padding: 48px 20px 24px; }
  .is-footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .woocommerce-notices-wrapper { padding: 0 20px; }
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last { width: 100%; display: block; margin-right: 0; }
}
