:root {
    --bg: #070706;
    --bg-2: #0f0d0a;
    --panel: rgba(24, 21, 15, .82);
    --panel-solid: #17130e;
    --line: rgba(230, 188, 94, .22);
    --line-strong: rgba(230, 188, 94, .48);
    --text: #fff8e8;
    --muted: #b9aa8e;
    --gold: #d8ac52;
    --gold-2: #ffe2a0;
    --copper: #9f6337;
    --danger: #e06969;
    --radius: 18px;
    --shadow: 0 26px 80px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 8%, rgba(216, 172, 82, .18), transparent 30%),
        radial-gradient(circle at 82% 0%, rgba(159, 99, 55, .16), transparent 26%),
        linear-gradient(180deg, #0c0a08 0%, var(--bg) 42%, #050504 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.announcement-bar {
    padding: 8px 16px;
    text-align: center;
    color: #1b1308;
    font-size: .82rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
}

.site-header {
    background: rgba(7, 7, 6, .76);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    z-index: 30;
}

.topbar {
    border-bottom: 1px solid rgba(230, 188, 94, .14);
}

.topbar-grid {
    display: grid;
    grid-template-columns: 180px minmax(260px, 560px) auto;
    align-items: center;
    gap: 26px;
    min-height: 96px;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 142px;
    min-height: 70px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    color: var(--text);
    font-weight: 950;
    letter-spacing: .02em;
    line-height: 1;
    text-transform: uppercase;
    background:
        linear-gradient(145deg, rgba(216, 172, 82, .19), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 38px rgba(0, 0, 0, .3);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 226, 160, .2);
    border-radius: 10px;
}

.brand-mark span {
    color: var(--gold-2);
    font-size: .78rem;
    letter-spacing: .18em;
}

.brand-mark strong {
    display: block;
    margin-top: 2px;
    font-size: 1.28rem;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.nav-mini {
    color: var(--text);
    font-weight: 850;
    white-space: nowrap;
}

.nav-mini:hover { color: var(--gold-2); }

.search-box {
    width: min(100%, 560px);
    padding: 5px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 248, 232, .97);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .34);
}

.search-box .form-control {
    min-width: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #17110a;
    box-shadow: none;
}

.search-box .form-control::placeholder { color: #756a5a; }

.btn {
    border-radius: 999px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold, .btn-dark {
    border-color: transparent;
    color: #160f07;
    font-weight: 950;
    background: linear-gradient(135deg, var(--gold), var(--gold-2) 52%, var(--gold));
    box-shadow: 0 14px 34px rgba(216, 172, 82, .22);
}

.btn-gold:hover, .btn-dark:hover {
    color: #160f07;
    box-shadow: 0 18px 48px rgba(216, 172, 82, .32);
}

.btn-outline-gold, .btn-outline-dark {
    border-color: var(--line-strong);
    color: var(--gold-2);
    font-weight: 900;
    background: rgba(255, 255, 255, .03);
}

.btn-outline-gold:hover, .btn-outline-dark:hover {
    border-color: var(--gold-2);
    color: #160f07;
    background: var(--gold-2);
}

.btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line-strong);
    color: var(--text);
    font-weight: 900;
    background: rgba(255, 255, 255, .04);
}

.btn-cart span {
    display: grid;
    place-items: center;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #160f07;
    background: var(--gold-2);
}

.nav-strip {
    background: rgba(5, 5, 4, .82);
}

.navbar-toggler-icon { filter: invert(1) sepia(1) saturate(1.4) hue-rotate(2deg); }

.nav-link {
    position: relative;
    color: var(--text);
    font-size: .86rem;
    font-weight: 950;
    letter-spacing: .055em;
    padding: 16px 18px !important;
    text-transform: uppercase;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: transform .25s ease;
}

.nav-link:hover {
    color: var(--gold-2);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.hero-section {
    position: relative;
    padding: clamp(44px, 6vw, 86px) 0 56px;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 6, .18), rgba(216, 172, 82, .08), rgba(7, 7, 6, .18)),
        radial-gradient(circle at 74% 42%, rgba(216, 172, 82, .22), transparent 27%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(300px, .97fr);
    align-items: center;
    gap: clamp(26px, 5vw, 70px);
}

.hero-copy-block {
    max-width: 690px;
}

.eyebrow {
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .14em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-section h1 {
    max-width: 720px;
    font-size: clamp(2.45rem, 7vw, 6.1rem);
    line-height: .92;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.7;
    margin: 22px 0 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-metrics span {
    min-width: 128px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, .035);
}

.hero-metrics strong {
    display: block;
    color: var(--gold-2);
    font-size: 1.08rem;
}

.hero-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(420px, 46vw, 620px);
    border: 1px solid var(--line);
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 226, 160, .28), transparent 20%),
        linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(216, 172, 82, .05) 48%, rgba(0, 0, 0, .3)),
        var(--panel-solid);
    box-shadow: var(--shadow);
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: auto -15% -28% -15%;
    height: 42%;
    background: radial-gradient(ellipse, rgba(216, 172, 82, .36), transparent 62%);
    filter: blur(4px);
}

.gold-orbit {
    position: absolute;
    border: 1px solid rgba(255, 226, 160, .22);
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.orbit-one {
    width: 78%;
    aspect-ratio: 1;
}

.orbit-two {
    width: 58%;
    aspect-ratio: 1;
    animation-direction: reverse;
    animation-duration: 24s;
}

.perfume-bottle {
    position: relative;
    width: min(48vw, 260px);
    z-index: 2;
    filter: drop-shadow(0 36px 55px rgba(0, 0, 0, .55));
    animation: floatBottle 4.8s ease-in-out infinite;
}

.bottle-cap {
    width: 42%;
    height: 58px;
    margin: 0 auto;
    border: 1px solid rgba(255, 226, 160, .55);
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(135deg, #3b2b17, var(--gold), #fff0bd);
}

.bottle-neck {
    width: 30%;
    height: 40px;
    margin: -1px auto 0;
    border-inline: 1px solid rgba(255, 226, 160, .38);
    background: linear-gradient(90deg, #1b1510, #f7d987, #1b1510);
}

.bottle-body {
    display: grid;
    place-items: center;
    height: 310px;
    border: 1px solid rgba(255, 226, 160, .54);
    border-radius: 48px 48px 34px 34px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .18), transparent 30%),
        linear-gradient(160deg, rgba(255, 226, 160, .25), rgba(18, 13, 8, .9) 58%, rgba(216, 172, 82, .14)),
        #14100c;
    box-shadow: inset 0 0 42px rgba(255, 226, 160, .16);
    text-transform: uppercase;
}

.bottle-body span {
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .22em;
}

.bottle-body strong {
    display: block;
    margin-top: 8px;
    font-size: 2.1rem;
    letter-spacing: .05em;
}

.section-space {
    padding-top: clamp(52px, 7vw, 88px);
    padding-bottom: clamp(52px, 7vw, 88px);
}

.section-heading, .catalog-top, .cart-summary {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.section-heading.centered {
    display: grid;
    justify-content: center;
    text-align: center;
}

.section-heading h1, .section-heading h2, .catalog-top h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.55rem, 4vw, 2.65rem);
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.section-heading a { color: var(--gold-2); font-weight: 900; }

.product-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)),
        var(--panel);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .28);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 226, 160, .18), transparent 58%);
    transform: translateX(-60%);
    transition: opacity .25s ease, transform .55s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--line-strong);
    box-shadow: 0 30px 78px rgba(0, 0, 0, .42);
}

.product-card:hover::before {
    opacity: 1;
    transform: translateX(60%);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #160f07;
    background: var(--gold-2);
    font-size: .68rem;
    font-weight: 950;
    text-transform: uppercase;
}

.product-image-wrap {
    display: block;
    aspect-ratio: 4 / 3.3;
    background:
        radial-gradient(circle at center, rgba(255, 226, 160, .22), transparent 44%),
        #110f0c;
}

.product-image-wrap img, .product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease, filter .42s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.065);
    filter: contrast(1.04) saturate(1.08);
}

.product-card-body { padding: 16px; }
.product-meta { color: var(--muted); font-size: .77rem; font-weight: 800; }
.product-card h3 { color: var(--text); font-size: 1.02rem; font-weight: 950; margin: 8px 0; }
.product-card p { color: var(--muted); font-size: .88rem; line-height: 1.45; min-height: 42px; }
.product-card strong, .price-xl { color: var(--gold-2); }

.product-buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-card form { flex-shrink: 0; }

.price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin: 8px 0;
}

.price-line span {
    color: #83765f;
    font-weight: 850;
    text-decoration: line-through;
}

.category-card {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 230px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 26% 20%, rgba(255, 226, 160, .18), transparent 26%),
        linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(216, 172, 82, .05)),
        var(--panel-solid);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .26);
    transition: transform .28s ease, border-color .28s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 145px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 226, 160, .14);
    border-radius: 50%;
}

.category-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-strong);
}

.category-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 30px;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background:
        linear-gradient(135deg, transparent 45%, rgba(255, 226, 160, .32) 46%, transparent 56%),
        radial-gradient(circle at 32% 30%, var(--gold-2) 0 8px, transparent 9px),
        rgba(255, 255, 255, .04);
}

.category-card strong {
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 950;
}

.category-card p {
    min-height: 48px;
    margin: 8px 0 14px;
    color: var(--muted);
}

.category-card span:last-child {
    color: var(--gold-2);
    font-weight: 950;
}

.offer-strip {
    padding: 20px 0;
}

.offer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
        linear-gradient(110deg, rgba(216, 172, 82, .22), rgba(255, 255, 255, .035)),
        #130f0a;
    box-shadow: var(--shadow);
}

.offer-strip h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    font-weight: 950;
}

.brand-story {
    padding: clamp(54px, 8vw, 96px) 0;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at center, rgba(216, 172, 82, .18), transparent 40%),
        rgba(255, 255, 255, .025);
}

.brand-story-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brand-story h2 {
    color: var(--text);
    font-size: clamp(1.85rem, 5vw, 3.8rem);
    line-height: 1.04;
    font-weight: 950;
}

.brand-story p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.category-pills a {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
    color: var(--gold-2);
    font-weight: 850;
}

.empty-state, .checkout-panel, .order-panel, .success-panel, .auth-panel, .cart-shell {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.empty-state { padding: 42px; text-align: center; color: var(--muted); }
.product-detail-image { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--panel-solid); box-shadow: var(--shadow); }
.product-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}
.product-gallery img, .admin-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 12px;
}
.breadcrumb-link { color: var(--gold-2); font-weight: 900; }
.product-title { font-size: clamp(2rem, 5vw, 4rem); line-height: 1; font-weight: 950; margin-top: 12px; }
.product-brand { color: var(--muted); font-weight: 850; }
.price-xl { font-size: 2rem; font-weight: 950; margin-top: 22px; }

.notes-box, .payment-method {
    display: grid;
    gap: 4px;
    background: var(--panel-solid);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 18px;
}

.form-control {
    background-color: #fff8e8;
    border-color: rgba(216, 172, 82, .42);
    color: #17110a;
}

.buy-panel { margin-top: 24px; }
.quantity-input { max-width: 110px; }

.cart-row {
    display: grid;
    grid-template-columns: 82px 1fr 100px auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.cart-row:last-child { border-bottom: 0; }
.cart-row img { width: 82px; height: 82px; object-fit: cover; border-radius: 14px; }
.cart-row p { margin: 4px 0 0; color: var(--muted); }
.account-order-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--line);
}
.account-order-row:last-child { border-bottom: 0; }
.account-order-row p { margin: 4px 0 0; color: var(--muted); }
.cart-summary { align-items: center; justify-content: flex-end; margin-top: 22px; }
.cart-summary div { margin-right: auto; display: grid; }
.cart-summary strong { font-size: 1.6rem; color: var(--gold-2); }

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
}

.checkout-panel, .order-panel, .success-panel, .auth-panel { padding: 28px; }
.summary-row, .summary-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.summary-total { border-bottom: 0; font-size: 1.25rem; }
.success-panel { max-width: 680px; margin: 0 auto; text-align: center; }
.pix-qr { width: 280px; max-width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.pix-copy { min-height: 120px; font-size: .85rem; }

.auth-wrap {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 40px 16px;
    background: radial-gradient(circle at top, rgba(216, 172, 82, .18), transparent 36%), var(--bg);
}

.auth-panel { width: min(100%, 460px); }
.auth-link { display: block; margin-top: 18px; text-align: center; color: var(--gold-2); font-weight: 900; }
.soft-alert { border-radius: var(--radius); border: 0; box-shadow: 0 12px 32px rgba(0, 0, 0, .28); }

.site-footer {
    background: #050504;
    color: var(--text);
    border-top: 1px solid var(--line);
}

.footer-grid a {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.footer-grid a:hover { color: var(--gold-2); }
.footer-title { color: var(--gold-2); font-size: 1rem; font-weight: 950; text-transform: uppercase; }
.site-footer p { color: var(--muted); }

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form .form-control {
    border-radius: 999px 0 0 999px;
}

.newsletter-form .btn {
    border-radius: 0 999px 999px 0;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-weight: 950;
}

.copyright {
    margin: 18px 0 0;
    text-align: center;
    font-size: .9rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 50;
    padding: 14px 18px;
    border-radius: 999px;
    color: #07140b;
    background: linear-gradient(135deg, #25d366, #b7ffd2);
    font-weight: 950;
    box-shadow: 0 18px 48px rgba(37, 211, 102, .32);
}

.whatsapp-float:hover { color: #07140b; transform: translateY(-3px); }

.admin-body {
    background: #070706;
}

.admin-shell {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    border-right: 1px solid var(--line);
    background: rgba(15, 13, 10, .95);
}

.admin-logo {
    display: block;
    margin-bottom: 28px;
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 950;
}

.admin-logo span { color: var(--gold-2); }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a {
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 850;
}
.admin-sidebar nav a:hover {
    color: var(--gold-2);
    border-color: var(--line);
    background: rgba(255,255,255,.04);
}

.admin-main {
    padding: 26px;
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-top span {
    color: var(--gold-2);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.admin-top h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 950;
}

.admin-card, .stats-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 18px 52px rgba(0,0,0,.28);
}

.admin-card { padding: 22px; }

.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-card-head h2 {
    margin: 0;
    font-weight: 950;
}

.admin-grid {
    display: grid;
    gap: 16px;
}

.stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stats-grid article {
    padding: 20px;
}

.stats-grid span {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.stats-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--gold-2);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.1;
}

.admin-filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.admin-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text);
    --bs-table-border-color: var(--line);
}

.admin-table th {
    color: var(--gold-2);
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .06em;
}

.admin-table small {
    display: block;
    color: var(--muted);
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.table-actions a, .table-actions button {
    border: 0;
    padding: 0;
    color: var(--gold-2);
    background: transparent;
    font-weight: 850;
}

.status-pill {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--gold-2);
    background: rgba(255,255,255,.04);
    font-size: .78rem;
    font-weight: 900;
}

.admin-pagination {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.admin-pagination a {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--muted);
}

.admin-pagination a.active {
    color: #160f07;
    background: var(--gold-2);
}

.admin-form label, .check-line {
    color: var(--gold-2);
    font-weight: 850;
    margin-bottom: 6px;
}

.admin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
}

.is-loading {
    background-image: linear-gradient(90deg, transparent, rgba(216, 172, 82, .24), transparent);
    background-size: 220% 100%;
    animation: fieldLoading 1s linear infinite;
}

@keyframes fieldLoading {
    to { background-position: -220% 0; }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .72s ease, transform .72s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatBottle {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 991.98px) {
    .topbar-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .brand-mark { width: 154px; }
    .header-actions { justify-content: space-between; }
    .search-box { width: 100%; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-stage { min-height: 420px; }
    .checkout-grid { grid-template-columns: 1fr; }
    .catalog-top, .section-heading { align-items: start; flex-direction: column; }
    .section-heading.centered { align-items: center; }
    .category-pills { justify-content: flex-start; }
    .offer-strip-inner { align-items: flex-start; flex-direction: column; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; }
    .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-filters { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
    .announcement-bar { font-size: .72rem; }
    .hero-section { padding-top: 34px; }
    .hero-section h1 { font-size: clamp(2.25rem, 14vw, 3.8rem); }
    .hero-stage { min-height: 360px; border-radius: 24px; }
    .perfume-bottle { width: 210px; }
    .bottle-body { height: 260px; border-radius: 38px 38px 28px 28px; }
    .product-card-body { padding: 12px; }
    .product-card p { display: none; }
    .product-buy-row { align-items: stretch; flex-direction: column; }
    .product-card .btn { width: 100%; }
    .cart-row { grid-template-columns: 64px 1fr; }
    .cart-row img { width: 64px; height: 64px; }
    .cart-row input, .cart-row strong { grid-column: 2; }
    .account-order-row { grid-template-columns: 1fr; }
    .cart-summary { align-items: stretch; flex-direction: column; }
    .header-actions { align-items: stretch; flex-direction: column; }
    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-form .form-control, .newsletter-form .btn { border-radius: 999px; }
    .admin-main { padding: 16px; }
    .admin-top, .admin-card-head { align-items: flex-start; flex-direction: column; }
    .admin-sidebar nav, .stats-grid, .admin-filters { grid-template-columns: 1fr; }
    .whatsapp-float { right: 14px; bottom: 14px; }
}
