:root {
  --bg: #080705;
  --bg-soft: #100d08;
  --surface: #15110b;
  --surface-2: #1d160d;
  --surface-3: #251a0c;
  --gold: #d99a18;
  --gold-2: #f7c94f;
  --gold-3: #ffe6a0;
  --red: #b71920;
  --red-2: #e2382e;
  --green: #22c55e;
  --text: #fff9ec;
  --muted: #b8ae9d;
  --line: rgba(255, 213, 111, 0.2);
  --line-strong: rgba(255, 213, 111, 0.48);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  --radius: 24px;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(217,154,24,.11), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(183,25,32,.08), transparent 28%),
    var(--bg);
  font-family: var(--font-body);
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.ambient-orbs { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.ambient-orbs span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .14; }
.ambient-orbs span:nth-child(1) { width: 380px; height: 380px; background: #f2a916; top: 10%; left: -180px; }
.ambient-orbs span:nth-child(2) { width: 320px; height: 320px; background: #9d151b; top: 45%; right: -120px; }
.ambient-orbs span:nth-child(3) { width: 260px; height: 260px; background: #f5c752; bottom: 5%; left: 35%; opacity: .08; }

.site-header {
  position: fixed; inset: 0 0 auto; height: 78px; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled { background: rgba(8,7,5,.88); border-color: var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-crown { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 14px; color: var(--gold-2); background: linear-gradient(145deg, rgba(247,201,79,.15), rgba(0,0,0,.2)); box-shadow: inset 0 0 22px rgba(247,201,79,.08); font-size: 22px; }
.brand strong { display: block; font: 800 18px/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.brand small { display: block; margin-top: 4px; color: var(--gold-2); font-size: 10px; text-transform: uppercase; letter-spacing: .28em; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.tracking-link { color: #e8dfce; font-size: 13px; font-weight: 700; padding: 12px 14px; border-radius: 12px; transition: .2s; }
.tracking-link:hover { color: var(--gold-2); background: rgba(255,255,255,.04); }
.header-cart { border: 1px solid var(--line-strong); border-radius: 16px; background: linear-gradient(145deg, rgba(39,28,12,.95), rgba(13,11,8,.95)); color: white; display: flex; align-items: center; gap: 10px; padding: 8px 10px 8px 12px; cursor: pointer; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.header-cart .cart-icon { font-size: 20px; }
.header-cart span:nth-child(2) { display: flex; flex-direction: column; align-items: flex-start; }
.header-cart small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.header-cart strong { color: var(--gold-2); font-size: 13px; margin-top: 2px; }
.header-cart > b { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: var(--red); font-size: 11px; }

.hero-section { min-height: 760px; position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 78px; }
.hero-media { position: absolute; inset: 0; }
.hero-media::after { content:""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,4,3,.98) 0%, rgba(5,4,3,.88) 38%, rgba(5,4,3,.32) 72%, rgba(5,4,3,.68) 100%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; filter: saturate(1.05) contrast(1.04); transform: scale(1.02); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(8,7,5,.18) 60%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.15fr) 340px; gap: 90px; align-items: center; }
.hero-copy { max-width: 720px; }
.royal-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px; border: 1px solid rgba(255,214,112,.24); background: rgba(16,13,8,.62); border-radius: 999px; color: var(--gold-3); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 800; backdrop-filter: blur(12px); }
.royal-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--red-2); box-shadow: 0 0 16px var(--red-2); }
.hero-copy h1 { margin: 24px 0 18px; max-width: 800px; font: 800 clamp(44px, 6vw, 84px)/.98 var(--font-display); letter-spacing: -.045em; text-wrap: balance; }
.hero-copy h1 em { font-style: normal; color: transparent; background: linear-gradient(180deg, #fff3c7 0%, #f4c64a 46%, #a96508 100%); -webkit-background-clip: text; background-clip: text; text-shadow: 0 12px 38px rgba(236,169,29,.12); }
.hero-copy > p { margin: 0; max-width: 620px; color: #d3c9b9; font-size: clamp(15px, 1.6vw, 19px); line-height: 1.7; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.primary-cta { display: inline-flex; align-items: center; gap: 22px; background: linear-gradient(135deg, #d83a2d, #961018); color: white; border: 1px solid rgba(255,128,103,.45); padding: 16px 18px 16px 22px; border-radius: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; box-shadow: 0 16px 38px rgba(182,25,32,.28), inset 0 1px 0 rgba(255,255,255,.18); transition: transform .2s, box-shadow .2s; }
.primary-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(182,25,32,.38); }
.primary-cta b { width: 31px; height: 31px; border-radius: 10px; display: grid; place-items: center; background: rgba(0,0,0,.22); }
.trust-pill { display: flex; align-items: center; gap: 10px; padding: 10px 13px; border-radius: 15px; background: rgba(10,9,7,.66); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.trust-pill > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #111; background: var(--gold-2); font-weight: 900; }
.trust-pill b, .trust-pill small { display: block; }
.trust-pill b { font-size: 12px; }
.trust-pill small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.hero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta > span { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.08); background: rgba(8,7,5,.52); padding: 9px 11px; border-radius: 11px; color: #cfc4b4; font-size: 11px; backdrop-filter: blur(10px); }
.hero-meta b { color: white; }
.store-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
.store-status.closed i { background: #f04444; box-shadow: 0 0 14px #f04444; }
.hero-proof { align-self: end; margin-bottom: 108px; padding: 24px; background: linear-gradient(150deg, rgba(31,22,10,.88), rgba(8,7,5,.82)); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); backdrop-filter: blur(16px); position: relative; overflow: hidden; }
.hero-proof::before { content:""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-2), transparent); }
.proof-label { color: var(--gold-2); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; }
.hero-proof > strong { display: block; margin-top: 10px; font: 800 35px/1 var(--font-display); }
.hero-proof > p { color: var(--muted); margin: 8px 0 0; font-size: 12px; }
.proof-divider { height: 1px; background: rgba(255,255,255,.08); margin: 20px 0; }
.hero-proof ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.hero-proof li { display: flex; align-items: center; gap: 11px; color: #e0d7c9; font-size: 12px; font-weight: 700; }
.hero-proof li span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: rgba(247,201,79,.1); color: var(--gold-2); border: 1px solid var(--line); font-size: 9px; }

.trust-strip { position: relative; z-index: 3; margin-top: -46px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-grid article { display: flex; align-items: center; gap: 14px; min-height: 110px; padding: 18px; background: linear-gradient(145deg, rgba(24,19,12,.96), rgba(11,9,6,.96)); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 16px 40px rgba(0,0,0,.26); }
.trust-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg, rgba(247,201,79,.18), rgba(183,25,32,.08)); border: 1px solid var(--line); font-size: 22px; }
.trust-grid b, .trust-grid small { display: block; }
.trust-grid b { font-size: 13px; }
.trust-grid small { margin-top: 5px; color: var(--muted); line-height: 1.5; font-size: 10px; }

.catalog-section { padding-top: 100px; padding-bottom: 110px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section-kicker { color: var(--gold-2); text-transform: uppercase; letter-spacing: .2em; font-weight: 900; font-size: 10px; }
.section-heading h2, .credibility-copy h2 { margin: 10px 0 12px; font: 800 clamp(34px, 5vw, 60px)/1.08 var(--font-display); letter-spacing: -.035em; }
.section-heading h2 em { font-style: normal; color: var(--gold-2); }
.section-heading p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 13px; }
.search-box { width: min(360px, 100%); display: flex; align-items: center; gap: 10px; padding: 0 14px; background: rgba(20,16,10,.9); border: 1px solid var(--line); border-radius: 15px; transition: border-color .2s, box-shadow .2s; }
.search-box:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217,154,24,.08); }
.search-box span { color: var(--gold-2); font-size: 22px; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: white; padding: 15px 0; font-size: 12px; }
.search-box input::placeholder { color: #7d7467; }
.category-nav { position: sticky; top: 78px; z-index: 16; display: flex; gap: 9px; overflow-x: auto; margin: 28px 0; padding: 10px 0; background: linear-gradient(var(--bg) 65%, transparent); scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav button { white-space: nowrap; border: 1px solid rgba(255,255,255,.08); background: #12100c; color: #c9bead; padding: 11px 15px; border-radius: 999px; font-size: 11px; font-weight: 800; cursor: pointer; transition: .2s; }
.category-nav button:hover { border-color: var(--line-strong); color: white; }
.category-nav button.active { color: #180f03; border-color: #ffd96e; background: linear-gradient(135deg, #ffe187, #cc8410); box-shadow: 0 9px 24px rgba(217,154,24,.2); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { position: relative; display: flex; flex-direction: column; overflow: hidden; min-width: 0; border: 1px solid rgba(255,213,111,.13); border-radius: 23px; background: linear-gradient(160deg, #17130d, #0e0c09 72%); box-shadow: 0 20px 50px rgba(0,0,0,.28); transition: transform .25s, border-color .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(255,213,111,.42); box-shadow: 0 28px 66px rgba(0,0,0,.4); }
.product-card::after { content:""; position: absolute; inset: auto 0 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(247,201,79,.65), transparent); opacity: 0; transition: .25s; }
.product-card:hover::after { opacity: 1; }
.product-image { position: relative; aspect-ratio: 1.25/1; overflow: hidden; background: #0b0906; }
.product-image::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,7,5,.78)); pointer-events: none; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-badge { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 7px 10px; border-radius: 999px; background: linear-gradient(135deg, #d52d27, #8b1118); border: 1px solid rgba(255,112,91,.4); box-shadow: 0 8px 20px rgba(156,19,23,.32); text-transform: uppercase; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.favorite-mark { position: absolute; z-index: 2; right: 13px; top: 13px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; background: rgba(8,7,5,.68); border: 1px solid var(--line); color: var(--gold-2); backdrop-filter: blur(10px); }
.product-content { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.product-category { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 8px; font-weight: 900; }
.product-content h3 { margin: 7px 0 8px; font: 800 20px/1.22 var(--font-display); letter-spacing: -.02em; }
.product-content p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.62; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 17px; }
.product-price small { display: block; color: #83796b; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.product-price strong { display: block; margin-top: 3px; color: var(--gold-2); font-size: 20px; }
.add-product { border: 1px solid rgba(255,211,107,.46); background: linear-gradient(145deg, #31210a, #171006); color: var(--gold-3); border-radius: 13px; padding: 11px 14px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; transition: .2s; }
.add-product:hover { background: linear-gradient(135deg, #f3c247, #b36d09); color: #160d02; transform: translateY(-1px); }
.empty-state { grid-column: 1/-1; padding: 54px 20px; text-align: center; border: 1px dashed var(--line); border-radius: 22px; color: var(--muted); }

.credibility-section { padding: 0 0 120px; }
.credibility-card { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; overflow: hidden; padding: 58px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, #171109, #0b0907); box-shadow: var(--shadow); }
.credibility-card::before { content:""; position: absolute; width: 440px; height: 440px; border-radius: 50%; right: -180px; top: -180px; background: radial-gradient(circle, rgba(217,154,24,.18), transparent 67%); }
.credibility-copy { position: relative; z-index: 2; }
.credibility-copy h2 { max-width: 730px; font-size: clamp(30px, 4vw, 48px); }
.credibility-copy > p { color: var(--muted); line-height: 1.7; font-size: 13px; max-width: 650px; }
.credibility-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.credibility-badges span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; color: #e4dbcc; font-size: 10px; font-weight: 700; }
.mini-tracker { position: relative; z-index: 2; display: flex; justify-content: center; }
.tracker-phone { width: 280px; padding: 18px; border: 1px solid var(--line-strong); border-radius: 28px; background: #0b0a08; box-shadow: 0 28px 60px #000; transform: rotate(3deg); }
.tracker-head { display: flex; justify-content: space-between; color: var(--gold-2); font-weight: 900; font-size: 11px; margin-bottom: 18px; }
.tracker-head i { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px var(--green); }
.tracker-line { position: relative; display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 10px; border-radius: 14px; color: #7f776b; font-size: 11px; font-weight: 700; }
.tracker-line + .tracker-line::before { content:""; position: absolute; width: 1px; height: 15px; left: 27px; top: -8px; background: rgba(255,255,255,.1); }
.tracker-line b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: #17130d; }
.tracker-line.done { color: #dad0c0; }
.tracker-line.done b { background: rgba(34,197,94,.12); color: #5dde88; border: 1px solid rgba(34,197,94,.24); }
.tracker-line.active { color: white; background: linear-gradient(135deg, rgba(217,154,24,.19), rgba(217,154,24,.03)); border: 1px solid var(--line); }
.tracker-line.active b { color: #170f04; background: var(--gold-2); box-shadow: 0 0 22px rgba(247,201,79,.25); }

.mobile-cart-bar { display: none; position: fixed; z-index: 25; left: 50%; bottom: 14px; transform: translateX(-50%); width: min(94vw, 620px); align-items: center; gap: 11px; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 18px; background: linear-gradient(145deg, #231708, #0d0b08); color: white; box-shadow: 0 20px 50px rgba(0,0,0,.55); cursor: pointer; }
.mobile-cart-count { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--red); font-weight: 900; }
.mobile-cart-bar > span:nth-child(2) { display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.mobile-cart-bar small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.mobile-cart-bar b { color: var(--gold-2); font-size: 13px; margin-top: 2px; }
.mobile-cart-bar > strong { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }

.product-modal, .success-modal { border: 0; padding: 0; background: transparent; color: white; }
.product-modal { width: min(930px, 94vw); }
.product-modal::backdrop, .success-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(9px); }
.product-modal-shell { position: relative; display: grid; grid-template-columns: 46% 54%; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 26px; background: #100d09; box-shadow: 0 35px 90px #000; }
.modal-close { position: absolute; z-index: 4; right: 14px; top: 14px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: rgba(0,0,0,.68); color: white; font-size: 24px; cursor: pointer; }
.modal-image-wrap { position: relative; min-height: 600px; background: #080705; }
.modal-image-wrap::after { content:""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(16,13,9,.5)); }
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-image-wrap > span { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 11px; border-radius: 999px; background: var(--red); text-transform: uppercase; letter-spacing: .08em; font-size: 9px; font-weight: 900; }
.modal-content { padding: 30px; max-height: 88vh; overflow-y: auto; }
.modal-header-copy > span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .17em; font-size: 9px; font-weight: 900; }
.modal-header-copy h3 { margin: 9px 0; font: 800 31px/1.15 var(--font-display); }
.modal-header-copy p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 12px; }
.modal-header-copy strong { display: block; color: var(--gold-2); font-size: 23px; margin-top: 14px; }
.modal-content h4 { margin: 24px 0 11px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.add-on-list { display: grid; gap: 8px; }
.add-on-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: #15110c; transition: .2s; }
.add-on-item:has(input:checked) { border-color: var(--gold); background: rgba(217,154,24,.1); }
.add-on-item label { display: flex; align-items: center; gap: 9px; color: #e8dfd1; font-size: 11px; font-weight: 700; cursor: pointer; }
.add-on-item input { accent-color: var(--gold); width: 16px; height: 16px; }
.add-on-item b { color: var(--gold-2); font-size: 11px; }
.field-label { display: block; margin-top: 13px; color: #d9cfbf; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.field-label input, .field-label select, .field-label textarea { width: 100%; margin-top: 7px; padding: 12px 13px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; background: #15110d; color: white; outline: 0; font: 500 12px var(--font-body); text-transform: none; letter-spacing: normal; transition: border-color .2s, box-shadow .2s; }
.field-label input:focus, .field-label select:focus, .field-label textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217,154,24,.07); }
.field-label textarea { min-height: 78px; resize: vertical; }
.modal-footer { position: sticky; bottom: -30px; display: flex; gap: 12px; align-items: center; margin: 23px -30px -30px; padding: 16px 30px; background: rgba(13,11,8,.94); border-top: 1px solid var(--line); backdrop-filter: blur(10px); }
.quantity-control { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; }
.quantity-control button { width: 40px; height: 43px; border: 0; background: #1b160f; color: white; font-size: 20px; cursor: pointer; }
.quantity-control b { width: 34px; text-align: center; font-size: 12px; }
.add-to-cart { flex: 1; border: 0; border-radius: 13px; padding: 14px; background: linear-gradient(135deg, #f4c84d, #b96f08); color: #160e03; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: 11px; cursor: pointer; box-shadow: 0 12px 26px rgba(217,154,24,.2); }

.cart-drawer { position: fixed; inset: 0; z-index: 55; pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.drawer-overlay { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.72); opacity: 0; transition: opacity .28s; backdrop-filter: blur(5px); }
.drawer-panel { position: absolute; right: 0; top: 0; width: min(100%, 610px); height: 100%; display: flex; flex-direction: column; background: #0d0b08; border-left: 1px solid var(--line); transform: translateX(102%); transition: transform .32s cubic-bezier(.2,.8,.2,1); box-shadow: -30px 0 80px #000; }
.cart-drawer.open .drawer-overlay { opacity: 1; }
.cart-drawer.open .drawer-panel { transform: none; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-header span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; font-size: 9px; font-weight: 900; }
.drawer-header h2 { margin: 5px 0 0; font: 800 25px/1 var(--font-display); }
.drawer-header button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: #17130e; color: white; font-size: 24px; cursor: pointer; }
.drawer-scroll { flex: 1; overflow-y: auto; padding: 18px 20px 30px; }
.cart-items { display: grid; gap: 10px; }
.empty-cart { padding: 50px 20px; border: 1px dashed var(--line); border-radius: 20px; text-align: center; color: var(--muted); }
.empty-cart span { display: block; font-size: 34px; margin-bottom: 10px; }
.cart-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 12px; padding: 10px; border: 1px solid rgba(255,255,255,.07); border-radius: 15px; background: #15110c; }
.cart-item img { width: 78px; height: 78px; object-fit: cover; border-radius: 11px; }
.cart-item h4 { margin: 2px 0 5px; font-size: 12px; }
.cart-item p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.cart-item .cart-line-total { display: block; color: var(--gold-2); font-size: 12px; margin-top: 6px; }
.cart-item-controls { display: flex; align-items: center; gap: 5px; margin-top: 8px; }
.cart-item-controls button { width: 27px; height: 27px; border: 1px solid var(--line); border-radius: 8px; background: transparent; color: white; cursor: pointer; }
.cart-item-controls b { width: 24px; text-align: center; font-size: 10px; }
.remove-item { border: 0; background: transparent; color: #df7777; font-size: 16px; cursor: pointer; align-self: start; }
.checkout-section { margin-top: 20px; padding-top: 8px; border-top: 1px solid var(--line); }
.checkout-title { display: flex; align-items: center; gap: 11px; margin: 24px 0 11px; }
.checkout-title > span { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; background: rgba(247,201,79,.12); border: 1px solid var(--line); color: var(--gold-2); font-size: 9px; font-weight: 900; }
.checkout-title h3 { margin: 0; font-size: 13px; }
.checkout-title p { margin: 4px 0 0; color: var(--muted); font-size: 9px; }
.segmented-control { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.segmented-control input { display: none; }
.segmented-control span { display: block; padding: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: #15110d; text-align: center; font-size: 10px; font-weight: 800; cursor: pointer; }
.segmented-control input:checked + span { color: var(--gold-2); border-color: var(--gold); background: rgba(217,154,24,.1); }
.form-grid { display: grid; gap: 10px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.coupon-row { display: flex; gap: 8px; margin-top: 7px; }
.coupon-row input { margin-top: 0; }
.coupon-row button { border: 1px solid var(--gold); background: transparent; color: var(--gold-2); border-radius: 11px; padding: 0 14px; font-size: 10px; font-weight: 900; cursor: pointer; }
#couponFeedback { display: block; margin-top: 6px; color: var(--muted); text-transform: none; letter-spacing: 0; }
.drawer-footer { padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(10,8,6,.96); }
.order-totals { display: grid; gap: 7px; }
.order-totals > div { display: flex; justify-content: space-between; color: #b8ad9e; font-size: 11px; }
.order-totals .total-line { margin-top: 3px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.08); color: white; font-size: 17px; }
.order-totals .total-line b { color: var(--gold-2); }
.finish-order { width: 100%; display: grid; grid-template-columns: 1fr auto; text-align: left; margin-top: 13px; padding: 13px 15px; border: 1px solid rgba(255,100,82,.42); border-radius: 14px; background: linear-gradient(135deg, #d8342b, #8f0e17); color: white; cursor: pointer; box-shadow: 0 14px 30px rgba(150,16,23,.22); }
.finish-order span, .finish-order small { display: block; }
.finish-order span { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.finish-order small { margin-top: 3px; opacity: .8; font-size: 9px; }
.finish-order b { grid-row: 1/3; grid-column: 2; align-self: center; font-size: 20px; }
.finish-order:disabled { opacity: .55; cursor: wait; }
.security-note { margin: 8px 0 0; color: #756d62; text-align: center; font-size: 8px; }

.success-modal { width: min(430px, 92vw); }
.success-shell { padding: 30px; text-align: center; border: 1px solid var(--line-strong); border-radius: 25px; background: linear-gradient(150deg, #19130c, #0b0907); box-shadow: 0 35px 90px #000; }
.success-icon { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 20px; background: rgba(34,197,94,.13); color: #5ce78a; border: 1px solid rgba(34,197,94,.26); font-size: 27px; }
.success-shell > span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 900; }
.success-shell h2 { margin: 8px 0; font: 800 30px/1 var(--font-display); }
.success-shell p { color: var(--muted); line-height: 1.6; font-size: 11px; }
.success-actions { display: grid; gap: 8px; margin-top: 20px; }
.success-actions a { padding: 13px; border-radius: 12px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.success-primary { background: linear-gradient(135deg, #f3c44a, #b26c08); color: #160e03; }
.success-whatsapp { background: linear-gradient(135deg, #27c967, #118c48); color: white; }
.success-close { margin-top: 14px; border: 0; background: transparent; color: #bfb5a5; font-size: 10px; cursor: pointer; }
.toast { position: fixed; z-index: 90; left: 50%; bottom: 24px; transform: translate(-50%, 24px); opacity: 0; pointer-events: none; max-width: min(92vw, 420px); padding: 12px 15px; border: 1px solid var(--line-strong); border-radius: 12px; background: #1c150b; color: white; box-shadow: 0 18px 45px #000; font-size: 11px; text-align: center; transition: .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.error { border-color: rgba(226,56,46,.55); background: #25100e; }

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .7s ease forwards; }
.delay-1 { animation-delay: .18s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-proof { display: none; }
  .hero-copy { padding: 80px 0 90px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .credibility-card { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 24px, 1180px); }
  .site-header { height: 66px; padding: 0 12px; }
  .brand-crown { width: 36px; height: 36px; border-radius: 12px; }
  .brand strong { font-size: 14px; }
  .tracking-link { display: none; }
  .header-cart span:nth-child(2) { display: none; }
  .header-cart { border-radius: 13px; padding: 8px; }
  .header-cart > b { width: 22px; height: 22px; }
  .hero-section { min-height: 700px; padding-top: 66px; align-items: end; }
  .hero-media::after { background: linear-gradient(0deg, rgba(5,4,3,.98) 0%, rgba(5,4,3,.78) 42%, rgba(5,4,3,.2) 84%); }
  .hero-media img { object-position: 57% center; }
  .hero-content { display: block; }
  .hero-copy { padding: 270px 0 80px; }
  .hero-copy h1 { font-size: clamp(39px, 12vw, 58px); margin-top: 18px; }
  .hero-copy > p { font-size: 14px; }
  .hero-cta-row { align-items: stretch; flex-direction: column; }
  .primary-cta { justify-content: space-between; }
  .trust-pill { width: 100%; }
  .hero-meta > span { font-size: 9px; }
  .trust-strip { margin-top: -30px; }
  .trust-grid article:nth-child(n+2) { display: none; }
  .catalog-section { padding-top: 70px; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .search-box { width: 100%; }
  .category-nav { top: 66px; margin-inline: -12px; padding-inline: 12px; }
  .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-card { display: grid; grid-template-columns: 132px 1fr; border-radius: 18px; }
  .product-image { aspect-ratio: auto; height: 100%; min-height: 182px; }
  .favorite-mark { display: none; }
  .product-badge { top: 9px; left: 9px; max-width: 110px; font-size: 7px; }
  .product-content { padding: 14px; }
  .product-content h3 { font-size: 16px; }
  .product-content p { font-size: 9px; line-height: 1.5; }
  .product-footer { gap: 7px; margin-top: 10px; }
  .product-price strong { font-size: 16px; }
  .add-product { padding: 10px; font-size: 8px; }
  .credibility-card { padding: 28px 20px; border-radius: 22px; }
  .mini-tracker { display: none; }
  .product-modal-shell { grid-template-columns: 1fr; }
  .modal-image-wrap { min-height: 250px; height: 250px; }
  .modal-image-wrap::after { background: linear-gradient(0deg, rgba(16,13,9,.7), transparent 55%); }
  .modal-content { padding: 20px; max-height: 60vh; }
  .modal-header-copy h3 { font-size: 24px; }
  .modal-footer { bottom: -20px; margin: 20px -20px -20px; padding: 13px 20px; }
  .drawer-panel { width: 100%; }
  .form-grid.two { grid-template-columns: 1fr; }
  .mobile-cart-bar { display: flex; }
  .toast { bottom: 90px; }
}

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

/* Soberana Delivery V9 — pagamento em dinheiro */
.cash-change-card{margin-top:14px;padding:15px;border:1px solid rgba(249,172,24,.28);border-radius:16px;background:linear-gradient(145deg,rgba(39,16,2,.72),rgba(7,4,2,.88));box-shadow:inset 0 1px rgba(255,255,255,.04)}
.field-label-title{display:block;margin-bottom:10px;color:#f9ac18;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.cash-choice{margin-bottom:12px}.cash-change-summary{display:flex;justify-content:space-between;align-items:center;margin-top:12px;padding:12px 14px;border-radius:12px;background:rgba(37,211,102,.09);border:1px solid rgba(37,211,102,.28)}
.cash-change-summary span{font-size:.78rem;color:#fff4d2}.cash-change-summary strong{font-size:1.05rem;color:#55e987}.field-error{display:block;margin-top:8px;color:#ff8b82}.single-action{grid-template-columns:1fr!important}.single-action a{width:100%}

/* ========================================================================== 
   SOBERANA DELIVERY PRO V9 — IDENTIDADE VISUAL OFICIAL
   Paleta extraída da arte enviada em 14/07/2026.
   ========================================================================== */
:root{
  --bg:#050201;
  --bg-soft:#0b0502;
  --surface:#100b07;
  --surface-2:#1b0d04;
  --surface-3:#2a1a0d;
  --gold:#f08b1e;
  --gold-2:#e8b244;
  --gold-3:#f6de83;
  --red:#981306;
  --red-2:#be410d;
  --green:#5f941d;
  --text:#fff7df;
  --muted:#c6b9a5;
  --line:rgba(240,139,30,.24);
  --line-strong:rgba(246,222,131,.54);
  --shadow:0 32px 90px rgba(0,0,0,.64);
  --font-display:"Cinzel",Georgia,serif;
  --font-body:"Montserrat",Arial,sans-serif;
  --font-condensed:"Oswald","Arial Narrow",sans-serif;
  --font-script:"Yellowtail",cursive;
}
body{
  background:
    radial-gradient(circle at 12% -8%,rgba(240,139,30,.16),transparent 30%),
    radial-gradient(circle at 92% 22%,rgba(152,19,6,.12),transparent 27%),
    linear-gradient(180deg,#070301,#020100 60%,#000);
}
.site-header.scrolled{background:rgba(5,2,1,.92);border-color:rgba(240,139,30,.24)}
.brand-crown,.trust-icon{border-color:rgba(246,222,131,.44);background:linear-gradient(145deg,rgba(240,139,30,.2),rgba(152,19,6,.08));box-shadow:0 0 28px rgba(240,139,30,.12),inset 0 1px rgba(255,255,255,.08)}
.brand strong{letter-spacing:.055em;text-shadow:0 0 18px rgba(240,139,30,.12)}
.brand small{color:#f08b1e}
.hero-section{min-height:clamp(730px,92vh,920px);isolation:isolate}
.hero-media::before{content:"";position:absolute;inset:0;z-index:1;background:radial-gradient(circle at 68% 34%,transparent 0 24%,rgba(0,0,0,.12) 48%,rgba(0,0,0,.64) 100%)}
.hero-media::after{z-index:2;background:linear-gradient(90deg,rgba(2,1,0,.98) 0%,rgba(4,2,1,.92) 35%,rgba(5,2,1,.3) 67%,rgba(3,1,0,.76) 100%)}
.hero-media img{object-position:center 43%;filter:saturate(1.07) contrast(1.08) brightness(.92);transform:scale(1.018)}
.hero-shade{z-index:2;background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(5,2,1,.12) 58%,#050201 100%)}
.hero-content{z-index:3}
.royal-kicker{border-color:rgba(246,222,131,.33);background:linear-gradient(90deg,rgba(20,10,3,.88),rgba(0,0,0,.6));color:#f6de83;box-shadow:0 12px 35px rgba(0,0,0,.28)}
.hero-copy h1{font-weight:900;letter-spacing:-.035em;text-shadow:0 9px 40px rgba(0,0,0,.72)}
.hero-copy h1 em{background:linear-gradient(180deg,#fff8d9 0%,#f6de83 23%,#f08b1e 62%,#9b3c09 100%);-webkit-background-clip:text;background-clip:text;filter:drop-shadow(0 8px 15px rgba(0,0,0,.48))}
.hero-copy>p{color:#efe1ce;text-shadow:0 2px 18px rgba(0,0,0,.8)}
.primary-cta,.finish-order{background:linear-gradient(135deg,#be410d,#981306 62%,#5f0903);border-color:rgba(255,115,67,.54);box-shadow:0 18px 45px rgba(152,19,6,.34),inset 0 1px rgba(255,255,255,.2)}
.primary-cta:hover{box-shadow:0 23px 60px rgba(190,65,13,.42)}
.hero-proof,.trust-grid article,.product-card,.credibility-card{background:linear-gradient(145deg,rgba(26,13,4,.94),rgba(6,3,1,.96));border-color:rgba(240,139,30,.25)}
.hero-proof::before{background:linear-gradient(90deg,transparent,#f6de83,#f08b1e,transparent)}
.section-kicker,.proof-label,.modal-header-copy>span{color:#f08b1e;font-family:var(--font-condensed);letter-spacing:.18em}
.section-heading h2 em,.credibility-copy h2 em{color:#f08b1e}
.category-nav button.active,.add-to-cart,.success-primary,.tracking-search button{background:linear-gradient(180deg,#f6de83 0%,#f08b1e 45%,#a64b0c 100%);color:#170902;border-color:#f6de83;box-shadow:0 12px 30px rgba(240,139,30,.24)}
.product-card:hover{border-color:rgba(246,222,131,.54);box-shadow:0 28px 80px rgba(0,0,0,.55),0 0 28px rgba(240,139,30,.09)}
.product-image::after{content:"";position:absolute;inset:auto 0 0;height:42%;background:linear-gradient(transparent,rgba(0,0,0,.78));pointer-events:none}
.product-badge{background:linear-gradient(135deg,#981306,#be410d);border:1px solid rgba(255,183,121,.36);box-shadow:0 8px 18px rgba(0,0,0,.35)}
.product-info h3{font-family:var(--font-display);letter-spacing:-.01em}
.product-price{color:#f6de83}
.security-note::before{content:"🔒 ";filter:grayscale(.25)}
.trust-strip{filter:drop-shadow(0 16px 28px rgba(0,0,0,.4))}
.credibility-section{background:radial-gradient(circle at 50% 0,rgba(240,139,30,.08),transparent 48%)}
.success-whatsapp{background:linear-gradient(135deg,#35dc73,#168847);box-shadow:0 14px 34px rgba(37,211,102,.2)}

@media(max-width:900px){
  .hero-media::after{background:linear-gradient(180deg,rgba(0,0,0,.18) 0%,rgba(3,1,0,.46) 35%,rgba(3,1,0,.91) 72%,#050201 100%)}
  .hero-media img{object-position:center 25%;filter:saturate(1.03) contrast(1.05) brightness(.8)}
  .hero-copy{text-align:center;margin-inline:auto}
  .hero-cta-row,.hero-meta{justify-content:center}
}
@media(max-width:620px){
  .hero-section{min-height:850px;padding-top:66px;align-items:end}
  .hero-content{padding-bottom:90px}
  .hero-copy h1{font-size:clamp(36px,12vw,54px);line-height:1.02}
  .hero-copy>p{font-size:14px;line-height:1.6}
  .royal-kicker{font-size:8px}
  .primary-cta{width:100%;justify-content:center}
  .trust-pill{width:100%;justify-content:center}
  .hero-media img{object-position:center 18%}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

/* Composição cinematográfica: conteúdo legível à esquerda e arte da marca preservada à direita. */
@media(min-width:901px){
  .hero-section{background:
    radial-gradient(circle at 15% 20%,rgba(240,139,30,.10),transparent 26%),
    linear-gradient(120deg,#050201 0%,#090401 48%,#020100 100%)}
  .hero-media{inset:106px max(28px,calc((100vw - 1240px)/2)) 62px 53%;border:1px solid rgba(246,222,131,.32);border-radius:34px;overflow:hidden;box-shadow:0 38px 110px #000,0 0 55px rgba(240,139,30,.10)}
  .hero-media::before{background:radial-gradient(circle at 52% 28%,transparent 0 34%,rgba(0,0,0,.06) 58%,rgba(0,0,0,.44) 100%)}
  .hero-media::after{background:linear-gradient(90deg,rgba(5,2,1,.76),transparent 22%,transparent 78%,rgba(0,0,0,.32)),linear-gradient(180deg,rgba(0,0,0,.03),transparent 67%,rgba(0,0,0,.7))}
  .hero-media img{object-position:center 42%;transform:scale(1);filter:saturate(1.04) contrast(1.05) brightness(.94)}
  .hero-shade{background:linear-gradient(90deg,#050201 0%,rgba(5,2,1,.96) 38%,rgba(5,2,1,.3) 57%,transparent 100%),linear-gradient(180deg,transparent 76%,#050201)}
  .hero-content{grid-template-columns:minmax(0,720px) 1fr;gap:45px}
  .hero-copy{padding-top:20px}
  .hero-proof{position:absolute;right:18px;bottom:82px;width:305px;margin:0;padding:19px;border-radius:18px;background:linear-gradient(145deg,rgba(20,9,2,.92),rgba(2,1,0,.88));box-shadow:0 20px 55px rgba(0,0,0,.54)}
  .hero-proof>strong{font-size:29px}.hero-proof ul{gap:9px}.hero-proof li{font-size:10px}.hero-proof li span{width:26px;height:26px}
}
