:root {
  --green-950: #0b3f26;
  --green-900: #105231;
  --green-800: #176b3d;
  --green-700: #1c7c46;
  --green-600: #269955;
  --green-100: #eaf5ee;
  --cream: #f7f4ec;
  --ink: #152019;
  --muted: #667169;
  --line: #dfe5e1;
  --yellow: #f3be26;
  --shadow: 0 12px 35px rgba(14, 55, 33, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
button, input, select { font: inherit; }
button { line-height: 1.2; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(38,153,85,.28); outline-offset: 2px; }

.page-section { width: min(1220px, calc(100% - 40px)); margin: 0 auto; }
.legal-bar { height: 29px; display: grid; place-items: center; background: var(--green-900); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.main-header { width: min(1290px, calc(100% - 42px)); min-height: 190px; margin: auto; display: grid; grid-template-columns: 250px 1fr 130px; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; width: max-content; }
.brand-logo { height: 174px; width: auto; object-fit: contain; }
.search { height: 44px; border: 1px solid var(--line); background: #f8faf8; border-radius: 5px; display: flex; align-items: center; overflow: hidden; box-shadow: inset 0 1px 2px rgba(15, 54, 31, .03); }
.search input { width: 100%; height: 100%; border: 0; outline: 0; background: transparent; padding: 0 16px; font-size: 13px; color: var(--ink); }
.search button { width: 52px; height: 100%; border: 0; color: var(--green-700); background: transparent; cursor: pointer; font-size: 28px; line-height: 1; }
.cart-link { position: relative; display: flex; justify-content: flex-end; align-items: center; gap: 6px; font-size: 13px; }
.cart-icon { font-size: 22px; filter: grayscale(1); }
.cart-count { position: absolute; top: -10px; right: 46px; min-width: 19px; height: 19px; border-radius: 12px; padding: 0 5px; display: grid; place-items: center; color: #fff; background: var(--green-600); font-size: 10px; font-weight: 800; }
.main-nav { height: 48px; border-bottom: 3px solid var(--green-800); display: flex; justify-content: center; align-items: center; gap: 46px; }
.main-nav a { position: relative; padding: 15px 3px 13px; color: #6b726e; text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.main-nav a.active, .main-nav a:hover { color: var(--green-700); }
.main-nav a.active::after { content: ""; position: absolute; bottom: 6px; left: 50%; width: 22px; height: 2px; border-radius: 5px; background: var(--green-600); transform: translateX(-50%); }

.hero { position: relative; height: clamp(470px, 43vw, 650px); overflow: hidden; background: var(--green-950); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 43, 24, .84) 0%, rgba(8, 49, 27, .58) 37%, rgba(8, 49, 27, .05) 72%); }
.hero > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; z-index: 1; left: max(35px, calc((100% - 1220px) / 2)); top: 50%; width: min(560px, 80%); color: #fff; transform: translateY(-50%); }
.hero-overlay > span { display: inline-block; margin-bottom: 20px; font-size: 11px; font-weight: 800; letter-spacing: .19em; color: #d6e59a; }
.hero-overlay h1 { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 72px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.hero-overlay p { max-width: 500px; margin: 0 0 30px; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.87); }
.hero-overlay a, .quality-copy > a { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 24px; background: #fff; color: var(--green-900); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; border-radius: 4px; transition: .2s ease; }
.hero-overlay a:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }

.page-section:not(.quality) { padding-top: 48px; padding-bottom: 54px; }
.section-title { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.section-title h2 { margin: 0; font-size: 27px; letter-spacing: -.045em; }
.section-title h2 + span { display: block; width: 48px; height: 4px; margin-top: 8px; border-radius: 6px; background: var(--green-600); }
.section-title > a { min-height: 34px; padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 4px; background: #fff; font-size: 11px; font-weight: 700; }
.section-title > a:hover { border-color: var(--green-600); color: var(--green-700); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.featured-grid { grid-template-columns: repeat(4, 1fr); }
.product-card { position: relative; min-width: 0; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; box-shadow: 0 3px 12px rgba(16, 57, 34, .05); transition: .22s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c7d7cc; }
.product-image { position: relative; height: 245px; display: grid; place-items: center; background: linear-gradient(#fff, #fbfcfb); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .25s ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.discount { position: absolute; z-index: 1; top: 11px; left: 11px; padding: 5px 8px; border-radius: 15px; background: #19ad50; color: #fff; font-size: 9px; font-weight: 800; }
.product-info { flex: 1; display: flex; flex-direction: column; padding: 15px 15px 17px; }
.product-info > a { display: block; }
.product-info h3 { min-height: 56px; margin: 0 0 7px; color: #273029; font-size: 13px; line-height: 1.42; }
.rating { margin-bottom: 6px; color: var(--yellow); font-size: 11px; letter-spacing: .05em; }
.rating small { color: #8a928d; letter-spacing: 0; }
.price-row { display: flex; align-items: center; gap: 9px; }
.price-row strong { color: #19ad50; font-size: 18px; }
.price-row del { color: #919792; font-size: 11px; }
.product-info > p { margin: 3px 0 13px; color: #7d857f; font-size: 10px; }
.product-info > button { width: 100%; min-height: 38px; margin-top: auto; border: 0; border-radius: 4px; background: var(--green-700); color: #fff; font-size: 11px; font-weight: 800; cursor: pointer; }
.product-info > button:hover { background: var(--green-900); }
.soft-section { background: linear-gradient(180deg, #f8fbf9, #eef6f1); }
.green-section { background: linear-gradient(180deg, var(--green-900), #0c4a2d); color: #fff; }
.green-section .section-title > a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.26); color: #fff; }
.compact-grid .product-image { height: 215px; }

.quality { padding: 76px 0; display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; gap: 0; }
.quality-image { min-height: 530px; overflow: hidden; border-radius: 8px 0 0 8px; }
.quality-image img { width: 100%; height: 100%; object-fit: cover; }
.quality-copy { padding: 58px 56px; background: var(--cream); border-radius: 0 8px 8px 0; }
.eyebrow { display: block; color: var(--green-700); font-size: 10px; letter-spacing: .18em; font-weight: 900; }
.quality-copy h2 { margin: 14px 0 22px; font-family: Georgia, "Times New Roman", serif; color: var(--green-950); font-size: clamp(34px, 3.4vw, 51px); line-height: 1.06; font-weight: 500; letter-spacing: -.035em; }
.quality-copy p { color: #56615a; font-size: 14px; line-height: 1.75; }
.quality-copy ul { display: grid; gap: 13px; list-style: none; padding: 9px 0 21px; color: #3d4a42; font-size: 13px; }
.quality-copy li { display: flex; gap: 11px; align-items: center; }
.quality-copy li b { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #d7eadc; color: var(--green-700); }
.quality-copy > a { background: var(--green-800); color: #fff; }

.catalog-page { min-height: 700px; }
.catalog-heading, .cart-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.catalog-heading h1, .cart-heading h1 { margin: 6px 0 0; font-size: 42px; letter-spacing: -.05em; }
.catalog-heading p, .cart-heading > span { color: var(--muted); font-size: 12px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-row button { padding: 10px 16px; border: 1px solid var(--line); background: #fff; border-radius: 4px; color: #5a655e; font-size: 11px; font-weight: 700; cursor: pointer; }
.filter-row button.selected { color: #fff; background: var(--green-800); border-color: var(--green-800); }
.catalog-grid { grid-template-columns: repeat(3, 1fr); }
.empty-results { min-height: 320px; padding: 60px 20px; display: grid; place-items: center; align-content: center; text-align: center; border: 1px solid var(--line); border-radius: 8px; background: #f9fbf9; }
.empty-results > span { font-size: 44px; }
.empty-results h2 { margin: 12px 0 5px; }
.empty-results p { margin: 0; color: var(--muted); font-size: 12px; }
.empty-results a { margin-top: 18px; min-height: 40px; padding: 0 18px; display: inline-grid; place-items: center; border-radius: 4px; background: var(--green-800); color: #fff; font-size: 11px; font-weight: 800; }

.breadcrumbs { margin: 0 0 26px; display: flex; flex-wrap: wrap; gap: 8px; color: #78817b; font-size: 11px; }
.breadcrumbs a:hover { color: var(--green-700); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: start; }
.gallery-main { height: 565px; display: grid; place-items: center; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumbs button { width: 74px; height: 74px; padding: 4px; border: 1px solid var(--line); background: #fff; border-radius: 4px; cursor: pointer; overflow: hidden; }
.thumbs button.selected { border: 2px solid var(--green-700); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.buy-box { padding-top: 8px; }
.stock { display: inline-flex; color: var(--green-600); font-size: 11px; font-weight: 700; }
.buy-box h1 { margin: 11px 0 5px; font-size: clamp(31px, 3vw, 43px); line-height: 1.05; letter-spacing: -.05em; }
.buy-box h1 i { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-left: 8px; border-radius: 50%; background: #1971e7; color: #fff; font-size: 12px; font-style: normal; vertical-align: middle; }
.sku { margin: 0; color: #a1a7a3; font-size: 11px; }
.buy-divider { height: 1px; margin: 24px 0 26px; background: var(--line); }
.price-label { color: #404941; font-size: 12px; }
.old-price { margin: 7px 0 2px; color: #858c87; font-size: 12px; text-decoration: line-through; }
.current-price { display: flex; align-items: center; gap: 10px; color: #15ad4c; font-size: 42px; font-weight: 900; letter-spacing: -.045em; }
.current-price span { padding: 5px 9px; border-radius: 15px; background: #19ad50; color: #fff; font-size: 10px; letter-spacing: 0; }
.installments { margin: 5px 0 10px; font-size: 13px; }
.saving, .pix { display: table; margin-bottom: 7px; padding: 6px 10px; border-radius: 4px; background: #1eb253; color: #fff; font-size: 10px; font-weight: 700; }
.pix { background: #e9f4ff; color: #247cc5; border: 1px solid #b9d5ee; }
.buy-button { width: 100%; height: 57px; margin: 12px 0 18px; border: 0; border-radius: 5px; background: #0d8529; color: #fff; font-size: 14px; font-weight: 900; letter-spacing: .02em; cursor: pointer; box-shadow: 0 8px 18px rgba(13,133,41,.17); }
.buy-button:hover { background: #096f23; }
.freight-calculator { margin: 0 0 14px; padding: 18px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.freight-calculator > label { display: grid; gap: 3px; margin-bottom: 11px; color: var(--green-950); font-size: 12px; }
.freight-calculator > label small { color: var(--muted); font-size: 10px; font-weight: 400; }
.cep-row { display: grid; grid-template-columns: 1fr 140px; gap: 8px; }
.cep-row input { width: 100%; min-width: 0; height: 43px; padding: 0 12px; border: 1px solid #cfd9d2; border-radius: 4px; outline: 0; }
.cep-row input:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(38,153,85,.08); }
.cep-row button { min-height: 43px; border: 1px solid var(--green-800); border-radius: 4px; background: #fff; color: var(--green-800); font-size: 9px; font-weight: 900; cursor: pointer; }
.cep-row button:hover { background: var(--green-100); }
.cep-row button:disabled { opacity: .65; cursor: wait; }
.cep-error { margin: 8px 0 0; color: #b52c2c; font-size: 10px; }
.freight-destination { margin: 10px 0 0; color: var(--green-700); font-size: 10px; font-weight: 700; }
.freight-options { display: grid; gap: 7px; margin-top: 13px; }
.freight-options label { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 8px; min-height: 58px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 5px; cursor: pointer; }
.freight-options label.selected { border-color: var(--green-600); background: #f3faf5; box-shadow: inset 0 0 0 1px rgba(38,153,85,.15); }
.freight-options input { accent-color: var(--green-700); }
.freight-options span { display: grid; gap: 3px; font-size: 11px; }
.freight-options small { color: var(--muted); font-size: 9px; }
.freight-options strong { color: var(--green-800); font-size: 12px; }
.live-arrival-guarantee { display: flex; gap: 12px; align-items: center; margin: 0 0 14px; padding: 15px 17px; border: 1px solid #b9d9c4; border-radius: 6px; background: #eef8f1; }
.live-arrival-guarantee > span { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #d9eddf; font-size: 18px; }
.live-arrival-guarantee p { display: grid; gap: 4px; margin: 0; color: var(--green-950); font-size: 11px; }
.live-arrival-guarantee small { color: #53675a; font-size: 10px; line-height: 1.45; }
.shipping-box { display: grid; gap: 15px; padding: 20px 22px; border: 1px solid var(--line); background: #f9fbf9; border-radius: 6px; }
.shipping-box > div { display: flex; gap: 14px; align-items: center; }
.shipping-box > div > b { width: 25px; color: var(--green-700); font-size: 16px; }
.shipping-box span { display: grid; font-size: 12px; font-weight: 700; }
.shipping-box small { margin-top: 3px; color: #8a928d; font-size: 10px; font-weight: 400; }
.product-description { background: #f7faf8; border-block: 1px solid var(--line); }
.description-inner { max-width: 900px; }
.description-copy { color: #47534b; font-size: 14px; line-height: 1.8; }
.description-copy h2 { color: var(--green-950); font-size: 24px; }
.description-copy h3 { color: var(--green-900); font-size: 17px; text-transform: uppercase; letter-spacing: .04em; }
.description-copy li { margin-bottom: 6px; }
.description-copy hr { height: 1px; border: 0; margin: 28px 0; background: #dce6df; }
.arrivals > p { margin: -18px 0 22px; color: var(--muted); font-size: 13px; }
.arrival-grid { display: grid; grid-template-columns: 1.3fr 1fr .8fr; gap: 14px; }
.arrival-grid figure { height: 300px; margin: 0; overflow: hidden; border-radius: 6px; }
.arrival-grid img { width: 100%; height: 100%; object-fit: cover; }
.arrival-grid .arrival-product img { object-fit: contain; background: #f7f8f7; }
.floating-buy { position: fixed; z-index: 19; left: 50%; bottom: 18px; width: min(700px, calc(100% - 32px)); min-height: 76px; padding: 10px 12px; display: grid; grid-template-columns: 55px 1fr 210px; align-items: center; gap: 12px; border: 1px solid rgba(16,82,49,.18); border-radius: 9px; background: rgba(255,255,255,.97); box-shadow: 0 14px 42px rgba(8,52,29,.22); transform: translateX(-50%); backdrop-filter: blur(12px); }
.floating-buy img { width: 55px; height: 55px; object-fit: contain; border-radius: 5px; background: #f7f9f7; }
.floating-buy > span { min-width: 0; display: grid; gap: 4px; }
.floating-buy small { overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.floating-buy b { color: var(--green-800); font-size: 18px; }
.floating-buy button { min-height: 48px; border: 0; border-radius: 5px; background: #0d8529; color: #fff; font-size: 11px; font-weight: 900; cursor: pointer; }
.floating-buy button:hover { background: #096f23; }
.floating-buy[hidden] { display: none; }

.cart-page { min-height: 650px; }
.cart-layout { display: grid; grid-template-columns: 1fr 370px; gap: 26px; align-items: start; }
.cart-lines { display: grid; gap: 12px; }
.cart-line { min-height: 150px; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 18px; padding: 13px 18px 13px 13px; border: 1px solid var(--line); border-radius: 7px; background: #fff; position: relative; }
.cart-line > img { width: 130px; height: 120px; object-fit: contain; background: #f7f8f7; border-radius: 4px; }
.cart-line-copy > span { color: var(--green-700); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.cart-line-copy h3 { margin: 7px 0 13px; font-size: 16px; }
.cart-line-copy strong { color: #19ad50; font-size: 18px; }
.cart-line-copy del { margin-left: 9px; color: #969d98; font-size: 11px; }
.qty { display: inline-grid; grid-template-columns: 34px 38px 34px; height: 38px; border: 1px solid var(--line); border-radius: 5px; overflow: hidden; box-shadow: 0 3px 9px rgba(0,0,0,.05); }
.qty button { border: 0; background: #fff; cursor: pointer; font-size: 18px; }
.qty span { display: grid; place-items: center; background: #fff; font-size: 13px; }
.remove { position: absolute; bottom: 15px; right: 25px; border: 0; background: transparent; color: #8a928d; font-size: 10px; text-decoration: underline; cursor: pointer; }
.cart-summary { position: sticky; top: 20px; padding: 24px; border: 1px solid var(--line); border-radius: 7px; background: #f9fbf9; box-shadow: 0 8px 25px rgba(10,50,28,.06); }
.cart-summary h2 { margin: 0 0 23px; font-size: 20px; }
.cart-summary > div { margin: 10px 0; display: flex; justify-content: space-between; font-size: 12px; }
.cart-summary small { color: var(--muted); }
.cart-summary hr { border: 0; height: 1px; margin: 19px 0; background: var(--line); }
.cart-summary .summary-total { align-items: center; font-size: 17px; }
.cart-summary .summary-total strong { font-size: 24px; }
.cart-summary > p { color: #13a748; font-size: 11px; font-weight: 800; }
.cart-summary > a { width: 100%; height: 48px; margin-top: 10px; display: grid; place-items: center; border-radius: 4px; background: #0d8529; color: #fff; font-size: 11px; font-weight: 900; }
.cart-summary > a.outline { background: #fff; border: 1px solid var(--green-700); color: var(--green-700); }
.cart-cross { margin-top: 52px; }
.empty-cart { margin: 15px auto 80px; padding: 70px 20px; text-align: center; border: 1px solid var(--line); border-radius: 9px; background: #f9fbf9; }
.empty-cart > span { font-size: 58px; }
.empty-cart h2 { margin-bottom: 8px; }
.empty-cart p { color: var(--muted); }
.empty-cart a { display: inline-grid; place-items: center; min-height: 44px; margin-top: 16px; padding: 0 22px; border-radius: 4px; background: var(--green-700); color: #fff; font-size: 12px; font-weight: 800; }

.trust-row { padding: 25px 0 !important; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.trust-row > div { display: flex; align-items: center; gap: 11px; }
.trust-row > div > span { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; background: #e6f2e9; color: var(--green-700); font-size: 16px; }
.trust-row p { display: grid; margin: 0; font-size: 11px; }
.trust-row small { margin-top: 3px; color: #7c867f; font-size: 9px; }
.footer { background: #edf3ef; border-top: 1px solid #dce6df; }
.footer-main { padding-top: 40px !important; padding-bottom: 40px !important; display: grid; grid-template-columns: 1.4fr 1fr .8fr 1fr; gap: 42px; border-top: 1px solid #d6e2da; }
.footer-brand p { max-width: 340px; color: #68736c; font-size: 11px; line-height: 1.65; }
.footer-main h4 { margin: 5px 0 15px; font-size: 12px; }
.footer-main ul { padding: 0; margin: 0; list-style: none; color: #68736c; font-size: 10px; line-height: 2; }
.footer-main a { color: var(--green-700); font-weight: 700; }
.footer-bottom { padding: 17px 40px; border-top: 1px solid #d6e2da; display: flex; justify-content: space-between; align-items: center; color: #6e7871; font-size: 9px; }
.footer-bottom div { display: flex; gap: 16px; }
.whatsapp-float { position: fixed; z-index: 20; right: 22px; bottom: 22px; width: 51px; height: 51px; display: grid; place-items: center; border-radius: 50%; background: #22bc59; color: #fff; font-size: 25px; box-shadow: 0 8px 24px rgba(9,94,39,.3); }

.checkout-shell { min-height: 100vh; background: #fff; }
.checkout-header { width: min(1100px, calc(100% - 40px)); min-height: 200px; margin: auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 10px 0; }
.checkout-header > div { display: flex; align-items: center; gap: 8px; color: #3d4640; font-size: 10px; }
.checkout-header > div > span { font-size: 18px; }
.checkout-header small { font-size: 8px; font-weight: 500; }
.demo-banner { padding: 7px 20px; background: #fff4c7; border-block: 1px solid #f0dc8e; text-align: center; color: #715d10; font-size: 10px; font-weight: 700; }
.checkout-main { width: min(1100px, calc(100% - 40px)); margin: 0 auto; padding: 26px 0 70px; display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.checkout-steps { display: grid; gap: 16px; }
.checkout-card { padding: 18px; border: 1px solid var(--line); border-radius: 7px; background: #fff; box-shadow: 0 5px 16px rgba(0,0,0,.04); }
.checkout-card.disabled { color: #b5bab7; background: #fcfcfc; }
.checkout-card.complete { border-color: #b8d6c2; background: #f9fcfa; }
.checkout-title { display: flex; gap: 11px; align-items: flex-start; }
.checkout-title > span { flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--green-800); color: #fff; font-size: 10px; font-weight: 800; }
.checkout-card.disabled .checkout-title > span { background: #eff0ef; color: #b7bbb8; }
.checkout-title h2 { margin: 2px 0 6px; font-size: 16px; text-transform: uppercase; }
.checkout-title p { margin: 0; color: #909792; font-size: 10px; }
.checkout-card form { display: grid; gap: 13px; margin-top: 20px; }
.person-toggle { display: grid; grid-template-columns: 1fr 1fr; padding: 3px; border: 1px solid var(--line); border-radius: 22px; }
.person-toggle button { height: 34px; border: 0; background: transparent; border-radius: 18px; color: #68716b; font-size: 11px; cursor: pointer; }
.person-toggle button.selected { background: #eef1ef; color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.checkout-card label { display: grid; gap: 7px; font-size: 10px; font-weight: 700; }
.checkout-card input, .checkout-card select { width: 100%; height: 41px; padding: 0 11px; border: 1px solid var(--line); border-radius: 4px; outline: 0; background: #fff; font-size: 11px; font-weight: 400; }
.checkout-card input:focus, .checkout-card select:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(38,153,85,.08); }
.continue { width: 100%; height: 46px; border: 0 !important; border-radius: 4px !important; background: #0b8528 !important; color: #fff !important; font-size: 12px !important; font-weight: 900 !important; cursor: pointer; }
.two-cols { display: grid; grid-template-columns: 1fr 110px; gap: 10px; }
.two-cols.city-state { grid-template-columns: 1fr 150px; }
.cep-hint { margin: -3px 0 0; font-size: 10px; font-weight: 700; }
.cep-hint.loading { color: #7d867f; }
.cep-hint.error { color: #b52c2c; }
.address-reveal { display: grid; gap: 13px; animation: address-reveal-in .25s ease; }
@keyframes address-reveal-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.checkout-delivery-options { display: grid; gap: 8px; }
.delivery-option { width: 100%; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 9px; padding: 13px; border: 1px solid var(--line); background: #fff; border-radius: 5px; text-align: left; cursor: pointer; }
.delivery-option.selected { border-color: var(--green-600); background: #f6fbf7; box-shadow: inset 0 0 0 1px rgba(38,153,85,.12); }
.delivery-option div { display: grid; font-size: 10px; }
.delivery-option small { margin-top: 3px; color: #7d867f; font-size: 9px; }
.delivery-option strong { color: var(--green-800); font-size: 10px; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.payment-options > button { min-height: 60px; border: 1px solid var(--line); background: #fff; border-radius: 5px; display: flex; align-items: center; gap: 10px; padding: 10px; text-align: left; cursor: pointer; }
.payment-options > button.selected { border-color: var(--green-600); background: #f5fbf7; }
.payment-options > button span { color: var(--green-700); font-size: 19px; }
.payment-options > button div { display: grid; font-size: 11px; }
.payment-options > button small { margin-top: 3px; color: #7f8982; font-size: 9px; }
.payment-options .continue, .checkout-message { grid-column: 1 / -1; }
.checkout-message { margin: 0; padding: 12px; border-radius: 4px; background: #e9f6ed; color: var(--green-800); font-size: 10px; line-height: 1.5; }
.checkout-message.error { background: #fff1f0; color: #a42b2b; border: 1px solid #efc6c1; }
.edit-step { margin: 14px 0 0 33px; padding: 7px 0; border: 0; background: transparent; color: var(--green-700); font-size: 10px; font-weight: 800; text-decoration: underline; cursor: pointer; }
.payment-method { min-height: 62px; grid-column: 1 / -1; display: flex; align-items: center; gap: 11px; padding: 12px; border: 1px solid var(--green-600); border-radius: 5px; background: #f5fbf7; }
.payment-method > span { color: var(--green-700); font-size: 20px; }
.payment-method > div { display: grid; gap: 3px; font-size: 11px; }
.payment-method small { color: #6e7c73; font-size: 9px; }
.order-summary { position: sticky; top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 7px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.order-summary h2 { margin: 0 0 17px; font-size: 16px; }
.order-total { display: grid; grid-template-columns: 1fr auto; gap: 9px; padding: 13px; background: #f5f6f5; border-radius: 4px; font-size: 11px; }
.order-total strong { font-size: 14px; }
.order-line { display: grid; grid-template-columns: 73px 1fr; gap: 11px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.order-line > img { width: 73px; height: 73px; object-fit: contain; background: #f7f8f7; border: 1px solid #ecefed; border-radius: 4px; }
.order-line p { margin: 0 0 4px; font-size: 10px; line-height: 1.35; }
.order-line strong { font-size: 11px; }
.qty.mini { width: 90px; height: 28px; margin-top: 8px; grid-template-columns: 28px 32px 28px; box-shadow: none; }
.qty.mini button { font-size: 13px; }
.qty.mini span { font-size: 10px; }
.secure-note { margin-top: 14px; padding: 11px; border-radius: 4px; background: #f0f6f2; color: #617067; font-size: 9px; text-align: center; }
.order-empty { padding: 25px 10px; text-align: center; color: var(--muted); font-size: 11px; }
.order-empty a { color: var(--green-700); font-weight: 800; }
.checkout-footer { padding: 22px 20px; border-top: 1px solid var(--line); color: #8c938e; text-align: center; font-size: 9px; line-height: 1.2; }
.checkout-empty { display: block; }

.pix-payment { margin-top: 18px; padding: 20px; border: 1px solid #bad9c4; border-radius: 7px; background: #f7fcf8; text-align: center; }
.pix-status { display: grid; grid-template-columns: 10px 1fr; align-items: center; justify-content: center; gap: 3px 8px; width: max-content; max-width: 100%; margin: 0 auto 14px; text-align: left; }
.pix-status .status-dot { width: 9px; height: 9px; grid-row: 1 / 3; border-radius: 50%; background: #efb51d; box-shadow: 0 0 0 5px rgba(239,181,29,.14); animation: status-pulse 1.5s infinite; }
.pix-status b { color: var(--green-950); font-size: 12px; }
.pix-status small { color: var(--muted); font-size: 9px; }
.pix-qrcode { width: min(240px, 80%); aspect-ratio: 1; margin: 0 auto 13px; padding: 8px; object-fit: contain; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.pix-qrcode-placeholder { width: min(240px, 80%); aspect-ratio: 1; margin: 0 auto 13px; display: grid; place-items: center; align-content: center; gap: 6px; color: var(--green-950); border: 12px solid #fff; border-radius: 7px; background: repeating-conic-gradient(#152019 0 25%, #fff 0 50%) 50% / 22px 22px; box-shadow: 0 0 0 1px var(--line); }
.pix-qrcode-placeholder span, .pix-qrcode-placeholder small { padding: 7px 10px; background: #fff; }
.pix-qrcode-placeholder span { font-size: 20px; font-weight: 900; }
.pix-qrcode-placeholder small { color: var(--muted); font-size: 9px; font-weight: 800; }
.pix-instruction { margin: 8px 0 12px; color: #536259; font-size: 11px; }
.pix-copy { display: grid; grid-template-columns: 1fr 110px; gap: 7px; }
.pix-copy input { width: 100%; min-width: 0; height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: #59635d; font-size: 9px; }
.pix-copy button { border: 0; border-radius: 4px; background: var(--green-800); color: #fff; font-size: 10px; font-weight: 900; cursor: pointer; }
.pix-wait-note { margin-top: 12px; padding: 10px; border-radius: 4px; background: #eef4f0; color: #66736a; font-size: 9px; line-height: 1.45; }
.payment-success { padding: 18px 8px; }
.payment-success > span { width: 56px; height: 56px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: #1da64c; color: #fff; font-size: 27px; font-weight: 900; }
.payment-success h3 { margin: 0 0 8px; color: var(--green-950); font-size: 22px; }
.payment-success p { max-width: 460px; margin: 0 auto; color: #56655c; font-size: 11px; line-height: 1.6; }
.payment-success a { min-height: 42px; margin-top: 18px; padding: 0 20px; display: inline-grid; place-items: center; border-radius: 4px; background: var(--green-800); color: #fff; font-size: 10px; font-weight: 900; }

.app-loading, .app-error, .not-found { min-height: 70vh; display: grid; place-items: center; align-content: center; gap: 10px; padding: 40px 20px; text-align: center; }
.app-loading { color: var(--green-800); font-size: 13px; font-weight: 800; }
.app-error > span, .not-found > span { font-size: 50px; }
.app-error h1, .not-found h1 { margin: 5px 0 0; }
.app-error p, .not-found p { margin: 0; color: var(--muted); }
.app-error button, .not-found a { min-height: 42px; margin-top: 10px; padding: 0 20px; display: inline-grid; place-items: center; border: 0; border-radius: 4px; background: var(--green-800); color: #fff; font-size: 11px; font-weight: 900; cursor: pointer; }

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(239,181,29,.12); }
  50% { box-shadow: 0 0 0 8px rgba(239,181,29,.03); }
}

@media (max-width: 980px) {
  .main-header { grid-template-columns: 230px 1fr 100px; gap: 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .quality { grid-template-columns: 1fr; }
  .quality-image { min-height: 480px; border-radius: 8px 8px 0 0; }
  .quality-copy { border-radius: 0 0 8px 8px; }
  .product-layout { grid-template-columns: 1fr; }
  .gallery-main { height: 520px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .footer-main { grid-template-columns: 1.3fr 1fr; }
  .checkout-main { grid-template-columns: 1fr 300px; }
}

@media (max-width: 720px) {
  .page-section { width: min(100% - 24px, 1220px); }
  .legal-bar { height: 25px; font-size: 8px; }
  .main-header { min-height: 180px; width: calc(100% - 24px); grid-template-columns: 1fr 80px; gap: 12px; padding-top: 10px; }
  .brand-logo { height: 144px; }
  .search { grid-row: 2; grid-column: 1 / -1; height: 39px; margin-bottom: 10px; }
  .cart-link strong { display: none; }
  .cart-count { right: 4px; top: -12px; }
  .main-nav { height: 43px; gap: 32px; }
  .main-nav a { font-size: 10px; }
  .hero { height: 525px; }
  .hero > img { object-position: 62% center; }
  .hero::after { background: linear-gradient(90deg, rgba(5,43,24,.9), rgba(5,43,24,.3)); }
  .hero-overlay { left: 24px; width: calc(100% - 48px); }
  .hero-overlay h1 { font-size: 45px; }
  .hero-overlay p { font-size: 13px; }
  .page-section:not(.quality) { padding-top: 36px; padding-bottom: 42px; }
  .section-title { margin-bottom: 20px; }
  .section-title h2 { font-size: 23px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-image { height: 170px; }
  .compact-grid .product-image { height: 155px; }
  .product-info { padding: 11px; }
  .product-info h3 { min-height: 50px; font-size: 11px; }
  .rating { font-size: 9px; }
  .price-row { align-items: flex-start; flex-direction: column; gap: 2px; }
  .price-row strong { font-size: 16px; }
  .product-info > p { min-height: 20px; }
  .product-info > button { font-size: 9px; }
  .quality { width: calc(100% - 24px); padding: 45px 0; }
  .quality-image { min-height: 330px; }
  .quality-copy { padding: 35px 25px; }
  .quality-copy h2 { font-size: 36px; }
  .catalog-heading h1, .cart-heading h1 { font-size: 34px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-layout { gap: 30px; }
  .gallery-main { height: 390px; }
  .current-price { font-size: 37px; }
  .buy-box h1 { font-size: 33px; }
  .cep-row { grid-template-columns: 1fr; }
  .cep-row button { min-height: 41px; }
  .floating-buy { bottom: 10px; width: calc(100% - 20px); min-height: 68px; grid-template-columns: 44px 1fr 132px; gap: 8px; padding: 8px; }
  .floating-buy img { width: 44px; height: 44px; }
  .floating-buy small { max-width: 110px; }
  .floating-buy b { font-size: 16px; }
  .floating-buy button { min-height: 46px; font-size: 9px; }
  .arrival-grid { grid-template-columns: 1fr; }
  .arrival-grid figure { height: 260px; }
  .cart-line { grid-template-columns: 88px 1fr; padding: 11px; gap: 11px; }
  .cart-line > img { width: 88px; height: 88px; }
  .cart-line-copy h3 { font-size: 13px; }
  .cart-line .qty { grid-column: 2; }
  .remove { right: 12px; bottom: 18px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-main { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { padding: 17px 13px; flex-direction: column; gap: 11px; text-align: center; }
  .footer-bottom div { flex-wrap: wrap; justify-content: center; }
  .checkout-header { width: calc(100% - 24px); min-height: 160px; }
  .checkout-header .brand-logo { height: 132px; }
  .checkout-main { width: calc(100% - 24px); grid-template-columns: 1fr; padding-top: 16px; }
  .order-summary { position: static; grid-row: 1; }
  .payment-options { grid-template-columns: 1fr; }
  .payment-options .continue, .checkout-message { grid-column: 1; }
  .pix-copy { grid-template-columns: 1fr; }
  .pix-copy button { min-height: 42px; }
}

@media (max-width: 390px) {
  .hero-overlay h1 { font-size: 39px; }
  .section-title > a { padding: 0 9px; }
  .product-image { height: 145px; }
  .product-info > button { height: 40px; }
  .floating-buy { grid-template-columns: 1fr 128px; }
  .floating-buy img { display: none; }
  .trust-row { grid-template-columns: 1fr; }
}
