@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,800&family=Inter:wght@400;500;600;700;800&family=Roboto+Mono:wght@500;600&display=swap');

:root {
  --black: #050605;
  --black-2: #0b0d0c;
  --graphite: #111411;
  --panel: #161916;
  --line: #292d29;
  --muted: #9ca39c;
  --white: #f7f8f4;
  --green: #95d600;
  --green-dark: #6ca400;
  --danger: #ff5d62;
  --display: 'Barlow Condensed', Impact, sans-serif;
  --body: 'Inter', Arial, sans-serif;
  --mono: 'Roboto Mono', monospace;
  --shell: min(1240px, calc(100% - 40px));
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --z-mobile-bar: 70;
  --z-mobile-nav: 79;
  --z-sticky: 80;
  --z-modal-backdrop: 110;
  --z-modal: 120;
  --z-loading: 200;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; color-scheme: dark; }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.drawer-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
svg { width: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--green); color: #071000; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.utility-bar { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 6vw; padding: 7px 22px; background: var(--green); color: #071000; font: 800 11px/1.2 var(--mono); letter-spacing: .08em; }
.site-header { height: 82px; display: grid; grid-template-columns: 240px 1fr 240px; align-items: center; gap: 20px; padding: 0 max(20px, calc((100vw - 1240px) / 2)); background: rgba(5,6,5,.96); border-bottom: 1px solid #232623; position: sticky; top: 0; z-index: var(--z-sticky); backdrop-filter: blur(16px); }
.brand { width: 190px; align-self: stretch; display: flex; align-items: center; position: relative; padding-right: 28px; }
.brand::before { content: ''; position: absolute; inset: 0 0 0 min(-30px, calc((1240px - 100vw) / 2)); background: #171917; clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%); z-index: -1; }
.brand img { width: 170px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3.5vw, 52px); }
.desktop-nav a { font: 800 17px/1 var(--display); letter-spacing: .04em; text-transform: uppercase; position: relative; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -10px; height: 3px; background: var(--green); transform: skewX(-20deg); transition: right .22s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; justify-content: flex-end; }
.icon-button { border: 0; background: transparent; width: 42px; height: 42px; display: inline-grid; place-items: center; cursor: pointer; border-radius: 50%; }
.icon-button:hover { background: #232723; }
.menu-button { display: none; }
.cart-button { min-height: 46px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid #343934; background: #111411; padding: 0 12px 0 15px; cursor: pointer; font: 800 15px/1 var(--display); text-transform: uppercase; letter-spacing: .05em; transform: skewX(-5deg); }
.cart-button > * { transform: skewX(5deg); }
.cart-button b { min-width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #071000; font: 800 11px var(--body); }
.mobile-nav { display: none; }

.button { border: 0; min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; font: 900 18px/1 var(--display); letter-spacing: .045em; text-transform: uppercase; transition: transform .16s ease, background .16s ease, border-color .16s ease; position: relative; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: #071000; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); }
.button--primary:hover { background: #b5f527; }
.button--secondary { background: #151815; color: var(--white); border: 1px solid #3c413c; }
.button--ghost { background: transparent; color: var(--white); border: 1px solid #4a504a; }
.button--full { width: 100%; }
.button svg { width: 19px; }
.text-link { color: #d7dbd4; text-decoration: underline; text-underline-offset: 5px; font-size: 13px; }
.eyebrow, .micro-label { display: block; font: 600 11px/1.3 var(--mono); color: var(--green); letter-spacing: .12em; text-transform: uppercase; }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-head h2 { margin: 8px 0 0; font: 900 clamp(42px, 7vw, 82px)/.83 var(--display); letter-spacing: -.02em; text-transform: uppercase; }
.section-head p { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.7; }

/* Home */
.home-hero { min-height: 700px; display: grid; place-items: center; position: relative; overflow: hidden; background: #050605; }
.home-hero::before { content: ''; position: absolute; inset: 0; opacity: .24; background-image: repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 1px,transparent 1px 14px); }
.home-hero::after { content: ''; position: absolute; top: 0; right: -7%; bottom: 0; width: 54%; background: linear-gradient(145deg,#172312,#0a1109 64%); clip-path: polygon(22% 0,100% 0,100% 100%,0 100%); border-left: 2px solid rgba(149,214,0,.32); }
.home-hero__inner { width: var(--shell); min-height: 700px; display: grid; grid-template-columns: .86fr 1.14fr; grid-template-areas: "copy product" "buy product"; align-content: center; column-gap: var(--space-2xl); position: relative; z-index: 1; }
.hero-copy { grid-area: copy; padding-top: var(--space-2xl); position: relative; z-index: 3; }
.hero-kicker { display: inline-flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-lg); color: #c4cbc1; font: 700 11px var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.hero-kicker::before { content: ''; width: 42px; height: 3px; background: var(--green); transform: skewX(-30deg); }
.hero-copy h1 { margin: 0; max-width: 590px; font: italic 900 clamp(58px,6.7vw,88px)/.84 var(--display); letter-spacing: -.03em; text-transform: uppercase; text-wrap: balance; }
.hero-copy h1 span { color: var(--green); display: block; }
.hero-copy p { max-width: 520px; margin: var(--space-lg) 0 0; color: #d9ded6; font-size: 17px; line-height: 1.6; text-wrap: pretty; }
.hero-buybox { grid-area: buy; max-width: 560px; padding: var(--space-xl) 0 var(--space-3xl); position: relative; z-index: 4; }
.hero-pack-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); background: rgba(10,12,10,.94); border-block: 1px solid #353b35; }
.hero-pack { min-width: 0; padding: var(--space-md) var(--space-lg); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2px var(--space-sm); position: relative; }
.hero-pack + .hero-pack { border-left: 1px solid #353b35; }
.hero-pack--large { background: transparent; }
.hero-pack--large::before { display: none; }
.hero-pack span { grid-column: 1; color: #9fa89d; font: 700 9px var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.hero-pack strong { grid-column: 1; color: #fff; font: 900 22px/1 var(--display); text-transform: uppercase; }
.hero-pack b { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--green); font: 900 32px/.9 var(--display); letter-spacing: -.02em; white-space: nowrap; }
.hero-actions { display: grid; }
.hero-buybox .hero-actions { margin-top: var(--space-sm); }
.hero-buybox .hero-actions .button { width: 100%; min-width: 0; min-height: 58px; font-size: 20px; }
.hero-proof { margin-top: 14px; display: flex; align-items: center; gap: 18px; color: #b5beb2; font: 700 10px var(--mono); letter-spacing: .045em; text-transform: uppercase; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: ''; width: 6px; height: 6px; background: var(--green); transform: rotate(45deg); }
.hero-product { grid-area: product; height: 680px; position: relative; align-self: end; display: grid; place-items: end center; isolation: isolate; }
.hero-product::before { content: ''; position: absolute; width: min(42vw,540px); aspect-ratio: 1; left: 50%; bottom: 36px; transform: translateX(-48%); border-radius: 50%; background: radial-gradient(circle,rgba(149,214,0,.23),rgba(149,214,0,.055) 48%,transparent 70%); filter: blur(2px); z-index: -1; }
.hero-product::after { content: ''; position: absolute; width: min(42vw,540px); height: 50px; left: 50%; bottom: 14px; transform: translateX(-48%); border-radius: 50%; background: rgba(0,0,0,.65); filter: blur(18px); z-index: -1; }
.hero-product img { width: min(51vw,690px); max-height: 650px; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 38px 32px rgba(0,0,0,.58)); }
.hero-product-note { position: absolute; left: 24px; bottom: 32px; z-index: 2; padding: 10px 12px; border: 1px solid #3b4836; background: rgba(5,7,5,.9); color: #aeb8ab; font: 700 10px var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.hero-product-note b { display: block; color: #fff; font: 900 22px var(--display); letter-spacing: 0; }
.hero-slash { position: absolute; right: -10px; top: 60px; writing-mode: vertical-rl; font: 800 11px var(--mono); letter-spacing: .4em; color: #758075; }
.benefit-strip { border-block: 1px solid var(--line); background: #0c0e0c; }
.benefit-strip__inner { width: var(--shell); display: grid; grid-template-columns: repeat(4,1fr); margin: auto; }
.benefit { padding: 24px; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.benefit:first-child { border-left: 1px solid var(--line); }
.benefit svg { color: var(--green); width: 26px; flex: 0 0 auto; }
.benefit strong { display: block; font: 800 16px var(--display); text-transform: uppercase; letter-spacing: .04em; }
.benefit small { display: block; color: var(--muted); margin-top: 3px; }
.products-section { padding: var(--space-3xl) 0 var(--space-4xl); }
.products-section--alt { background: #0a0c0a; border-block: 1px solid #1d211d; }
.section-head--catalog { margin-bottom: var(--space-2xl); }
.section-head--catalog h2 { font-size: clamp(48px,6.5vw,78px); }
.section-head--catalog h2 span { color: var(--green); }
.showcase + .showcase { margin-top: var(--space-4xl); }
.showcase-head { display: flex; align-items: end; justify-content: space-between; gap: var(--space-xl); margin-bottom: var(--space-lg); padding-bottom: var(--space-md); border-bottom: 1px solid #303530; }
.showcase-head > div > span { display: block; margin-bottom: var(--space-xs); color: #aeb6ac; font: 700 10px/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.showcase-head h3 { margin: 0; font: italic 900 clamp(40px,5.5vw,62px)/.85 var(--display); letter-spacing: -.02em; text-transform: uppercase; text-wrap: balance; }
.showcase-head p { max-width: 430px; margin: 0; color: #abb3a9; font-size: 14px; line-height: 1.55; text-wrap: pretty; }
.showcase-head > a { color: var(--green); font: 800 12px/1.2 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.showcase--limited { padding: var(--space-xl); background: #0b0e0b; border: 1px solid #262b26; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; overflow: visible; padding-bottom: 0; }
.filter-button { white-space: nowrap; border: 1px solid #343934; background: #0d100d; color: #b7beb5; padding: 11px 17px; cursor: pointer; font: 700 12px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.filter-button.is-active { background: var(--green); border-color: var(--green); color: #071000; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.product-card { --accent: var(--green); --accent-rgb: 149,214,0; min-width: 0; background: #101310; border: 1px solid #252925; position: relative; transition: border-color .22s ease, transform .22s ease; overflow: hidden; }
.product-card:hover { border-color: rgba(var(--accent-rgb),.65); transform: translateY(-6px); }
.product-card__media { height: 370px; display: grid; place-items: center; position: relative; background: radial-gradient(circle at 50% 55%, rgba(var(--accent-rgb),.17), transparent 48%), linear-gradient(145deg,#141714,#090b09); overflow: hidden; }
.product-card__media::before { content: ''; position: absolute; width: 120%; height: 42%; left: -10%; bottom: -10%; background: var(--accent); opacity: .11; transform: rotate(-11deg); }
.product-card__media > img { height: 330px; width: auto; position: relative; filter: drop-shadow(0 22px 20px rgba(0,0,0,.45)); transition: transform .28s ease; }
.product-card:hover .product-card__media > img { transform: scale(1.035) rotate(1deg); }
.product-badge { position: absolute; top: var(--space-sm); right: var(--space-sm); z-index: 2; background: var(--accent); color: #090b09; padding: 7px 9px; font: 800 10px var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.product-card__body { padding: var(--space-lg); }
.product-card__body h3 { margin: 5px 0 8px; font: 800 27px/.95 var(--display); text-transform: uppercase; }
.product-card__body p { margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.5; min-height: 40px; }
.product-card__price { display: grid; gap: var(--space-2xs); margin: 0 0 var(--space-md); padding-top: var(--space-sm); border-top: 1px solid #303530; color: #d8ddd6; }
.product-card__price .price-before { color: #90998e; font-size: 11px; font-weight: 600; }
.product-card__price .price-before s { color: #c7cdc5; text-decoration-thickness: 1px; }
.product-card__price .price-now { display: flex; align-items: baseline; gap: var(--space-xs); }
.product-card__price .price-now span { color: #b3bbb1; font: 700 10px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.product-card__price strong { color: var(--accent); font: 900 36px/.9 var(--display); white-space: nowrap; }
.product-card__price .price-per-unit { color: #aeb6ac; font-size: 10px; font-weight: 700; }
.product-card__actions { display: grid; grid-template-columns: 1fr; gap: var(--space-xs); }
.product-card__actions .button { min-height: 54px; font-size: 19px; padding: 0 var(--space-md); }
@media (min-width: 821px) {
  .product-grid--featured .product-card:first-child { grid-column: span 2; display: grid; grid-template-columns: 1.18fr .82fr; }
  .product-grid--featured .product-card:first-child .product-card__media { height: auto; min-height: 470px; }
  .product-grid--featured .product-card:first-child .product-card__body { display: flex; flex-direction: column; justify-content: end; }
  .product-grid--featured .product-card:first-child .product-card__body h3 { font-size: 42px; }
}
.pack-visual { width: 100%; height: 100%; position: relative; display: grid; place-items: center; isolation: isolate; }
.pack-visual--card { position: absolute; inset: 0; }
.pack-visual__cans { width: 94%; height: 84%; display: grid; place-items: center; position: relative; z-index: 1; }
.pack-visual__can { height: 100% !important; width: auto !important; max-width: 72% !important; object-fit: contain; position: relative; filter: drop-shadow(0 22px 18px rgba(0,0,0,.52)); transition: transform .28s ease; }
.pack-visual--card .pack-visual__cans { position: absolute; left: 0; right: 0; top: 8px; width: 100%; height: calc(100% - 16px); }
.pack-visual--card .pack-visual__can { position: absolute; inset: 0; width: 100% !important; height: 100% !important; min-width: 0; min-height: 0; max-width: none !important; max-height: none !important; object-fit: contain; }
.product-card:hover .pack-visual__can { transform: translateY(-5px) scale(1.025); }
.pack-visual--cart .pack-visual__cans { width: 96%; height: 78%; }
.pack-visual--cart .pack-visual__can { width: 100% !important; height: 100% !important; max-width: none !important; object-fit: contain; }
.campaign-banner { width: var(--shell); min-height: 430px; margin: 0 auto 110px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: #e8eef0; color: #060706; position: relative; }
.campaign-banner::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(135deg,rgba(0,0,0,.025) 0 2px,transparent 2px 10px); }
.campaign-banner__copy { padding: clamp(42px,6vw,78px); align-self: center; z-index: 1; }
.campaign-banner__copy .eyebrow { color: #1b808e; }
.campaign-banner__copy h2 { margin: 10px 0 18px; font: italic 900 clamp(54px,7vw,88px)/.8 var(--display); text-transform: uppercase; }
.campaign-banner__copy p { max-width: 440px; line-height: 1.6; color: #38413b; }
.campaign-banner__copy .button { margin-top: 16px; background: #0a0c0a; color: white; }
.campaign-banner__visual { position: relative; background: linear-gradient(140deg,#eef4f7 0 48%,#cde8ed 48%); }
.campaign-banner__visual img { height: 430px; width: auto; position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%) rotate(6deg); filter: drop-shadow(0 35px 25px rgba(0,0,0,.22)); }
.campaign-banner--pink { background: #ff8fb8; }
.campaign-banner--pink .campaign-banner__visual { background: linear-gradient(140deg,#ffb3ca 0 48%,#ff759f 48%); }
.campaign-banner--pink .campaign-banner__copy .eyebrow { color: #5e1731; }
.flavor-guide { padding: clamp(72px,9vw,120px) 0; border-top: 1px solid var(--line); background: radial-gradient(circle at 8% 70%,rgba(149,214,0,.14),transparent 28%),#090b09; }
.flavor-guide__inner { width: var(--shell); margin: auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(46px,7vw,96px); align-items: center; }
.flavor-guide__intro h2 { margin: 0 0 22px; font: 900 clamp(50px,7vw,84px)/.85 var(--display); letter-spacing: -.02em; text-transform: uppercase; text-wrap: balance; }
.flavor-guide__intro h2 span { color: var(--green); }
.flavor-guide__intro p { max-width: 500px; color: #b9c0b7; line-height: 1.7; }
.flavor-profiles { border-block: 1px solid #303530; }
.flavor-profiles a { min-height: 132px; display: grid; grid-template-columns: minmax(130px,.65fr) 1fr auto; align-items: center; gap: 22px; padding: 25px 0; border-bottom: 1px solid #303530; transition: color .2s ease, transform .2s ease; }
.flavor-profiles a:last-child { border-bottom: 0; }
.flavor-profiles a:hover { color: var(--green); transform: translateX(5px); }
.flavor-profiles strong { font: 900 27px/.95 var(--display); text-transform: uppercase; }
.flavor-profiles span { color: #aeb6ac; font-size: 13px; line-height: 1.55; }
.flavor-profiles b { color: var(--green); font: 800 11px var(--mono); text-transform: uppercase; white-space: nowrap; }

/* Shared cart */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.72); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; z-index: var(--z-modal-backdrop); backdrop-filter: blur(3px); }
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(460px,100%); background: #0c0f0c; z-index: var(--z-modal); transform: translateX(102%); visibility: hidden; transition: transform .3s ease, visibility .3s; display: grid; grid-template-rows: auto auto 1fr auto; box-shadow: -20px 0 80px rgba(0,0,0,.5); }
.cart-drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer-head h2 { margin: 3px 0 0; font: 900 38px/.9 var(--display); text-transform: uppercase; }
.drawer-progress { padding: 15px 24px; background: #121512; color: #c4cac2; font: 600 11px var(--mono); text-transform: uppercase; }
.drawer-progress > div { height: 4px; background: #2b302b; margin-top: 10px; overflow: hidden; }
.drawer-progress i { display: block; height: 100%; background: var(--green); transition: width .25s; }
.drawer-items { min-height: 0; overflow-y: auto; padding: 8px 24px; }
.drawer-footer { border-top: 1px solid var(--line); padding: 20px 24px 24px; background: #0f120f; }
.drawer-footer p { color: var(--muted); font-size: 11px; margin: 7px 0 14px; }
.drawer-footer .text-link { display: block; text-align: center; margin-top: 16px; }
.drawer-total { display: flex; justify-content: space-between; align-items: end; }
.drawer-total span { color: var(--muted); font-size: 13px; }
.drawer-total strong { font: 800 30px var(--display); }
.empty-cart { min-height: 100%; display: grid; place-content: center; justify-items: center; text-align: center; padding: 50px 20px; }
.empty-cart > span { width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid #343934; border-radius: 50%; color: var(--green); }
.empty-cart > span svg { width: 30px; }
.empty-cart h3 { margin: 18px 0 6px; font: 800 27px var(--display); text-transform: uppercase; }
.empty-cart p { margin: 0 0 22px; color: var(--muted); }
.cart-line { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid #262a26; }
.cart-line__media { height: 120px; display: grid; place-items: center; background: radial-gradient(circle,rgba(var(--accent-rgb),.18),transparent 65%),#151815; }
.cart-line__media > img { max-height: 108px; width: auto; }
.cart-line__body { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.cart-line__top, .cart-line__bottom { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.cart-line__top a { display: block; margin-top: 4px; font: 800 20px/.95 var(--display); text-transform: uppercase; }
.cart-line__top .micro-label { font-size: 9px; color: var(--muted); }
.cart-remove { width: 32px; height: 32px; flex: 0 0 auto; }
.cart-line__bottom { align-items: center; }
.cart-line__bottom strong { font: 800 21px var(--display); }
.qty-control { width: 142px; height: 48px; display: grid; grid-template-columns: 44px 1fr 44px; border: 1px solid #3b403b; }
.qty-control button { border: 0; background: transparent; font-size: 21px; cursor: pointer; }
.qty-control button:hover { background: #242824; }
.qty-control span { display: grid; place-items: center; font-weight: 700; }
.qty-control--small { width: 108px; height: 36px; grid-template-columns: 34px 1fr 34px; }
.qty-control--small button { font-size: 17px; }

/* Product detail */
.breadcrumb { width: var(--shell); margin: 26px auto; color: #7f877d; font: 600 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.breadcrumb a:hover { color: var(--green); }
.product-detail { --accent: var(--green); --accent-rgb: 149,214,0; width: var(--shell); margin: 0 auto 100px; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(48px,7vw,100px); align-items: start; }
.product-gallery { position: sticky; top: 116px; display: grid; grid-template-columns: 84px 1fr; gap: 14px; }
.gallery-thumbs { display: grid; align-content: start; gap: 10px; }
.gallery-thumb { height: 92px; border: 1px solid #313631; background: #111411; display: grid; place-items: center; cursor: pointer; }
.gallery-thumb.is-active { border-color: var(--accent); }
.gallery-thumb img { max-height: 76px; max-width: 72px; }
.gallery-thumb--pack span { width: 58px; height: 54px; display: grid; place-items: center; padding: 5px; background: var(--accent); color: #071000; font: 900 11px/1.05 var(--display); text-align: center; text-transform: uppercase; transform: skewX(-6deg); }
.gallery-main { min-height: 620px; display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 48%,rgba(var(--accent-rgb),.22),transparent 41%),linear-gradient(145deg,#171a17,#0b0d0b); border: 1px solid #282d28; }
.gallery-main::before { content: ''; position: absolute; width: 130%; height: 34%; left: -15%; bottom: -8%; background: var(--accent); opacity: .12; transform: rotate(-10deg); }
.gallery-main > img { max-height: 570px; width: auto; position: relative; filter: drop-shadow(0 35px 30px rgba(0,0,0,.55)); }
.pack-visual--gallery { width: 94%; height: 540px; }
.pack-visual--gallery .pack-visual__cans { width: 100%; height: 100%; }
.pack-visual--gallery .pack-visual__can { width: 100% !important; height: 100% !important; max-width: none !important; object-fit: contain; }
.product-info { padding-top: 30px; }
.product-info h1 { margin: 10px 0 13px; font: italic 900 clamp(55px,7vw,88px)/.78 var(--display); text-transform: uppercase; letter-spacing: -.025em; }
.product-flavor-line { display: flex; align-items: center; gap: 12px; color: #d5dbd2; font-size: 16px; }
.flavor-dots { display: inline-flex; gap: 5px; }
.flavor-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px rgba(var(--accent-rgb),.55); }
.flavor-dots i:nth-child(2) { opacity: .68; }
.flavor-dots i:nth-child(3) { opacity: .38; }
.product-price-block { margin: var(--space-lg) 0 var(--space-xl); padding: 0; border: 0; }
.product-price-block > small { display: block; color: #c4cbc1; font: 700 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.product-price-before { margin-top: var(--space-sm); color: #959e93; font-size: 14px; }
.product-price-before s { color: #d2d8d0; text-decoration-thickness: 1px; }
.product-price-now { display: flex; align-items: baseline; gap: var(--space-sm); margin-top: var(--space-2xs); }
.product-price-now > span { color: #b7beb5; font: 700 11px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.product-price { color: var(--accent); font: 900 58px/.9 var(--display); }
.product-installment { margin: var(--space-xs) 0 0; color: #d7ddd4; font-size: 12px; font-weight: 700; }
.pack-selector { border: 0; padding: 0; margin-bottom: var(--space-lg); }
.pack-selector__label { display: block; margin-bottom: 11px; font: 800 16px var(--display); text-transform: uppercase; letter-spacing: .03em; }
.pack-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; }
.pack-option { min-width: 0; min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px; border: 1px solid #3a403a; background: #111411; text-align: left; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.pack-option:hover { border-color: rgba(var(--accent-rgb),.7); transform: translateY(-2px); }
.pack-option.is-selected { border-color: var(--accent); background: rgba(var(--accent-rgb),.1); box-shadow: inset 0 0 0 1px var(--accent); }
.pack-option strong { display: block; font: 800 18px var(--display); text-transform: uppercase; }
.pack-option small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.pack-option__prices { display: grid; justify-items: end; gap: var(--space-2xs); }
.pack-option__prices s { color: #8f978d; font-size: 10px; font-weight: 600; }
.pack-option b { white-space: nowrap; font: 900 21px var(--display); color: var(--accent); }
.pack-selector > p { margin: 10px 0 0; color: var(--muted); font-size: 11px; }
.purchase-row { display: grid; grid-template-columns: 142px 1fr; gap: 10px; }
.purchase-row + .button { margin-top: 10px; }
.product-buy-cta { min-height: 64px; font-size: 25px; }
.stock-note { display: flex; align-items: center; gap: 9px; margin: 16px 0 0; color: #aeb5ac; font-size: 12px; }
.stock-note::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(149,214,0,.12); }
.product-guarantees { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #2c312c; border: 1px solid #2c312c; margin-top: 28px; }
.product-guarantees div { background: #101310; padding: 16px 13px; }
.product-guarantees strong { display: block; font: 800 15px var(--display); text-transform: uppercase; }
.product-guarantees span { color: var(--muted); font-size: 10px; }
.product-story { background: #0c0f0c; border-block: 1px solid var(--line); padding: 100px 0; }
.product-story__inner { width: var(--shell); margin: auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.product-story h2 { margin: 10px 0 0; font: italic 900 clamp(50px,7vw,84px)/.82 var(--display); text-transform: uppercase; }
.story-copy { color: #c3c9c1; font-size: 17px; line-height: 1.8; }
.nutrition-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 28px; }
.nutrition-grid div { border: 1px solid #333833; padding: 20px; }
.nutrition-grid strong { display: block; font: 900 29px var(--display); color: var(--green); }
.nutrition-grid span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.product-review-promise { width: var(--shell); margin: 72px auto 0; padding: clamp(34px,5vw,62px); display: flex; align-items: end; justify-content: space-between; gap: 42px; background: linear-gradient(125deg,rgba(149,214,0,.17),rgba(149,214,0,.035)); border: 1px solid #394333; }
.product-review-promise > div { max-width: 750px; position: relative; }
.review-mark { position: absolute; right: 0; top: -42px; color: rgba(149,214,0,.19); font: 900 150px/1 Georgia,serif; }
.product-review-promise h2 { margin: 0 0 12px; font: 900 clamp(34px,5vw,58px)/.88 var(--display); text-transform: uppercase; text-wrap: balance; }
.product-review-promise p { margin: 0; color: #bcc4ba; line-height: 1.65; }
.product-review-promise .button { flex: 0 0 auto; }
.product-faq { width: min(860px, calc(100% - 40px)); margin: 100px auto; }
.product-faq h2 { font: 900 52px var(--display); text-transform: uppercase; }
details { border-top: 1px solid #303530; }
details:last-child { border-bottom: 1px solid #303530; }
summary { list-style: none; cursor: pointer; padding: 21px 0; display: flex; justify-content: space-between; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--green); font-size: 22px; }
details[open] summary::after { content: '−'; }
details p { margin: -3px 0 23px; color: var(--muted); line-height: 1.7; }
.mobile-product-bar { display: none; }

/* Cart page */
.page-hero { padding: 70px 0 52px; background: linear-gradient(130deg,#050605 0 65%,#111711 65%); border-bottom: 1px solid var(--line); }
.page-hero__inner { width: var(--shell); margin: auto; }
.page-hero h1 { margin: 7px 0 0; font: italic 900 clamp(58px,9vw,96px)/.8 var(--display); text-transform: uppercase; }
.cart-page { width: var(--shell); margin: 60px auto 110px; display: grid; grid-template-columns: 1fr 410px; gap: 70px; align-items: start; }
.cart-page__items .cart-line { grid-template-columns: 150px 1fr; }
.cart-page__items .cart-line__media { height: 155px; }
.cart-page__items .cart-line__media img { max-height: 140px; }
.order-summary { position: sticky; top: 116px; background: #111411; border: 1px solid #2f342f; padding: 26px; }
.order-summary h2 { margin: 0 0 22px; font: 900 32px var(--display); text-transform: uppercase; }
.summary-line { display: flex; justify-content: space-between; padding: 10px 0; color: #bdc4bb; font-size: 13px; }
.summary-line--total { margin-top: 12px; padding-top: 20px; border-top: 1px solid #343934; align-items: end; }
.summary-line--total span { font-weight: 700; color: white; }
.summary-line--total strong { font: 900 34px var(--display); color: var(--green); }
.order-summary .button { margin-top: 20px; }
.order-summary__security { display: flex; align-items: center; justify-content: center; gap: 7px; color: #8f978d; font-size: 10px; margin-top: 14px; }
.order-summary__security svg { width: 16px; color: var(--green); }

/* Checkout */
.checkout-body { background: #eef0eb; color: #121412; min-height: 100vh; }
.checkout-header { min-height: 76px; background: #070907; color: white; display: flex; align-items: center; justify-content: space-between; padding: 0 max(20px,calc((100vw - 1120px)/2)); border-bottom: 3px solid #8ee000; }
.checkout-brand { display:flex; align-items:center; gap:10px; color:#fff; }
.checkout-brand img { width: 36px; height: 45px; object-fit:contain; }
.checkout-brand strong { font:800 22px/1 var(--display); letter-spacing:.04em; }
.checkout-brand small { display:block; margin-top:3px; color:#8ee000; font:700 7px/1 var(--mono); letter-spacing:.38em; }
.checkout-safe { display: flex; align-items: center; gap: 8px; color: #c5ccc2; font: 600 10px var(--mono); text-transform: uppercase; }
.checkout-safe svg { width:22px; color: var(--green); }
.checkout-shell { width: min(1080px,calc(100% - 32px)); margin: 34px auto 80px; display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 24px; align-items: start; }
.checkout-main, .checkout-summary { background: white; border: 1px solid #d9ddd5; box-shadow: 0 18px 50px rgba(12,16,12,.07); }
.checkout-main { padding: 30px 34px 34px; }
.checkout-intro { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:24px; }
.checkout-intro span { color:#5f9100; font:800 9px var(--mono); letter-spacing:.14em; }
.checkout-intro strong { color:#697067; font-size:12px; }
.checkout-progress { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 38px; }
.progress-step { position:relative; display:flex; align-items:center; gap:9px; color:#92988f; font:700 10px var(--mono); text-transform:uppercase; }
.progress-step:not(:last-child)::after { content:""; position:absolute; left:34px; right:8px; top:14px; height:2px; background:#dfe3dc; }
.progress-step b { position:relative; z-index:1; width:30px; height:30px; display:grid; place-items:center; border:2px solid #d9ddd6; border-radius:50%; background:#fff; }
.progress-step span { position:relative; z-index:1; background:#fff; padding-right:7px; }
.progress-step.is-active, .progress-step.is-done { color:#1b2810; }
.progress-step.is-active b, .progress-step.is-done b { border-color:#75ad00; background:#8ee000; color:#071000; }
.progress-step.is-done:not(:last-child)::after { background:#75ad00; }
.checkout-step { display: none; }
.checkout-step.is-active { display: block; animation: stepIn .24s ease; }
@keyframes stepIn { from { opacity:0; transform:translateY(8px); } }
.step-heading { margin-bottom:25px; }
.step-heading > span { color:#6a9e00; font:800 9px var(--mono); letter-spacing:.14em; }
.checkout-step .step-heading h1, .checkout-step .step-heading h2 { margin:5px 0 4px; font:800 38px/.95 var(--display); text-transform:uppercase; }
.step-heading p { margin:0; color:#6c736a; font-size:13px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; color: #30352f; }
.field label small { color: #899087; font-weight: 500; }
.field input { width: 100%; min-height: 51px; border: 1px solid #cfd4cc; background: #fbfcfa; color: #111411; border-radius: 2px; padding: 0 13px; font-size: 16px; outline: none; -webkit-appearance: none; }
.field input:focus { border-color: #75ad00; box-shadow: 0 0 0 3px rgba(117,173,0,.12); }
.field input.is-error { border-color: #d9363e; box-shadow: 0 0 0 3px rgba(217,54,62,.1); }
.field-error { min-height: 14px; color: #c5262d; font-size: 10px; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.step-actions .button { min-width: 205px; }
.checkout-body .button--primary { background: #8ee000; color: #071000; box-shadow:0 9px 22px rgba(117,173,0,.18); }
.checkout-body .button--secondary { background: white; color: #333933; border: 1px solid #cfd4cc; }
.shipping-options { display: none; margin-top: 18px; }
.shipping-options.is-visible { display: grid; gap: 9px; }
.shipping-title, .summary-kicker { color:#5d8d00; font:800 9px var(--mono); letter-spacing:.14em; }
.shipping-card { border: 1px solid #cfd4cc; min-height: 70px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 12px; padding: 13px 15px; cursor: pointer; }
.shipping-card:has(input:checked) { border-color: #75ad00; background: #f6faef; }
.shipping-card input { accent-color: #75ad00; width: 18px; height: 18px; }
.shipping-card strong { display: block; font-size: 13px; }
.shipping-card small { color: #70776e; }
.shipping-card > strong { color: #254000; }
.checkout-summary { position: sticky; top: 24px; padding: 26px; }
.checkout-summary__toggle { display:none; }
.checkout-summary h2 { margin: 0 0 18px; font: 800 27px var(--display); text-transform: uppercase; }
.checkout-mini-items { display: grid; gap: 13px; max-height: 300px; overflow: auto; padding-right: 4px; }
.checkout-mini-item { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 11px; }
.checkout-mini-item__img { height: 62px; display: grid; place-items: center; background: #eff2ec; position: relative; }
.checkout-mini-item img { max-height: 56px; }
.checkout-mini-item__img b { position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; display: grid; place-items: center; background: #151815; color: white; border-radius: 50%; font-size: 10px; }
.checkout-mini-item span { font-size: 12px; font-weight: 700; }
.checkout-mini-item small { color: #7c837a; }
.checkout-mini-item strong { font-size: 12px; }
.checkout-totals { border-top: 1px solid #e0e3dd; margin-top: 20px; padding-top: 12px; }
.checkout-total { display: flex; justify-content: space-between; padding: 7px 0; color: #676e65; font-size: 12px; }
.checkout-total--final { border-top: 1px solid #e0e3dd; margin-top: 8px; padding-top: 16px; color: #171a17; align-items: end; }
.checkout-total--final strong { font: 800 28px var(--display); }
.summary-benefits { display:grid; gap:7px; padding-top:17px; margin-top:14px; border-top:1px solid #e0e3dd; color:#657060; font-size:10px; }
.order-bump { position:relative; border: 2px solid #75ad00; background: #f5faeb; padding: 19px 15px 14px; margin: 26px 0 20px; }
.order-bump__tag { position:absolute; top:-10px; left:14px; background:#18200f; color:#a5ed18; padding:5px 8px; font:800 8px var(--mono); letter-spacing:.08em; }
.order-bump label { display: grid; grid-template-columns: 20px 48px 1fr auto; align-items:center; gap: 10px; cursor: pointer; }
.order-bump label > img { width:42px; height:58px; object-fit:contain; }
.order-bump input { width: 18px; height: 18px; accent-color: #75ad00; }
.order-bump strong { display: block; font-size: 13px; }
.order-bump p { margin: 4px 0 0; color: #586153; font-size: 11px; line-height: 1.45; }
.order-bump p b { color:#315400; }
.order-bump i { padding:8px 9px; border:1px solid #8ab638; color:#315400; font:700 9px var(--mono); font-style:normal; text-transform:uppercase; }
.pix-method { border: 1px solid #75ad00; background: #f7fbf0; padding: 16px; display: flex; align-items: center; gap: 13px; }
.pix-mark { width: 38px; height: 38px; color: #159678; }
.pix-method strong { display: block; }
.pix-method small { color: #697166; }
.checkout-error { display: none; background: #fff0f0; color: #a51f26; border: 1px solid #f0b8bb; padding: 12px; margin-top: 14px; font-size: 12px; }
.checkout-error.is-visible { display: block; }
.checkout-pay-total { display:flex; justify-content:space-between; align-items:end; padding:15px 0 4px; border-top:1px solid #e1e4de; }
.checkout-pay-total span { color:#626a60; font:700 10px var(--mono); }
.checkout-pay-total strong { color:#5f9200; font:900 34px var(--display); }
.checkout-finish { display:grid; place-items:center; min-height:66px; }
.checkout-finish span { font-size:20px; line-height:1; }
.checkout-finish small { margin-top:3px; font:700 8px var(--mono); letter-spacing:.08em; }
.checkout-reassurance { display:flex; justify-content:center; gap:18px; margin-top:14px; color:#788076; font-size:9px; }
.secure-loading { position: fixed; inset: 0; background: rgba(5,6,5,.93); z-index: var(--z-loading); color: white; display: grid; place-content: center; justify-items: center; text-align: center; opacity: 0; visibility: hidden; transition: opacity .2s,visibility .2s; }
.secure-loading.is-visible { opacity: 1; visibility: visible; }
.loader-ring { width: 54px; height: 54px; border: 4px solid #313631; border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.secure-loading strong { margin-top: 18px; font: 800 24px var(--display); text-transform: uppercase; }
.secure-loading span { color: #aeb5ac; font-size: 11px; margin-top: 5px; }
.pix-screen { min-height: calc(100vh - 74px); display: none; place-items: center; padding: 32px 16px; background: #f2f3ef; color: #121412; }
.pix-screen.is-visible { display: grid; }
.pix-card { width: min(440px,100%); background: white; border: 1px solid #dfe2dc; padding: 30px; text-align: center; box-shadow: 0 18px 50px rgba(12,16,12,.09); }
.pix-card .pix-mark { margin: 0 auto 10px; }
.pix-card h1 { margin: 0; font: 800 36px var(--display); text-transform: uppercase; }
.pix-card > p { color: #6d746a; font-size: 12px; }
.pix-amount { color: #5e8f00; font: 900 39px var(--display); margin: 18px 0; }
.pix-qr { width: 220px; height: 220px; margin: 0 auto 16px; display: grid; place-items: center; border: 1px solid #e1e4de; }
.pix-qr img { max-width: 208px; max-height: 208px; }
.pix-code { width: 100%; max-height: 76px; overflow: hidden; word-break: break-all; background: #f3f5f1; border: 1px solid #dfe2dc; padding: 11px; color: #4b5249; font: 500 9px/1.4 var(--mono); text-align: left; }
.pix-card .button { margin-top: 10px; }
.pix-timer { color: #9d2b31; font: 700 13px var(--mono); margin-top: 16px; }
.pix-instruction { display: grid; gap: 7px; margin: 18px 0 0; text-align: left; }
.pix-instruction span { color: #5f665d; font-size: 11px; }

/* Checkout v13 — split layout premium */
.checkout-body { background: linear-gradient(90deg,#f5f6f3 0 64%,#0b0e0b 64%); color:#171a17; }
.checkout-header { min-height:72px; background:#fff; color:#161a15; border:0; border-bottom:1px solid #dfe3dc; padding:0 max(24px,calc((100vw - 1060px)/2)); }
.checkout-brand img { width:168px; height:auto; }
.checkout-safe { color:#4f584c; font:600 11px var(--body); text-transform:none; }
.checkout-safe svg { width:20px; color:#609400; }
.checkout-shell { width:min(1060px,calc(100% - 40px)); grid-template-columns:minmax(0,640px) 360px; gap:60px; margin:48px auto 88px; }
.checkout-main { padding:4px 0 40px; background:transparent; border:0; box-shadow:none; }
.checkout-progress { grid-template-columns:repeat(3,auto); justify-content:start; gap:0; margin:0 0 48px; }
.progress-step { min-width:145px; gap:10px; color:#778074; font:600 12px var(--body); text-transform:none; }
.progress-step:not(:last-child)::after { left:28px; right:0; top:13px; height:1px; background:#ccd1c9; }
.progress-step b { width:28px; height:28px; border:1px solid #c8cec5; background:#f5f6f3; color:#6c7569; font:700 11px var(--body); }
.progress-step span { background:#f5f6f3; padding-right:12px; }
.progress-step.is-active { color:#151914; }
.progress-step.is-active b { border-color:#6ca400; background:#6ca400; color:#fff; box-shadow:0 0 0 4px rgba(108,164,0,.12); }
.progress-step.is-done b { border-color:#b8ca97; background:#e8f2d5; color:#487000; }
.progress-step.is-done:not(:last-child)::after { background:#8bb53e; }
.step-heading { margin-bottom:30px; }
.checkout-step .step-heading h1, .checkout-step .step-heading h2 { margin:0 0 9px; font:700 32px/1.15 var(--body); letter-spacing:-.035em; text-transform:none; text-wrap:balance; }
.step-heading p { max-width:570px; color:#596157; font-size:14px; line-height:1.55; }
.field-grid { gap:18px 14px; }
.field { gap:8px; }
.field label { color:#2f352d; font-size:12px; font-weight:600; }
.field label small { color:#697167; }
.field input { min-height:54px; border:1px solid #cbd1c8; border-radius:8px; background:#fff; color:#111511; padding:0 15px; font-size:16px; transition:border-color .18s ease,box-shadow .18s ease; }
.field input::placeholder { color:#646d62; opacity:1; }
.field input:hover { border-color:#aab3a6; }
.field input:focus { border-color:#6e9f12; box-shadow:0 0 0 4px rgba(110,159,18,.12); }
.field-error { min-height:10px; margin-top:-3px; font-size:11px; }
.step-actions { margin-top:30px; align-items:center; }
.step-actions--forward { justify-content:flex-end; }
.step-actions .button { min-width:220px; border-radius:7px; }
.checkout-body .button--primary { min-height:56px; background:#78b900; color:#071000; box-shadow:none; font:800 15px var(--body); letter-spacing:-.01em; text-transform:none; }
.checkout-body .button--primary:hover { background:#86cb00; transform:translateY(-1px); }
.checkout-body .button--secondary { min-width:auto; padding:0 6px; border:0; background:transparent; color:#525b50; box-shadow:none; font-size:13px; text-decoration:underline; text-underline-offset:4px; }
.shipping-options { margin-top:8px; gap:10px; }
.shipping-title { margin:8px 0 2px; color:#30372e; font:700 13px var(--body); letter-spacing:0; text-transform:none; }
.shipping-card { min-height:74px; grid-template-columns:22px 1fr auto; border:1px solid #cbd1c8; border-radius:8px; background:#fff; padding:14px 16px; transition:border-color .18s ease,background .18s ease; }
.shipping-card:has(input:checked) { border-color:#6f9f16; background:#f2f8e8; box-shadow:0 0 0 1px #6f9f16; }
.shipping-card strong { font-size:13px; }
.shipping-card small { display:block; margin-top:4px; color:#596257; font-size:11px; }
.checkout-summary { top:28px; padding:30px; background:#101310; color:#f4f6f1; border:1px solid #242a23; border-radius:12px; box-shadow:0 28px 70px rgba(0,0,0,.22); }
.checkout-summary__content { display:block; }
.summary-heading { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:24px; }
.checkout-summary h2 { margin:0; font:700 21px var(--body); letter-spacing:-.025em; text-transform:none; }
.summary-heading > span { color:#99a194; font-size:10px; }
.checkout-mini-items { gap:16px; max-height:330px; padding:0 2px 0 0; }
.checkout-mini-item { grid-template-columns:64px 1fr auto; gap:12px; }
.checkout-mini-item__img { height:68px; border-radius:7px; background:#1d211c; border:1px solid #2b302a; }
.checkout-mini-item img { max-height:62px; }
.checkout-mini-item__img b { top:-6px; right:-6px; background:#86c900; color:#081000; }
.checkout-mini-item span { color:#f1f3ef; font-size:12px; line-height:1.35; }
.checkout-mini-item small { color:#979f94; font-weight:500; }
.checkout-mini-item strong { color:#fff; font-size:12px; }
.checkout-totals { border-color:#30362f; margin-top:24px; padding-top:14px; }
.checkout-total { color:#aeb5aa; font-size:12px; }
.checkout-total strong { color:#f2f4ef; }
.checkout-total--final { border-color:#30362f; margin-top:10px; padding-top:18px; color:#fff; align-items:center; }
.checkout-total--final strong { color:#9adf16; font:800 30px var(--body); letter-spacing:-.05em; }
.summary-benefits { grid-template-columns:1fr 1fr; gap:12px; border-color:#30362f; margin-top:18px; padding-top:18px; color:#aeb5aa; font-size:9px; }
.summary-benefits span { display:flex; align-items:center; gap:6px; }
.summary-benefits svg { width:15px; color:#8bc914; }
.pix-method { border:1px solid #cbd1c8; border-radius:8px; background:#fff; padding:16px; }
.pix-method .pix-mark { width:34px; color:#159678; }
.pix-method strong { font-size:14px; }
.pix-method small { display:block; margin-top:3px; color:#5b6358; font-size:11px; }
.order-bump { border:1px solid #b8c8a0; border-radius:8px; background:#f3f7ed; padding:20px 14px 14px; margin:28px 0 22px; }
.order-bump__tag { top:-11px; left:14px; border-radius:4px; background:#26331c; color:#a5df3c; padding:5px 9px; font:700 10px var(--body); letter-spacing:0; text-transform:none; }
.order-bump label { grid-template-columns:20px 56px 1fr auto; gap:12px; }
.order-bump label > img { width:54px; height:62px; }
.order-bump strong { color:#222821; font-size:13px; }
.order-bump p { color:#555e52; font-size:11px; }
.order-bump p b { color:#3d6400; }
.order-bump i { border:0; border-radius:5px; background:#e2ebd5; color:#3d5b13; padding:8px 10px; font:700 10px var(--body); text-transform:none; }
.checkout-pay-total { border-color:#d5dad2; padding:18px 0 6px; }
.checkout-pay-total span { color:#525b50; font:600 13px var(--body); }
.checkout-pay-total strong { color:#548500; font:800 34px var(--body); letter-spacing:-.05em; }
.checkout-finish { min-height:60px; }
.checkout-finish span { font:800 16px var(--body); }
.checkout-finish small { margin-top:4px; font:600 10px var(--body); letter-spacing:0; }
.checkout-reassurance { gap:20px; margin-top:16px; color:#5f685d; font-size:10px; }
.checkout-reassurance span { display:flex; align-items:center; gap:5px; }
.checkout-reassurance svg { width:14px; color:#568600; }
.checkout-error { border-radius:7px; }
.secure-loading { background:rgba(10,13,10,.94); }
.pix-screen { background:#f5f6f3; }
.pix-card { border:1px solid #d5dad2; border-radius:12px; box-shadow:0 24px 70px rgba(12,16,12,.12); }
.pix-card h1 { font:700 31px/1.12 var(--body); letter-spacing:-.04em; text-transform:none; }
.pix-amount { color:#588a00; font:800 38px var(--body); letter-spacing:-.05em; }
.pix-qr, .pix-code { border-radius:7px; }

/* Policies */
.policy-layout { width: var(--shell); margin: 60px auto 110px; display: grid; grid-template-columns: 260px 1fr; gap: 70px; align-items: start; }
.policy-nav { position: sticky; top: 118px; display: grid; border: 1px solid var(--line); }
.policy-nav a { padding: 14px 16px; border-bottom: 1px solid var(--line); color: #b1b8af; font-size: 12px; }
.policy-nav a:last-child { border: 0; }
.policy-nav a:hover { background: #151815; color: var(--green); }
.policy-content section { scroll-margin-top: 120px; padding-bottom: 55px; margin-bottom: 55px; border-bottom: 1px solid var(--line); }
.policy-content h2 { margin: 0 0 16px; font: 900 43px var(--display); text-transform: uppercase; }
.policy-content h3 { margin: 28px 0 8px; font: 800 21px var(--display); text-transform: uppercase; }
.policy-content p, .policy-content li { color: #b3bab1; line-height: 1.75; font-size: 14px; }
.policy-content a { color: var(--green); text-decoration: underline; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #080a08; padding: 70px max(20px,calc((100vw - 1240px)/2)) 25px; }
.footer-claw { display: flex; align-items: center; gap: 24px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer-claw img { width: 66px; height: 80px; object-fit: contain; }
.footer-claw p { margin: 0; font: italic 800 31px/.9 var(--display); text-transform: uppercase; }
.footer-claw strong { color: var(--green); }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 50px; padding: 45px 0; }
.footer-grid > div { display: grid; align-content: start; gap: 11px; }
.footer-grid h3 { margin: 0 0 7px; font: 800 19px var(--display); text-transform: uppercase; color: white; }
.footer-grid a, .footer-grid span { color: #8e968c; font-size: 12px; line-height: 1.5; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 30px; color: #6d746b; font-size: 10px; line-height: 1.6; }
.footer-bottom p { max-width: 760px; margin: 0; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 190px 1fr 150px; }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 15px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .home-hero__inner { grid-template-columns: 1fr 1fr; }
  .cart-page { grid-template-columns: 1fr 340px; gap: 38px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 28px, 680px); }
  .utility-bar { justify-content: center; min-height: 30px; font-size: 9px; }
  .utility-bar span:not(:first-child) { display: none; }
  .site-header { height: 68px; grid-template-columns: 1fr auto; padding: 0 14px; }
  .brand { width: 160px; }
  .brand img { width: 145px; }
  .desktop-nav { display: none; }
  .header-actions { gap: 4px; }
  .menu-button { display: inline-grid; }
  .cart-button { width: 47px; min-width: 47px; padding: 0; justify-content: center; transform: none; }
  .cart-button > * { transform: none; }
  .cart-button span { display: none; }
  .cart-button b { position: absolute; margin: -33px 0 0 32px; }
  .mobile-nav { position: fixed; left: 0; right: 0; top: 98px; background: #0c0f0c; z-index: var(--z-mobile-nav); padding: 16px; border-bottom: 1px solid var(--line); display: grid; transform: translateY(-140%); visibility: hidden; transition: transform .25s,visibility .25s; }
  .mobile-nav a { padding: 14px; border-bottom: 1px solid var(--line); font: 800 19px var(--display); text-transform: uppercase; }
  .mobile-menu-open .mobile-nav { transform: translateY(0); visibility: visible; }
  .home-hero, .home-hero__inner { min-height: 0; }
  .home-hero::after { top: 34%; right: -18%; width: 118%; clip-path: polygon(24% 0,100% 0,100% 100%,0 100%); }
  .home-hero__inner { grid-template-columns: 1fr; grid-template-areas: "copy" "product" "buy"; align-content: start; }
  .hero-copy { width: 100%; padding: 48px 0 0; text-align: left; }
  .hero-copy h1 { max-width: 620px; font-size: clamp(56px,14vw,82px); }
  .hero-copy p { max-width: 600px; font-size: 15px; }
  .hero-buybox { max-width: 600px; padding: 0 0 var(--space-2xl); }
  .hero-product { height: clamp(330px,70vw,470px); align-self: auto; margin-top: var(--space-sm); }
  .hero-product::before { width: min(92vw,510px); bottom: 15px; }
  .hero-product::after { width: min(82vw,440px); bottom: 0; }
  .hero-product img { width: min(94vw,550px); max-height: 100%; }
  .hero-product-note { left: 0; bottom: 24px; }
  .hero-slash { display: none; }
  .benefit-strip__inner { grid-template-columns: repeat(2,1fr); }
  .benefit { border-bottom: 1px solid var(--line); }
  .section-head { align-items: start; flex-direction: column; }
  .showcase-head { align-items: start; flex-direction: column; gap: var(--space-sm); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-card__media { height: 320px; }
  .product-card__media > img { height: 285px; }
  .campaign-banner { grid-template-columns: 1fr; }
  .campaign-banner__visual { min-height: 350px; order: -1; }
  .campaign-banner__visual img { height: 365px; }
  .flavor-guide__inner { grid-template-columns: 1fr; gap: 35px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-story__inner { grid-template-columns: 1fr; gap: 30px; }
  .cart-page { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .checkout-shell { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .policy-layout { grid-template-columns: 1fr; gap: 35px; }
  .policy-nav { position: static; grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .button { min-height: 50px; }
  .hero-copy { padding-top: var(--space-xl); }
  .hero-kicker { margin-bottom: 14px; font-size: 9px; }
  .hero-copy h1 { max-width: 390px; font-size: clamp(44px,13.4vw,57px); line-height: .84; }
  .hero-copy p { max-width: 390px; font-size: 14px; line-height: 1.48; margin-top: 17px; }
  .hero-buybox { padding: 0 0 var(--space-xl); }
  .hero-pack { padding: var(--space-sm); }
  .hero-pack strong { font-size: 18px; }
  .hero-pack b { font-size: 26px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-buybox .hero-actions .button { min-width: 0; }
  .hero-proof { justify-content: space-between; gap: 6px; font-size: 8px; }
  .hero-proof span { gap: 5px; }
  .hero-proof span::before { width: 5px; height: 5px; }
  .hero-product { height: 315px; margin-top: var(--space-xs); }
  .hero-product img { width: min(94vw,390px); max-height: 310px; object-position: center bottom; transform: none; }
  .hero-product-note { left: 0; bottom: 18px; padding: 8px 10px; font-size: 8px; }
  .hero-product-note b { font-size: 18px; }
  .benefit-strip__inner { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .benefit { min-height: 74px; display: grid; grid-template-columns: 22px 1fr; gap: 8px; padding: 12px 10px; border-left: 0 !important; border-right: 1px solid var(--line); }
  .benefit:nth-child(2n) { border-right: 0; }
  .benefit svg { width: 22px; }
  .benefit strong { font-size: 12px; line-height: 1.05; }
  .benefit small { font-size: 10px; line-height: 1.2; }
  .products-section { padding: var(--space-2xl) 0 var(--space-3xl); }
  .section-head h2 { font-size: 55px; }
  .section-head--catalog { margin-bottom: var(--space-xl); }
  .section-head--catalog h2 { font-size: 42px; line-height: .9; }
  .section-head--catalog p { font-size: 13px; line-height: 1.55; }
  .showcase + .showcase { margin-top: var(--space-3xl); }
  .showcase-head { margin-bottom: var(--space-md); padding-bottom: var(--space-sm); }
  .showcase-head h3 { font-size: 38px; }
  .showcase-head p { font-size: 12px; }
  .showcase--limited { padding: var(--space-md); }
  .filter-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
  .filter-button { min-height: 44px; padding: 9px 7px; white-space: normal; line-height: 1.15; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: var(--space-sm); }
  .product-card__media { height: 245px; }
  .product-card__media > img { height: 220px; }
  .product-card__body { padding: var(--space-md); }
  .product-card__body h3 { min-height: 0; margin: 0 0 var(--space-xs); font-size: 22px; }
  .product-card__body > p { display: none; }
  .product-card__price { gap: var(--space-2xs); margin: 0 0 var(--space-sm); padding: var(--space-sm) 0 0; }
  .product-card__price .price-before { font-size: 9px; }
  .product-card__price .price-now { gap: 6px; }
  .product-card__price .price-now span { font-size: 8px; }
  .product-card__price strong { font-size: 30px; }
  .product-card__price .price-per-unit { font-size: 9px; }
  .product-card__actions .button { min-height: 48px; padding: 0 var(--space-xs); font-size: 15px; white-space: nowrap; }
  .product-badge { top: var(--space-xs); right: var(--space-xs); left: auto; padding: 6px 7px; font-size: 8px; }
  .pack-visual--card .pack-visual__cans { left: 0; right: 0; top: 5px; height: calc(100% - 10px); margin: 0; }
  .pack-visual--card .pack-visual__can { max-width: none !important; }
  .campaign-banner { width: 100%; margin-bottom: 75px; }
  .campaign-banner__copy { padding: 38px 24px; }
  .flavor-guide { padding: 68px 0; }
  .flavor-guide__intro h2 { font-size: 48px; }
  .flavor-profiles a { min-height: 0; grid-template-columns: 1fr auto; gap: 8px 16px; padding: 20px 0; }
  .flavor-profiles span { grid-column: 1 / -1; }
  .flavor-profiles b { grid-column: 2; grid-row: 1; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(2,78px); grid-row: 2; }
  .gallery-thumb { height: 78px; }
  .gallery-main { min-height: 460px; }
  .gallery-main > img { max-height: 420px; }
  .pack-visual--gallery { height: 410px; }
  .product-info { padding-top: 0; }
  .product-info h1 { font-size: 54px; }
  .product-price-block { margin: var(--space-lg) 0; }
  .product-price { font-size: 52px; }
  .purchase-row { grid-template-columns: 116px 1fr; }
  .qty-control { width: 116px; grid-template-columns: 36px 1fr 36px; }
  .product-buy-cta { min-height: 60px; font-size: 22px; }
  .product-guarantees { grid-template-columns: 1fr; }
  .nutrition-grid { grid-template-columns: 1fr; }
  .product-review-promise { margin-top: 48px; align-items: stretch; flex-direction: column; gap: 24px; }
  .product-review-promise .button { width: 100%; }
  .mobile-product-bar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--space-sm); position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-mobile-bar); background: #0b0e0b; border-top: 1px solid #343934; padding: 10px 14px max(10px,env(safe-area-inset-bottom)); box-shadow: 0 -10px 40px rgba(0,0,0,.45); }
  .mobile-product-bar span { display: block; color: var(--muted); font-size: 9px; }
  .mobile-product-bar small { display: block; margin-top: 2px; color: #8f978d; font-size: 8px; }
  .mobile-product-bar strong { font: 800 23px var(--display); }
  .mobile-product-bar .button { min-height: 48px; padding: 0 var(--space-md); font-size: 16px; }
  .cart-page__items .cart-line, .cart-line { grid-template-columns: 86px 1fr; gap: 12px; }
  .cart-page__items .cart-line__media, .cart-line__media { height: 105px; }
  .cart-page__items .cart-line__media > img, .cart-line__media > img { max-height: 95px; }
  .cart-line__top a { font-size: 18px; }
  .cart-line__bottom { align-items: end; flex-direction: column-reverse; }
  .cart-line__bottom strong { align-self: end; }
  .checkout-body { background:#fff; }
  .checkout-header { min-height:64px; padding:0 16px; }
  .checkout-brand img { width:146px; height:auto; }
  .checkout-safe span { display: none; }
  .checkout-shell { width:100%; margin:0 0 40px; gap:0; }
  .checkout-main { padding:28px 20px 32px; background:#fff; }
  .checkout-progress { grid-template-columns:repeat(3,1fr); width:100%; margin:0 0 36px; }
  .progress-step { min-width:0; gap:7px; font-size:10px; }
  .progress-step span { background:#fff; padding-right:6px; }
  .progress-step b { width:25px; height:25px; }
  .progress-step:not(:last-child)::after { left:25px; right:0; top:12px; }
  .checkout-step .step-heading h1, .checkout-step .step-heading h2 { font-size:27px; }
  .step-heading p { font-size:13px; }
  .checkout-summary { position:static; order:-1; padding:0; border:0; border-radius:0; border-bottom:1px solid #252a24; box-shadow:none; }
  .checkout-summary__toggle { width:100%; min-height:68px; display:flex; justify-content:space-between; align-items:center; padding:12px 20px; border:0; background:#101310; color:#f4f6f1; text-align:left; }
  .checkout-summary__toggle span { display:grid; gap:2px; }
  .checkout-summary__toggle small { color:#a9b1a5; font:500 10px var(--body); letter-spacing:0; }
  .checkout-summary__toggle strong { color:#9ddc28; font-size:11px; }
  .checkout-summary__toggle b { font:800 22px var(--body); letter-spacing:-.04em; }
  .checkout-summary__content { display:none; padding:22px 20px 24px; }
  .checkout-summary__content.is-open { display:block; }
  .checkout-summary h2 { font-size:19px; margin-bottom:0; }
  .checkout-mini-items { max-height:210px; }
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
  .checkout-body .button--secondary { min-height:42px; }
  .order-bump { padding:20px 12px 13px; }
  .order-bump label { grid-template-columns:20px 48px 1fr; gap:9px; }
  .order-bump label > img { width:46px; height:54px; }
  .order-bump i { grid-column:3; justify-self:start; margin-top:2px; padding:6px 8px; }
  .checkout-pay-total strong { font-size:30px; }
  .checkout-reassurance { gap:12px; font-size:9px; }
  .pix-card { padding:24px 18px; }
  .pix-card h1 { font-size:28px; }
  .pix-qr { width:210px; height:210px; }
  .policy-nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Checkout v14 — Monster dark + neon */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.checkout-body {
  color-scheme: dark;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(149,214,0,.1), transparent 27rem),
    linear-gradient(135deg, #050605 0%, #0a0d09 58%, #050605 100%);
}
.checkout-body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background: repeating-linear-gradient(118deg, transparent 0 38px, rgba(149,214,0,.055) 39px 40px);
}
.checkout-header {
  position: relative;
  z-index: 2;
  min-height: 76px;
  padding: 0 max(24px,calc((100vw - 1120px)/2));
  background: rgba(5,6,5,.94);
  color: var(--white);
  border-bottom: 1px solid #252a23;
  backdrop-filter: blur(12px);
}
.checkout-brand { display: inline-flex; align-items: center; gap: 11px; }
.checkout-brand img { width: 31px; height: 44px; object-fit: contain; }
.checkout-brand span { font: 900 22px/.8 var(--display); letter-spacing: .045em; }
.checkout-brand b { display: block; margin-top: 5px; color: var(--green); font: 800 9px/1 var(--body); letter-spacing: .32em; }
.checkout-safe { color: #c2c8bd; font: 700 11px var(--body); }
.checkout-safe svg { width: 19px; color: var(--green); }
.checkout-shell {
  position: relative;
  z-index: 1;
  width: min(1120px,calc(100% - 40px));
  grid-template-columns: minmax(0,680px) 370px;
  gap: 34px;
  align-items: start;
  margin: 38px auto 88px;
}
.checkout-main {
  padding: 34px;
  background: rgba(14,17,14,.95);
  border: 1px solid #2a3028;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.checkout-progress { margin: 0 0 38px; }
.progress-step { color: #778073; font: 700 11px var(--body); }
.progress-step span { color: inherit; background: #0e110e; }
.progress-step:not(:last-child)::after { background: #343a32; }
.progress-step b { border: 1px solid #394137; background: #171b16; color: #a8b0a3; }
.progress-step.is-active { color: #f6f8f2; }
.progress-step.is-active b {
  border-color: var(--green);
  background: var(--green);
  color: #060a02;
  box-shadow: 0 0 0 5px rgba(149,214,0,.13), 0 0 22px rgba(149,214,0,.2);
}
.progress-step.is-done { color: #b9c4ad; }
.progress-step.is-done b { border-color: #648f09; background: #263514; color: var(--green); }
.progress-step.is-done:not(:last-child)::after { background: #648f09; }
.checkout-step .step-heading h1,
.checkout-step .step-heading h2 {
  margin-bottom: 8px;
  color: #fff;
  font: 900 clamp(32px,4.2vw,46px)/.94 var(--display);
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.step-heading p { color: #a9b1a5; font-size: 13px; }
.field label { color: #e4e8df; font-size: 11px; font-weight: 700; }
.field label small { color: #7f897a; }
.field input {
  min-height: 56px;
  border: 1px solid #394037;
  border-radius: 10px;
  background: #090b09;
  color: #fff;
  caret-color: var(--green);
}
.field input::placeholder { color: #70796d; }
.field input:hover { border-color: #566051; }
.field input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(149,214,0,.12); }
.field-error { color: #ff777c; }
.step-actions { gap: 10px; margin-top: 28px; }
.step-actions .button { min-width: 220px; border-radius: 11px; }
.checkout-body .button { clip-path: none; }
.checkout-body .button--primary {
  min-height: 60px;
  border: 1px solid #b8fa14;
  border-radius: 11px;
  background: linear-gradient(180deg,#adf000 0%,#95d600 100%);
  color: #070a03;
  box-shadow: 0 14px 34px rgba(149,214,0,.18);
  font: 900 19px var(--display);
  letter-spacing: .025em;
  text-transform: uppercase;
}
.checkout-body .button--primary:hover { background: #b8f52a; box-shadow: 0 17px 40px rgba(149,214,0,.28); transform: translateY(-2px); }
.checkout-body .button--primary:focus-visible { outline: 3px solid rgba(184,245,42,.35); outline-offset: 3px; }
.checkout-body .button--secondary {
  min-height: 60px;
  padding: 0 20px;
  border: 1px solid #3a4237;
  border-radius: 11px;
  background: #121512;
  color: #cbd1c6;
  box-shadow: none;
  font: 800 14px var(--body);
  text-decoration: none;
}
.checkout-body .button--secondary:hover { border-color: #596452; color: #fff; }
.shipping-title { color: #e2e7dd; font: 800 12px var(--body); }
.shipping-card {
  border-color: #363d34;
  border-radius: 10px;
  background: #0a0d0a;
  color: #eef1eb;
}
.shipping-card:has(input:checked) { border-color: var(--green); background: #16210b; box-shadow: 0 0 0 1px var(--green); }
.shipping-card input { accent-color: var(--green); }
.shipping-card small { color: #929b8d; }
.shipping-card > strong { color: var(--green); }
.checkout-summary {
  top: 22px;
  padding: 28px;
  background: linear-gradient(180deg,#121612,#090b09);
  border: 1px solid #30372d;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
}
.checkout-summary h2 { color: #fff; font: 900 28px var(--display); letter-spacing: -.015em; text-transform: uppercase; }
.summary-heading > span { color: var(--green); font: 700 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.checkout-mini-item__img { background: #1a1f18; border-color: #323a2f; border-radius: 9px; }
.checkout-mini-item__img b { background: var(--green); color: #071000; }
.checkout-totals,
.checkout-total--final,
.summary-benefits { border-color: #2d342b; }
.checkout-total { color: #aab3a5; }
.checkout-total strong { color: #f4f6f1; }
.checkout-total--final strong { color: var(--green); font: 900 36px var(--display); }
.summary-benefits { color: #9ca698; }
.summary-benefits svg { color: var(--green); }
.pix-method {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 13px;
  border: 1px solid #3c4636;
  border-radius: 12px;
  background: linear-gradient(135deg,#111811,#0b0e0b);
  padding: 15px;
}
.pix-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(50,188,173,.35);
  border-radius: 12px;
  background: rgba(50,188,173,.08);
}
.pix-mark { width: 27px; height: 27px; color: #32bcad; fill: currentColor; stroke: none; }
.pix-method strong { color: #fff; font-size: 16px; }
.pix-method small { color: #9ba598; }
.pix-method__badge { padding: 7px 9px; border-radius: 999px; background: rgba(149,214,0,.1); color: var(--green); font: 800 9px var(--mono); text-transform: uppercase; }
.order-bump {
  border: 1px solid #4c6430;
  border-radius: 12px;
  background: #121810;
  padding: 22px 15px 15px;
}
.order-bump__tag { border: 1px solid #5b7e20; border-radius: 999px; background: #1b260f; color: var(--green); font: 800 9px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.order-bump strong { color: #f3f5f0; }
.order-bump p { color: #9ea799; }
.order-bump p b { color: var(--green); }
.order-bump i { background: #253414; color: var(--green); font-weight: 800; }
.checkout-pay-total { border-color: #31372f; }
.checkout-pay-total span { color: #a4ada0; font-weight: 700; }
.checkout-pay-total strong { color: var(--green); font: 900 40px var(--display); letter-spacing: -.025em; }
.checkout-finish { min-height: 70px; }
.checkout-finish span { font: 900 22px var(--display); letter-spacing: .025em; }
.checkout-finish small { margin-top: 3px; font: 700 9px var(--body); letter-spacing: 0; text-transform: none; }
.checkout-reassurance { color: #8e988a; }
.checkout-reassurance svg { color: var(--green); }
.checkout-error { border-color: #74383b; border-radius: 9px; background: #2b1113; color: #ff9b9f; }
.pix-screen { position: relative; z-index: 1; background: transparent; color: var(--white); }
.pix-card { border: 1px solid #30372d; border-radius: 18px; background: #101310; box-shadow: 0 28px 80px rgba(0,0,0,.42); }
.pix-icon--large { width: 58px; height: 58px; margin: 0 auto 14px; }
.pix-icon--large .pix-mark { width: 34px; height: 34px; }
.pix-card h1 { color: #fff; font: 900 38px/.95 var(--display); text-transform: uppercase; }
.pix-card > p { color: #a7b0a2; }
.pix-amount { color: var(--green); font: 900 44px var(--display); }
.pix-qr { border-color: #394137; border-radius: 12px; background: #fff; padding: 6px; }
.pix-code { border-color: #343b32; border-radius: 9px; background: #080a08; color: #bac2b5; }
.pix-instruction span { color: #a6afa1; }
.payment-success-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; background: rgba(149,214,0,.12); color: var(--green); }
.payment-success-icon svg { width: 34px; }
.pix-card .button.is-copied { border-color: #caff43; background: #caff43; }
.secure-loading { background: rgba(5,6,5,.96); }
.loader-ring { border-color: #313831; border-top-color: var(--green); }

@media (max-width: 820px) {
  .checkout-body { background: #070907; }
  .checkout-header { min-height: 66px; padding: 0 16px; }
  .checkout-brand img { width: 27px; height: 39px; }
  .checkout-brand span { font-size: 19px; }
  .checkout-shell { width: 100%; display: flex; flex-direction: column; margin: 0 0 36px; gap: 0; }
  .checkout-summary { width: 100%; position: static; order: -1; padding: 0; border: 0; border-bottom: 1px solid #2c322a; border-radius: 0; box-shadow: none; }
  .checkout-summary__toggle { width: 100%; min-height: 72px; padding: 12px 18px; background: #0e120e; }
  .checkout-summary__toggle strong,
  .checkout-summary__toggle b { color: var(--green); }
  .checkout-summary__content { padding: 22px 18px 25px; background: #0d100d; }
  .checkout-main { padding: 28px 18px 34px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .progress-step span { background: #070907; }
  .checkout-progress { margin-bottom: 34px; }
  .checkout-step .step-heading h1,
  .checkout-step .step-heading h2 { font-size: 36px; }
  .step-heading { margin-bottom: 24px; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
  .checkout-body .button--secondary { min-height: 52px; }
  .pix-method { grid-template-columns: 46px 1fr; }
  .pix-method__badge { grid-column: 2; justify-self: start; margin-top: -5px; }
  .order-bump label { grid-template-columns: 20px 52px 1fr; }
  .order-bump i { grid-column: 3; }
  .checkout-pay-total strong { font-size: 36px; }
  .checkout-reassurance { flex-wrap: wrap; }
  .pix-card { padding: 26px 18px; }
  .pix-card h1 { font-size: 35px; }
}
