﻿/* ==============================================
   CARVÃƒO CAMPEÃƒO â€” Design System
   ============================================== */

:root {
    --bg:        #0c0806;
    --surface:   #181210;
    --surface-2: #201612;
    --border:    rgba(255, 210, 170, 0.12);
    --text:      #f2e8dc;
    --muted:     #c4a98e;
    --faint:     #8a7060;
    --orange:    #ff4500;
    --amber:     #ffb300;
    --green:     #22c35e;
    --ink:       #1a0a04;
    --nav-h:     68px;
    --ease:      cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 0;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
    white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, #ff4500 0%, #ffb300 100%);
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(255,69,0,.28);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,69,0,.44); }

.btn-ghost {
    background: rgba(255,255,255,.06);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.10); }

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.28);
}
.btn-whatsapp:hover { box-shadow: 0 8px 30px rgba(37,211,102,.44); }

.btn-lg    { padding: 16px 30px; font-size: 1rem; border-radius: 16px; }
.btn-block { width: 100%; }

.btn-link {
    background: none;
    border: 0;
    color: var(--faint);
    font-size: 0.84rem;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 8px;
    transition: color 160ms;
}
.btn-link:hover { color: var(--muted); }

/* ---- Navbar ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(12,8,6,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-logo {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,69,0,.25));
}
.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: .85;
}

.nav-menu { display: flex; gap: 4px; margin-left: auto; }
.nav-menu a {
    padding: 8px 14px;
    border-radius: 10px;
    font-size: .9rem;
    color: var(--muted);
    transition: color 160ms, background 160ms;
}
.nav-menu a:hover { color: var(--text); background: rgba(255,255,255,.06); }

.cart-btn {
    position: relative;
    width: 46px; height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 160ms, transform 160ms;
}
.cart-btn:hover { background: rgba(255,255,255,.12); transform: scale(1.05); }

.cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    min-width: 20px; height: 20px;
    padding: 0 5px;
    border-radius: 99px;
    background: var(--orange);
    color: var(--ink);
    font-size: .7rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    transition: transform 200ms var(--ease);
}
.cart-badge.hidden { display: none; }

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 72% 28%, rgba(255,69,0,.22), transparent),
        radial-gradient(ellipse 35% 35% at 20% 80%, rgba(255,179,0,.10), transparent),
        linear-gradient(170deg, #120908 0%, #0c0705 100%);
    pointer-events: none;
}
.hero-layout {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding-block: 88px;
    position: relative;
    z-index: 1;
}
.hero-text { display: flex; flex-direction: column; gap: 28px; }
.hero-pill {
    display: inline-flex;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 99px;
    background: rgba(255,69,0,.14);
    border: 1px solid rgba(255,69,0,.30);
    color: #ff9070;
    font-size: .82rem; font-weight: 600; letter-spacing: .03em;
}
.hero-text h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4.2rem, 7.5vw, 8rem);
    font-weight: 900;
    line-height: .88;
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.hero-lead {
    margin-top: -12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #ffd39e;
}
.hero-text h1 {
    position: relative;
}
.hero-text h1::after {
    content: '';
    display: block;
    width: min(180px, 42%);
    height: 8px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,69,0,.95), rgba(255,179,0,.95));
    box-shadow: 0 0 26px rgba(255,120,0,.35);
}
.hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #ff4500, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 22px rgba(255,110,0,.18));
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 42ch;
    line-height: 1.75;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}

/* ---- Hero Video ---- */
.hero-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.7);
    background: #000;
}
.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    object-position: center;
}

.hero-stats {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    padding: 26px 0;
}
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.55rem; font-weight: 800;
}
.hero-stat span {
    font-size: .78rem;
    color: var(--faint);
    text-transform: uppercase;
    letter-spacing: .10em;
}

/* ---- Section Head ---- */
.section-head { margin-bottom: 44px; max-width: 58ch; }
.section-head.centered { text-align: center; margin-inline: auto; }
.section-label {
    display: inline-block;
    font-size: .76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--orange);
    margin-bottom: 10px;
}
.section-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ---- Products ---- */
.products-section { padding: 96px 0; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.product-card-preview {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.product-card-preview:focus-visible {
    outline: 2px solid rgba(255,179,0,.9);
    outline-offset: 4px;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(255,69,0,.16);
    border-color: rgba(255,69,0,.32);
}
.product-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 360ms var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-weight-tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    padding: 5px 12px; border-radius: 99px;
    background: rgba(12,8,6,.72);
    backdrop-filter: blur(6px);
    color: #f2e8dc;
    font-size: .78rem; font-weight: 700;
    border: 1px solid rgba(255,255,255,.12);
}
.product-body {
    display: flex; flex-direction: column;
    justify-content: space-between;
    flex: 1; padding: 22px; gap: 18px;
}
.product-meta h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.product-meta p  { font-size: .86rem; color: var(--muted); line-height: 1.6; }
.product-buy {
    display: flex; align-items: center;
    justify-content: center; gap: 12px;
}
.product-link-btn {
    min-width: 132px;
}
.product-card-preview .product-link-btn {
    pointer-events: none;
}
.product-price {
    display: inline-flex; align-items: baseline; gap: 3px;
    line-height: 1; flex-shrink: 0;
}
.price-cur {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem; font-weight: 700;
    color: var(--amber); letter-spacing: .02em;
}
.price-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem; font-weight: 900;
    color: var(--amber);
}
.product-price-atacado {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 800;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--amber);
    background: rgba(251,191,36,.12);
    border: 1px solid rgba(251,191,36,.35);
    border-radius: 6px;
    padding: 4px 12px;
    line-height: 1.4;
    flex-shrink: 0;
}
.catalog-cta {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}
.catalog-page-hero {
    padding: 72px 0 18px;
}
.catalog-page-hero-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.catalog-page-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 58ch;
}
.catalog-banner-card {
    position: relative;
    min-height: 280px;
    padding: 28px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,179,0,.18);
    background:
        radial-gradient(circle at top left, rgba(255,179,0,.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255,69,0,.24), transparent 34%),
        linear-gradient(135deg, #22120b 0%, #140d09 55%, #0f0906 100%);
    box-shadow: 0 30px 80px rgba(0,0,0,.34);
}
.catalog-banner-card::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,179,0,.14);
    filter: blur(14px);
}
.catalog-banner-card::after {
    content: '';
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,69,0,.16);
    filter: blur(10px);
}
.catalog-banner-badge,
.catalog-banner-note,
.catalog-banner-track {
    position: relative;
    z-index: 1;
}
.catalog-banner-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: #ffd9a3;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.catalog-banner-track {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}
.catalog-banner-marquee {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: catalog-marquee 18s linear infinite;
}
.catalog-banner-marquee span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: .08em;
    white-space: nowrap;
    color: rgba(255,244,230,.98);
    text-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.catalog-banner-marquee-reverse {
    animation-duration: 22s;
    animation-direction: reverse;
}
.catalog-banner-note {
    margin-top: 28px;
    max-width: 36ch;
    font-size: .95rem;
    line-height: 1.7;
    color: var(--muted);
}
.products-page-section {
    padding-top: 32px;
}

@keyframes catalog-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
}

/* ---- Steps ---- */
.steps-section {
    padding: 80px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.steps-grid { display: flex; align-items: center; }
.step-card  { flex: 1; padding: 40px 36px; text-align: center; }
.step-arrow { font-size: 2.6rem; color: var(--orange); opacity: .32; flex-shrink: 0; }
.step-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem; font-weight: 900; line-height: 1;
    margin-bottom: 18px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,69,0,.36);
}
.step-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ---- Footer ---- */
.footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,.18);
}
.footer-inner { width: 100%; }
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.footer-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0;
}
.footer-tagline {
    margin: 0;
    font-size: .87rem;
    color: var(--muted);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
.footer-nav a {
    color: var(--muted);
    font-size: .9rem;
    padding: 4px 14px;
    position: relative;
    transition: color 160ms var(--ease);
}
.footer-nav a + a::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--faint);
}
.footer-nav a:hover {
    color: var(--text);
}
.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom span {
    font-size: .84rem;
    color: var(--faint);
}

/* ---- Cart Overlay ---- */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.64);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0; pointer-events: none;
    transition: opacity 300ms var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ---- Cart Drawer ---- */
.cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(440px, 100vw);
    z-index: 201;
    background: var(--surface);
    border-left: 1px solid var(--border);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 360ms var(--ease);
    box-shadow: -24px 0 80px rgba(0,0,0,.36);
}
.cart-drawer.open { transform: translateX(0); }

.drawer-header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.drawer-header h3   { font-size: 1.1rem; font-weight: 700; }
.drawer-subtitle    { font-size: .82rem; color: var(--muted); display: block; margin-top: 2px; }
.drawer-close {
    width: 38px; height: 38px;
    border: 1px solid var(--border); border-radius: 10px;
    background: rgba(255,255,255,.06); color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 160ms;
}
.drawer-close:hover { background: rgba(255,255,255,.12); }

.drawer-body   { flex: 1; overflow: hidden; position: relative; }
.drawer-view   {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.drawer-view.hidden { opacity: 0; pointer-events: none; transform: translateX(16px); }

.cart-list {
    flex: 1; overflow-y: auto;
    padding: 16px 24px;
    display: flex; flex-direction: column;
}
.cart-empty-state {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; padding: 48px 0;
    color: var(--faint); text-align: center;
}
.cart-empty-state p    { font-size: 1rem; font-weight: 600; color: var(--muted); }
.cart-empty-state span { font-size: .86rem; }

.cart-item-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item-row:last-child { border-bottom: 0; }
.cart-item-thumb {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: linear-gradient(155deg, #f8f3ee, #ede4d8);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-info strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-info span   { font-size: .78rem; color: var(--faint); }
.cart-item-ctrl  { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-price { font-size: .9rem; font-weight: 700; color: var(--amber); }

.qty-wrap {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 10px; padding: 3px;
}
.qty-wrap button {
    width: 28px; height: 28px;
    border: 0; border-radius: 7px;
    background: rgba(255,255,255,.07); color: var(--text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; line-height: 1;
    transition: background 160ms;
}
.qty-wrap button:hover { background: rgba(255,255,255,.16); }
.qty-wrap span { font-size: .86rem; font-weight: 700; min-width: 20px; text-align: center; }

.drawer-footer {
    flex-shrink: 0;
    padding: 18px 24px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    display: flex; flex-direction: column; gap: 10px;
}
.drawer-total-row {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 6px;
}
.drawer-total-row span    { font-size: .88rem; color: var(--muted); }
.drawer-total-row strong  {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.9rem; font-weight: 800; color: var(--amber);
}

/* ---- Checkout View ---- */
#view-checkout  { overflow-y: auto; padding: 20px 24px; gap: 0; }
.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: 0;
    color: var(--muted); cursor: pointer;
    font-size: .86rem; padding: 0;
    margin-bottom: 16px;
    transition: color 160ms; flex-shrink: 0;
}
.back-link:hover { color: var(--text); }
.checkout-summary-box {
    background: rgba(255,69,0,.07);
    border: 1px solid rgba(255,69,0,.2);
    border-radius: 14px;
    padding: 14px 16px; margin-bottom: 18px;
    font-size: .86rem; color: var(--muted); line-height: 1.75;
}
.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .84rem; font-weight: 600; color: var(--muted); }
.form-row label span { color: var(--faint); font-weight: 400; }
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: 12px;
    background: rgba(255,255,255,.04); color: var(--text);
    transition: border-color 160ms;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: rgba(255,69,0,.52); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--faint); }
.form-row select option { background: #1a1210; }

/* ==============================================
   ADMIN STYLES (admin/index.php)
   ============================================== */
.page-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto; padding: 24px 0 64px;
}
.admin-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0; color: #f2e8dc;
    background:
        radial-gradient(circle at top right, rgba(244,81,30,.18), transparent 24%),
        linear-gradient(180deg, #130e0b 0%, #0d0a08 100%);
}
.admin-shell    { padding-top: 36px; }
.admin-header   { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; margin-bottom: 28px; }
.stats-grid     { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 24px; }
.admin-grid     { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.stat-card, .admin-card {
    border-radius: 22px; padding: 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,210,170,.12);
}
.stat-card span   { color: #c4a98e; }
.stat-card strong { font-size: 1.4rem; color: #ffb300; display: block; margin: 8px 0 4px; }
.stat-card p      { font-size: .84rem; color: #8a7060; margin: 0; }
.eyebrow { margin: 0 0 8px; color: #ffca80; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; }
.section-heading    { margin-bottom: 20px; }
.section-heading h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.compact            { margin-bottom: 14px; }
.module-list        { margin: 18px 0 0; padding-left: 20px; line-height: 1.8; }
.product-admin-list { display: grid; gap: 12px; }
.product-admin-item {
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid rgba(255,210,170,.1);
}
.product-admin-item:last-child { border-bottom: 0; }
.product-admin-item strong { display: block; font-size: .92rem; margin-bottom: 4px; }
.product-admin-item span   { color: #8a7060; font-size: .82rem; }
.button {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 48px; padding: 0 18px;
    border-radius: 14px; font-weight: 700;
    border: 0; cursor: pointer; font-size: .9rem; text-decoration: none;
}
.button.ghost   { background: rgba(255,255,255,.06); color: #f2e8dc; border: 1px solid rgba(255,210,170,.12); }
.button.primary { background: linear-gradient(135deg, #ff4500, #ffb300); color: #1a0a04; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .products-grid    { grid-template-columns: repeat(2, 1fr); }
    .hero-stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        padding-block: 56px; gap: 32px;
    }
    .hero-text        { align-items: center; }
    .hero-pill        { align-self: center; }
    .hero-ctas        { justify-content: center; }
    .hero-visual      { order: -1; }
    .hero-video-wrap  { border-radius: 14px; }
    .catalog-page-hero-inner { align-items: stretch; }
    .nav-menu         { display: none; }
    .steps-grid       { flex-direction: column; }
    .step-arrow       { transform: rotate(90deg); font-size: 1.6rem; }
    .admin-grid, .stats-grid, .admin-header { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .products-grid    { grid-template-columns: 1fr; }
    .hero-stats-grid  { grid-template-columns: repeat(2, 1fr); }
    .footer-nav       { gap: 0; }
    .product-buy      { flex-direction: column; align-items: stretch; gap: 10px; }
    .product-link-btn { width: 100%; }
    .section-head     { text-align: center; }
    .catalog-banner-card { min-height: 240px; padding: 22px; }
    .catalog-banner-badge { justify-content: center; }
    .catalog-banner-note { max-width: none; text-align: center; }
}
