/*
Theme Name: VYRON
Theme URI: https://vyronbr.shop
Author: VYRON Mobilidade Elétrica
Author URI: https://vyronbr.shop
Description: Tema oficial VYRON — loja de mobilidade elétrica brasileira. Integração total com WooCommerce.
Version: 1.0.0
Requires at least: 6.3
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
License URI: https://vyronbr.shop/termos
Text Domain: vyron
Tags: e-commerce, woocommerce, custom-colors, custom-logo, full-width-template
*/

/* ═══════════════════════════════════════════════════════════
   VYRON Design System — tokens → reset → layout → type
   → buttons → header → footer → components → responsive
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:       #F3F0E8;
  --bg-alt:   #ECEADF;
  --white:    #FFFFFF;
  --border:   #E0DBD0;
  --green:    #1B6E3D;
  --green-dk: #145530;
  --green-lt: #E6F4ED;
  --orange:   #F75B00;
  --orange-lt:#FFF0E8;
  --yellow:   #FFD000;
  --dark:     #17150F;
  --text:     #1A1710;
  --text2:    #5A5448;
  --muted:    #9A9288;
  --display: 'Bricolage Grotesque', sans-serif;
  --sans:    'DM Sans', sans-serif;
  --mono:    'Space Mono', monospace;
  --r:    8px;
  --r-lg: 18px;
  --r-xl: 28px;
  --sh-sm: 0 2px 10px rgba(26,23,16,.07);
  --sh:    0 4px 22px rgba(26,23,16,.10);
  --sh-lg: 0 12px 44px rgba(26,23,16,.14);
  --w:     1160px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 28px;
}
.sec        { padding: 96px 0; }
.sec--white { background: var(--white); }
.sec--bg    { background: var(--bg); }
.sec--bgalt { background: var(--bg-alt); }
.sec--dark  { background: var(--dark); }
.sec--green { background: var(--green); }
.sec-hd { margin-bottom: 48px; }
.sec-hd--row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.sec-desc { max-width: 460px; margin-top: 12px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.t-display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
}
.t-h2 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}
.t-h3 {
  font-family: var(--display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2; color: var(--text);
}
.t-white  { color: #fff !important; }
.t-green  { color: var(--green); }
.t-orange { color: var(--orange); }
.t-yellow { color: var(--yellow); }
.t-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.t-label::before {
  content: ''; display: block;
  width: 18px; height: 2px;
  background: currentColor; border-radius: 1px; flex-shrink: 0;
}
.t-label--orange { color: var(--orange); }
.t-label--yellow { color: var(--yellow); }
.t-label--muted  { color: var(--muted); }
.body-lg { font-size: 17px; line-height: 1.78; color: var(--text2); }
.body-md { font-size: 15px; line-height: 1.72; color: var(--text2); }
.body-sm { font-size: 13px; line-height: 1.65; color: var(--text2); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-green       { background: var(--green);  color: #fff; }
.btn-green:hover { background: var(--green-dk); box-shadow: 0 6px 22px rgba(27,110,61,.28); }
.btn-orange       { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #dd5000; box-shadow: 0 6px 22px rgba(247,91,0,.3); }
.btn-outline      { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover{ border-color: var(--green); color: var(--green); background: var(--green-lt); }
.btn-white        { background: #fff; color: var(--green); }
.btn-white:hover  { background: var(--green-lt); box-shadow: var(--sh); }
.btn-dark         { background: var(--dark); color: #fff; }
.btn-dark:hover   { background: #2a2720; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* WooCommerce button overrides */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 100px;
  background: var(--green); color: #fff;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
}
.woocommerce .button.alt,
.woocommerce button.button.alt {
  background: var(--orange);
}
.woocommerce .button.alt:hover {
  background: #dd5000;
}

/* ── ANNOUNCE BAR ────────────────────────────────────────── */
.announce {
  background: var(--green-dk);
  text-align: center; padding: 9px 28px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.9); letter-spacing: .01em;
}
.announce a { color: var(--yellow); font-weight: 600; }
.announce strong { color: #fff; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-hdr {
  position: sticky; top: 0; z-index: 300;
  background: rgba(243,240,232,.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.hdr-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 24px;
}
.logo {
  font-family: var(--display); font-optical-sizing: auto;
  font-size: 22px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--text); display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; }
.logo-pip { display: none; }
.hdr-nav {
  display: flex; align-items: center; gap: 28px;
  flex: 1; justify-content: center;
}
.hdr-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--text2); transition: color .18s;
}
.hdr-nav a:hover, .hdr-nav a.active, .hdr-nav .current-menu-item > a { color: var(--green); }
.hdr-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background .18s, border-color .18s;
  position: relative; cursor: pointer;
}
.icon-btn:hover { background: var(--white); border-color: var(--green); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 16px; height: 16px;
  background: var(--orange); color: #fff;
  font-size: 9px; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 1px; transition: all .3s;
}
.mob-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px; z-index: 299; box-shadow: var(--sh);
}
.mob-menu.open { display: flex; flex-direction: column; gap: 2px; }
.mob-menu a {
  font-size: 16px; font-weight: 500; color: var(--text2);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .18s;
}
.mob-menu a:hover { color: var(--green); }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker { background: var(--dark); overflow: hidden; padding: 11px 0; }
.ticker-track { display: flex; width: max-content; animation: tick 28s linear infinite; }
.ti {
  font-family: var(--display); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--yellow); padding: 0 28px; white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.ti::after { content: '⚡'; color: var(--orange); font-size: 11px; }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); padding: 20px 0 16px;
}
.breadcrumb a { color: var(--muted); transition: color .18s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .cur { color: var(--text); }

/* WooCommerce breadcrumb */
.woocommerce-breadcrumb {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); padding: 20px 0 16px;
}

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.prod-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; position: relative;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.prod-img {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; flex-shrink: 0; overflow: hidden;
}
.prod-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.prod-img-g { background: linear-gradient(140deg,#d6eddf,#b4d9c4); }
.prod-img-o { background: linear-gradient(140deg,#ffe8d4,#ffd0b0); }
.prod-img-b { background: linear-gradient(140deg,#d8e9ff,#b8d4ff); }
.prod-img-y { background: linear-gradient(140deg,#fff5cc,#ffe88a); }
.prod-img-p { background: linear-gradient(140deg,#f0e8ff,#dcc8ff); }
.prod-tag {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .05em; padding: 3px 9px; border-radius: 100px;
}
.prod-tag--new  { background: var(--green);  color: #fff; }
.prod-tag--sale { background: var(--orange); color: #fff; }
.prod-tag--hot  { background: var(--yellow); color: var(--dark); }
.prod-tag--best { background: var(--dark);   color: #fff; }
.prod-fav {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; background: rgba(255,255,255,.85);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 13px; z-index: 2;
  transition: background .18s; cursor: pointer;
}
.prod-fav:hover { background: #fff; }
.prod-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-cat {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 5px;
}
.prod-name {
  font-family: var(--display); font-size: 17px; font-weight: 700;
  letter-spacing: -.02em; color: var(--text); margin-bottom: 6px; line-height: 1.2;
}
.prod-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.spec-chip {
  font-size: 11px; font-family: var(--mono);
  background: var(--bg); color: var(--text2);
  padding: 3px 8px; border-radius: 100px; border: 1px solid var(--border);
}
.prod-stars { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.stars-ico { color: var(--orange); font-size: 12px; letter-spacing: 1px; }
.stars-n   { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.prod-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto;
}
.prod-price {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--text); letter-spacing: -.02em;
}
.prod-price-old { font-size: 12px; color: var(--muted); text-decoration: line-through; margin-top: 1px; }
.add-btn {
  width: 36px; height: 36px; background: var(--green); color: #fff;
  border-radius: 50%; border: none; display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  transition: background .18s, transform .18s; cursor: pointer;
}
.add-btn:hover { background: var(--green-dk); transform: scale(1.08); }
.card-link-overlay {
  position: absolute; inset: 0; z-index: 1; border-radius: var(--r-lg);
}

/* WooCommerce product loop */
.woocommerce ul.products { margin: 0; padding: 0; }
.woocommerce ul.products li.product { margin: 0; padding: 0; list-style: none; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--display); font-size: 17px; font-weight: 700;
  letter-spacing: -.02em; color: var(--text); padding: 0; margin-bottom: 6px;
}
.woocommerce ul.products li.product .price {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--text); letter-spacing: -.02em;
}
.woocommerce ul.products li.product ins { text-decoration: none; }
.woocommerce ul.products li.product del { color: var(--muted); font-size: 13px; }

/* ── CHIPS / TAGS ────────────────────────────────────────── */
.chip-green {
  display: inline-flex; align-items: center;
  font-size: 11px; font-family: var(--mono);
  background: var(--green-lt); color: var(--green);
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(27,110,61,.14); letter-spacing: .04em;
}
.chip-orange { background: var(--orange-lt); color: var(--orange); border-color: rgba(247,91,0,.15); }
.chip-dark   { background: rgba(23,21,15,.08); color: var(--text2); border-color: var(--border); }

/* ── REVIEW CARDS ────────────────────────────────────────── */
.rev-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.rev-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.rev-text { font-size: 14px; color: var(--text2); line-height: 1.7; flex: 1; }
.rev-text em { color: var(--green); font-style: normal; font-weight: 600; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt); display: flex;
  align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.rev-name { font-size: 14px; font-weight: 600; color: var(--text); }
.rev-city { font-size: 12px; color: var(--muted); }
.rev-badge {
  font-family: var(--mono); font-size: 10px;
  background: var(--green-lt); color: var(--green);
  padding: 2px 8px; border-radius: 100px;
  border: 1px solid rgba(27,110,61,.14); letter-spacing: .05em;
  margin-left: auto; align-self: flex-start;
}

/* ── FORM ELEMENTS ───────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-input, .form-select, .form-textarea,
.woocommerce .input-text,
.woocommerce textarea,
.woocommerce select {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 13px 16px; font-family: var(--sans); font-size: 15px;
  color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-textarea:focus,
.woocommerce .input-text:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,110,61,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ts-item { display: flex; align-items: center; gap: 12px; padding: 0 20px; border-right: 1px solid var(--border); }
.ts-item:last-child { border-right: none; }
.ts-ico { font-size: 28px; flex-shrink: 0; width: 44px; height: 44px; background: var(--green-lt); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.ts-copy h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ts-copy p  { font-size: 12px; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; padding: 22px 0;
  text-align: left; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; cursor: pointer;
  font-family: var(--display); font-size: 17px; font-weight: 600;
  letter-spacing: -.015em; color: var(--text); transition: color .18s;
}
.faq-q:hover { color: var(--green); }
.faq-ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: background .2s, transform .3s; color: var(--text2);
}
.faq-item.open .faq-ico { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; font-size: 15px; color: var(--text2); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.nl-card {
  background: var(--green); border-radius: var(--r-xl);
  padding: 64px 56px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; position: relative; overflow: hidden;
}
.nl-b1 { position:absolute;width:380px;height:380px;background:rgba(255,255,255,.05);border-radius:50%;right:-80px;top:-80px;pointer-events:none; }
.nl-b2 { position:absolute;width:180px;height:180px;background:rgba(255,208,0,.09);border-radius:50%;bottom:-40px;left:40%;pointer-events:none; }
.nl-l, .nl-r { position:relative;z-index:2; }
.nl-l h2 { margin-bottom: 14px; }
.nl-l p  { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.78; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-lbl { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); margin-bottom: 7px; }
.nl-input {
  width: 100%; background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.22); border-radius: 100px;
  padding: 15px 22px; font-family: var(--sans); font-size: 15px;
  color: #fff; outline: none; transition: border-color .2s, background .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.44); }
.nl-input:focus { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.2); }
.nl-privacy { font-size: 12px; color: rgba(255,255,255,.48); text-align: center; }

/* ── FILTER BAR ──────────────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; padding: 8px 16px;
  border-radius: 100px; background: var(--white);
  border: 1.5px solid var(--border); color: var(--text2); cursor: pointer; transition: all .18s;
}
.filter-chip:hover { border-color: var(--green); color: var(--green); }
.filter-chip.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── PRODUCTS GRID ───────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.woocommerce-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; list-style: none; padding: 0; margin: 0;
}

/* ── RATING BARS ─────────────────────────────────────────── */
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rating-lbl { font-size: 13px; color: var(--text2); min-width: 130px; }
.rating-bar-wrap { flex: 1; height: 6px; background: var(--bg-alt); border-radius: 3px; overflow: hidden; }
.rating-bar { height: 100%; background: var(--green); border-radius: 3px; transition: width 1s ease; }
.rating-val { font-family: var(--mono); font-size: 12px; color: var(--text); min-width: 28px; text-align: right; }

/* ── PAGINATION ──────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; }
.pg-btn {
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--text2); cursor: pointer; transition: all .18s;
}
.pg-btn:hover, .pg-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--dark); color: #fff; padding: 14px 20px;
  border-radius: var(--r); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-lg); transform: translateY(80px); opacity: 0;
  transition: transform .3s ease, opacity .3s ease; z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.on { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-ftr { background: var(--dark); color: rgba(255,255,255,.75); padding: 64px 0 32px; }
.ftr-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px;
}
.ftr-brand { }
.ftr-brand .logo, .ftr-brand .ftr-logo-link { display: inline-block; margin-bottom: 14px; }
.ftr-brand .logo { color: #fff !important; }
.ftr-logo-img { width: 160px; height: auto; display: block; }
.ftr-brand p { font-size: 13px; color: rgba(255,255,255,.44); line-height: 1.7; margin-bottom: 20px; }
.soc-row { display: flex; gap: 8px; }
.soc {
  width: 34px; height: 34px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background .2s, border-color .2s;
}
.soc:hover { background: var(--green); border-color: var(--green); }
.ftr-col h5 {
  font-size: 11px; font-family: var(--mono); letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px;
}
.ftr-col ul { display: flex; flex-direction: column; gap: 9px; }
.ftr-col ul a { font-size: 13px; color: rgba(255,255,255,.44); transition: color .18s; }
.ftr-col ul a:hover { color: #fff; }
.ftr-bot {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.ftr-slogan {
  font-family: var(--display); font-size: 17px; font-weight: 700;
  letter-spacing: -.015em; color: rgba(255,255,255,.32);
}
.ftr-slogan em { font-style: normal; color: var(--yellow); }
.ftr-legal { display: flex; gap: 20px; font-size: 12px; color: rgba(255,255,255,.32); flex-wrap: wrap; }
.ftr-legal a:hover { color: #fff; }

/* ── CART & FAV DRAWERS ──────────────────────────────────── */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(23,21,15,.45); opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--white); z-index: 401; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(23,21,15,.16);
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.drawer-title { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; transition: background .18s;
}
.drawer-close:hover { background: var(--border); }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 14px;
  color: var(--muted); font-size: 14px; text-align: center;
}
.drawer-empty-ico { font-size: 52px; opacity: .5; }
.cart-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.ci-img {
  width: 64px; height: 64px; border-radius: var(--r);
  background: linear-gradient(135deg,#ffe8d4,#ffc8a0);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0; overflow: hidden;
}
.ci-img img { width:100%;height:100%;object-fit:cover; }
.ci-body { flex: 1; min-width: 0; }
.ci-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-price { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--orange); letter-spacing: -.02em; }
.ci-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.ci-qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; transition: background .15s;
}
.ci-qty-btn:hover { background: var(--border); }
.ci-qty-n { font-family: var(--mono); font-size: 13px; font-weight: 700; min-width: 18px; text-align: center; }
.ci-remove { font-size: 16px; cursor: pointer; color: var(--muted); padding: 4px; transition: color .15s; flex-shrink: 0; }
.ci-remove:hover { color: var(--orange); }
.drawer-footer { padding: 16px 24px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-total-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cart-total-lbl { font-size: 14px; color: var(--text2); }
.cart-total-val { font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -.025em; }
.cart-pix { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.fav-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.fav-item:last-child { border-bottom: none; }
.fi-img {
  width: 64px; height: 64px; border-radius: var(--r);
  background: linear-gradient(135deg,#ffe8d4,#ffc8a0);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.fi-body { flex: 1; min-width: 0; }
.fi-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.fi-price { font-size: 14px; color: var(--orange); font-weight: 700; font-family: var(--display); }
.fi-actions { display: flex; gap: 8px; margin-top: 8px; }
.fi-remove { font-size: 14px; cursor: pointer; color: var(--muted); padding: 4px; transition: color .15s; }
.fi-remove:hover { color: var(--orange); }
.icon-btn.has-items { border-color: var(--green); }

/* ── WOOCOMMERCE SINGLE PRODUCT ──────────────────────────── */
.woocommerce div.product .woocommerce-product-gallery { margin-bottom: 0; }
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--display); font-size: 32px; font-weight: 800;
  color: var(--text); letter-spacing: -.03em;
}
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .cart { margin-top: 24px; }
.woocommerce div.product form.cart .qty {
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 10px 14px; font-size: 16px; width: 80px;
  font-family: var(--display); font-weight: 700;
}
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 2px solid var(--border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none; background: none; border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--display); font-size: 14px; font-weight: 600;
  color: var(--muted); padding: 13px 22px; display: block;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color .18s, border-color .18s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--green); border-bottom-color: var(--green); background: none;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 32px 0; border: none; background: none;
}

/* WooCommerce notices */
.woocommerce-message, .woocommerce-info {
  background: var(--green-lt); border-top-color: var(--green);
  color: var(--text); font-size: 14px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .nl-card { grid-template-columns: 1fr; padding: 48px 36px; gap: 36px; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sec { padding: 72px 0; }
  .hdr-nav { display: none; }
  .hdr-right .btn { display: none; }
  .hamburger { display: flex; }
  .trust-strip-inner { grid-template-columns: repeat(2,1fr); }
  .ts-item { padding: 0 12px; }
  .ftr-top { grid-template-columns: 1fr; gap: 28px; }
  .ftr-bot { flex-direction: column; align-items: flex-start; }
  .nl-card { padding: 40px 28px; }
}
@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .woocommerce-products-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .nl-card { padding: 36px 24px; }
}

/* ── Newsletter CF7 fix ── */
.wpcf7-form input[type="email"] {
  width:100%;background:rgba(255,255,255,.14);
  border:1.5px solid rgba(255,255,255,.22);border-radius:100px;
  padding:15px 22px;font-family:var(--sans);font-size:15px;color:#fff;
  outline:none;margin-bottom:12px;
}
.wpcf7-form input[type="email"]::placeholder{color:rgba(255,255,255,.44);}
.wpcf7-form input[type="submit"]{
  width:100%;background:#fff;color:var(--green);
  border:none;border-radius:100px;padding:16px;
  font-family:var(--sans);font-size:15px;font-weight:600;cursor:pointer;
}
.wpcf7-form input[type="submit"]:hover{background:var(--green-lt);}
.wpcf7-not-valid-tip,.wpcf7-response-output{
  color:rgba(255,255,255,.85)!important;
  border-color:rgba(255,255,255,.3)!important;
  font-size:13px;margin-top:8px;border-radius:var(--r)!important;
  background:rgba(255,255,255,.1)!important;padding:8px 14px!important;
}

/* ── WooCommerce Reviews ── */
#reviews { padding: 0; }
.woocommerce-Reviews-title { font-family: var(--display); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.comment-form-rating label,
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
.comment-form-rating .stars a { color: var(--orange); font-size: 20px; }
#comment, #author, #email {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 13px 16px; font-family: var(--sans); font-size: 15px;
  color: var(--text); outline: none; margin-bottom: 16px;
  transition: border-color .2s;
}
#comment:focus, #author:focus, #email:focus { border-color: var(--green); }
#comment { min-height: 120px; resize: vertical; }
.form-submit #submit {
  background: var(--green); color: #fff; border: none;
  border-radius: 100px; padding: 13px 32px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .2s;
}
.form-submit #submit:hover { background: var(--green-dk); }
.woocommerce-noreviews { color: var(--muted); font-size: 14px; }

/* ── WooCommerce Reviews / Avaliações ── */
#reviews { padding: 0; margin-top: 0; }
.woocommerce-Reviews-title { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -.02em; color: var(--text); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.woocommerce #reviews #comments ol.commentlist { padding: 0; margin: 0 0 40px; list-style: none; }
.woocommerce #reviews #comments ol.commentlist li { padding: 0; margin: 0 0 16px; background: none; border: none; }
.woocommerce #reviews #comments ol.commentlist li .comment_container { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.woocommerce #reviews #comments ol.commentlist li img.avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--border); }
.woocommerce #reviews #comments ol.commentlist li .comment-text { flex: 1; border: none; padding: 0; border-radius: 0; background: none; }
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .06em; margin-bottom: 8px; }
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong { font-size: 14px; font-weight: 600; color: var(--text); font-family: var(--sans); letter-spacing: 0; }
.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating { float: none; margin-bottom: 10px; }
.woocommerce #reviews #comments ol.commentlist li .comment-text .description p { font-size: 14px; color: var(--text2); line-height: 1.75; margin: 0; }
.woocommerce .star-rating { color: var(--orange); font-size: 14px; }
.woocommerce .star-rating span::before { color: var(--orange); }
#review_form_wrapper { margin-top: 40px; }
#review_form #respond { background: var(--bg); border-radius: var(--r-xl); padding: 32px; border: 1px solid var(--border); }
#review_form #respond .comment-reply-title { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.02em; color: var(--text); margin-bottom: 6px; display: block; }
#review_form #respond .comment-notes { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
#review_form #respond .comment-form-rating label { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 8px; }
#review_form #respond .comment-form-rating .stars { display: flex; gap: 4px; margin-bottom: 20px; }
#review_form #respond .comment-form-rating .stars a { font-size: 28px; color: var(--border); transition: color .15s; text-decoration: none; line-height: 1; }
#review_form #respond .comment-form-rating .stars a:hover, #review_form #respond .comment-form-rating .stars.selected a { color: var(--orange); }
#review_form #respond .comment-form-comment label, #review_form #respond .comment-form-author label, #review_form #respond .comment-form-email label { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
#review_form #respond textarea#comment, #review_form #respond input#author, #review_form #respond input#email { width: 100%; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 13px 16px; font-family: var(--sans); font-size: 15px; color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; }
#review_form #respond textarea#comment:focus, #review_form #respond input#author:focus, #review_form #respond input#email:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(27,110,61,.1); }
#review_form #respond textarea#comment { min-height: 120px; resize: vertical; margin-bottom: 16px; }
#review_form #respond input#author, #review_form #respond input#email { margin-bottom: 16px; }
#review_form #respond .comment-form-author, #review_form #respond .comment-form-email { display: inline-block; width: calc(50% - 8px); }
#review_form #respond .comment-form-author { margin-right: 16px; }
#review_form #respond .comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
#review_form #respond .comment-form-cookies-consent input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--green); flex-shrink: 0; }
#review_form #respond .comment-form-cookies-consent label { font-size: 13px; color: var(--muted); line-height: 1.6; }
#review_form #respond .form-submit #submit { background: var(--green); color: #fff; border: none; border-radius: 100px; padding: 14px 36px; font-family: var(--sans); font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s, transform .2s; }
#review_form #respond .form-submit #submit:hover { background: var(--green-dk); transform: translateY(-2px); }
.woocommerce-review__verified { display: inline-flex; align-items: center; font-family: var(--mono); font-size: 10px; background: var(--green-lt); color: var(--green); padding: 2px 8px; border-radius: 100px; border: 1px solid rgba(27,110,61,.14); letter-spacing: .05em; margin-left: 8px; }
.woocommerce-noreviews { color: var(--muted); font-size: 14px; padding: 24px; text-align: center; background: var(--bg); border-radius: var(--r); margin-bottom: 24px; }
@media (max-width: 640px) { #review_form #respond .comment-form-author, #review_form #respond .comment-form-email { display: block; width: 100%; margin-right: 0; } }

/* ── Fav button fixes ── */
.prod-fav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  color: #5A5448;
  line-height: 1 !important;
  text-align: center !important;
}
#fav-icon-btn { color: #e05; font-size: 18px; }

/* ── Fav fixes v2 ── */
.prod-fav {
  position: absolute !important;
  top: 10px !important; right: 10px !important;
  width: 32px !important; height: 32px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.92) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  z-index: 2 !important;
  padding: 0 !important;
  border: none !important;
  color: #3a3530 !important;
}
.prod-fav::before {
  content: '♡';
  font-size: 16px;
  color: #3a3530;
  line-height: 1;
}
.prod-fav:not(.faved) { font-size: 0 !important; }
.prod-fav.faved::before { content: '♥'; color: #e00; }

#fav-icon-btn {
  color: #c0185a !important;
  font-size: 18px !important;
}

/* ── Nav fav icon red heart ── */
#fav-icon-btn::after {
  content: '♥';
  font-size: 16px;
  color: #e00030;
  line-height: 1;
}
#fav-icon-btn { font-size: 0 !important; width: 38px; height: 38px; }
