/*
===============================================================================
FALCON JACKETS — ORGANIZED STYLESHEET
===============================================================================

QUICK FIND
01. Fonts and design tokens
02. Reset and global elements
03. Layout helpers
04. Top bar and navigation
05. Buttons
06. Hero sections
07. Trust and proof cards
08. Sections and headings
09. Product/category cards
10. Promotional banner
11. Store, features and reviews
12. Product pages and galleries
13. FAQ, footer and floating actions
14. Search, notices and animations
15. Admin panel
16. Tablet responsive rules
17. Mobile responsive rules
18. Later project refinements and overrides

TIP:
Use Ctrl+F / Cmd+F and search for selectors such as:
.hero-brand, .hero-actions-mobile, .trust, .product-slider, .admin-grid

IMPORTANT:
The original cascade order has been preserved so the current website appearance
and responsive behavior remain unchanged.
===============================================================================
*/

/* 01. FONTS AND DESIGN TOKENS */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');
:root {
    --bg:#060708;
    --panel:#0e1115;
    --panel2:#151a20;
    --text:#f6f3ea;
    --muted:#a9afb8;
    --gold:#c99a2e;
    --gold2:#f0d27b;
    --line:rgba(255, 255, 255, .1);
    --radius:24px;
    --shadow:0 24px 70px rgba(0, 0, 0, .45)
}

/* 02. RESET AND GLOBAL ELEMENTS */
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth
}
body {
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'DM Sans', system-ui, sans-serif;
    line-height:1.65;
    overflow-x:hidden
}
a {
    color:inherit;
    text-decoration:none
}
img {
    max-width:100%;
    display:block
}
button, input, textarea {
    font:inherit
}

/* 03. LAYOUT HELPERS */
.container {
    width:min(1220px, 92%);
    margin:auto
}

/* 04. TOP BAR AND NAVIGATION */
.topbar {
    background:linear-gradient(90deg, #b27b11, #f0d27b, #b27b11);
    color:#090909;
    text-align:center;
    padding:9px 12px;
    font-weight:800;
    font-size:.82rem;
    letter-spacing:.06em
}
.site-header {
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(6, 7, 8, .82);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--line)
}
.nav {
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px
}
.brand {
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:900;
    letter-spacing:.1em
}
.brand img {
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 0 0 1px rgba(240, 210, 123, .35)
}
.brand span small {
    display:block;
    color:var(--gold2);
    font-size:.58rem;
    letter-spacing:.25em
}
.navlinks {
    display:flex;
    gap:30px;
    align-items:center
}
.navlinks a {
    color:#e3e5e8;
    font-weight:700;
    font-size:.93rem;
    position:relative
}
.navlinks a:after {
    content:'';
    position:absolute;
    left:0;
    right:100%;
    bottom:-8px;
    height:2px;
    background:var(--gold2);
    transition:.25s
}
.navlinks a:hover:after {
    right:0
}

/* 05. BUTTONS */
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:13px 21px;
    border-radius:999px;
    border:1px solid var(--line);
    font-weight:800;
    transition:.25s;
    cursor:pointer
}
.btn:hover {
    transform:translateY(-2px);
    box-shadow:0 14px 35px rgba(0, 0, 0, .25)
}
.btn-gold {
    background:linear-gradient(135deg, var(--gold2), var(--gold));
    color:#111;
    border:0
}
.btn-dark {
    background:rgba(255, 255, 255, .04)
}
.menu-btn {
    display:none;
    background:none;
    border:0;
    color:white;
    font-size:1.7rem
}

/* 06. HERO SECTIONS */
.hero {
    min-height:86vh;
    display:grid;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:radial-gradient(circle at 77% 20%, rgba(201, 154, 46, .24), transparent 25%), linear-gradient(115deg, #070809 26%, #131820 100%)
}
.hero:after {
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0, 0, 0, .1), transparent 60%), url('/assets/images/brand-banner.webp') center/cover;
    opacity:.11;
    mix-blend-mode:screen
}
.hero-grid {
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.02fr .98fr;
    align-items:center;
    gap:40px;
    padding:76px 0
}
.eyebrow {
    color:var(--gold2);
    font-weight:900;
    letter-spacing:.23em;
    text-transform:uppercase;
    font-size:.75rem
}
.hero h1, .page-hero h1 {
    font-family:'Playfair Display', serif;
    font-size:clamp(3.4rem, 7.4vw, 7rem);
    line-height:.91;
    margin:.34em 0 .3em;
    letter-spacing:-.035em
}
.hero h1 em {
    font-style:normal;
    color:var(--gold2)
}
.hero p {
    font-size:1.13rem;
    color:var(--muted);
    max-width:620px
}
.hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px
}
.hero-visual {
    position:relative;
    min-height:620px;
    display:grid;
    place-items:center
}
.hero-visual:before {
    content:'';
    position:absolute;
    width:72%;
    aspect-ratio:1;
    border-radius:50%;
    background:radial-gradient(circle, var(--gold2), transparent 65%);
    filter:blur(46px);
    opacity:.2
}
.hero-visual img {
    position:relative;
    max-height:650px;
    width:100%;
    object-fit:contain;
    filter:drop-shadow(0 44px 55px rgba(0, 0, 0, .55));
    animation:float 5s ease-in-out infinite
}
@keyframes float {
    50% {
        transform:translateY(-12px)
    }
}
.hero-badge {
    position:absolute;
    right:2%;
    bottom:12%;
    background:rgba(13, 16, 20, .87);
    backdrop-filter:blur(12px);
    border:1px solid var(--line);
    border-radius:20px;
    padding:16px 18px;
    box-shadow:var(--shadow)
}
.hero-badge strong {
    display:block;
    color:var(--gold2);
    font-size:1.2rem
}

/* 07. TRUST AND PROOF CARDS */
.trust {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:14px;
    margin-top:-38px;
    position:relative;
    z-index:3
}
.trust div {
    background:rgba(14, 17, 21, .93);
    border:1px solid var(--line);
    padding:21px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow)
}
.trust strong {
    display:block;
    color:var(--gold2);
    font-size:1.2rem
}

/* 08. SECTIONS AND HEADINGS */
.section {
    padding:98px 0
}
.section.alt {
    background:#0a0c0f
}
.section-head {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:38px
}
.section h2 {
    font-family:'Playfair Display', serif;
    font-size:clamp(2.2rem, 4.2vw, 4rem);
    line-height:1.05;
    margin:0
}
.section-head p {
    max-width:560px;
    color:var(--muted)
}

/* 09. PRODUCT AND CATEGORY CARDS */
.grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px
}
.card {
    background:linear-gradient(180deg, var(--panel2), var(--panel));
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s
}
.card:hover {
    transform:translateY(-8px);
    border-color:rgba(240, 210, 123, .5)
}
.card-media {
    aspect-ratio:4/5;
    background:#f5f5f3;
    overflow:hidden;
    position:relative
}
.card-media:after {
    content:'View collection';
    position:absolute;
    left:16px;
    right:16px;
    bottom:14px;
    background:rgba(6, 7, 8, .84);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255, 255, 255, .15);
    border-radius:999px;
    padding:10px;
    text-align:center;
    font-weight:800;
    opacity:0;
    transform:translateY(8px);
    transition:.3s
}
.card:hover .card-media:after {
    opacity:1;
    transform:none
}
.card-media img {
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.5s
}
.card:hover .card-media img {
    transform:scale(1.055)
}
.card-body {
    padding:22px
}
.card h3 {
    margin:0 0 8px;
    font-size:1.22rem
}
.card p {
    color:var(--muted);
    font-size:.94rem;
    margin:0 0 18px
}
.meta {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px
}
.price {
    color:var(--gold2);
    font-weight:900
}

/* 10. PROMOTIONAL BANNER */
.banner {
    border-radius:30px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    position:relative
}
.banner img {
    width:100%;
    aspect-ratio:16/7;
    object-fit:cover
}
.banner-copy {
    position:absolute;
    left:6%;
    bottom:10%;
    max-width:460px;
    text-shadow:0 4px 18px #000
}
.banner-copy h2 {
    font-size:clamp(2rem, 4vw, 4.4rem)
}

/* 11. STORE, FEATURES AND REVIEWS */
.split {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center
}
.store-grid {
    display:grid;
    grid-template-columns:1.4fr .6fr;
    gap:18px
}
.store-grid img {
    height:100%;
    width:100%;
    object-fit:cover;
    border-radius:22px
}
.store-mini {
    display:grid;
    gap:18px
}
.feature-list {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:26px 0
}
.feature {
    background:var(--panel);
    padding:19px;
    border:1px solid var(--line);
    border-radius:18px
}
.feature b {
    color:var(--gold2)
}
.reviews {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px
}
.review {
    background:linear-gradient(145deg, #151a20, #0d1014);
    border:1px solid var(--line);
    border-radius:22px;
    padding:24px
}
.stars {
    color:var(--gold2);
    letter-spacing:.18em
}
.review p {
    color:#d6d9de
}

/* 12. PRODUCT PAGES AND GALLERIES */
.page-hero {
    padding:88px 0 58px;
    background:radial-gradient(circle at 20% 0, rgba(213, 168, 63, .2), transparent 35%)
}
.page-hero h1 {
    font-size:clamp(2.8rem, 6vw, 5.2rem)
}
.breadcrumbs {
    color:var(--muted);
    font-size:.9rem
}
.gallery {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:22px
}
.gallery-main, .gallery-side img {
    background:white;
    border-radius:22px;
    border:1px solid var(--line)
}
.gallery-main img {
    width:100%;
    aspect-ratio:4/5;
    object-fit:contain
}
.gallery-side {
    display:grid;
    gap:22px
}
.gallery-side img {
    width:100%;
    aspect-ratio:4/3;
    object-fit:contain
}
.product-info {
    position:sticky;
    top:110px
}
.product-info h2 {
    font-size:2.2rem
}
.chips {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0
}
.chip {
    border:1px solid var(--line);
    padding:8px 12px;
    border-radius:999px;
    color:#d9dde3
}

/* 13. FAQ, FOOTER AND FLOATING ACTIONS */
.faq details {
    border:1px solid var(--line);
    background:var(--panel);
    padding:18px 20px;
    border-radius:15px;
    margin-bottom:12px
}
.faq summary {
    cursor:pointer;
    font-weight:800
}
.footer {
    border-top:1px solid var(--line);
    padding:58px 0 26px;
    background:#050607
}
.footer-grid {
    display:grid;
    grid-template-columns:1.25fr .75fr .75fr;
    gap:36px
}
.footer p, .footer a {
    color:var(--muted)
}
.footer a:hover {
    color:var(--gold2)
}
.copyright {
    border-top:1px solid var(--line);
    margin-top:34px;
    padding-top:22px;
    color:#858d98;
    font-size:.9rem
}
.floating {
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:60;
    display:flex;
    flex-direction:column;
    gap:10px
}
.floating a {
    width:54px;
    height:54px;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:1.35rem;
    box-shadow:0 12px 30px rgba(0, 0, 0, .35)
}
.wa {
    background:#25D366;
    color:white
}
.call {
    background:var(--gold);
    color:#111
}
.notice {
    padding:16px;
    border-left:3px solid var(--gold);
    background:#141922;
    color:var(--muted);
    border-radius:10px
}

/* 14. SEARCH, NOTICES AND ANIMATIONS */
.search {
    width:100%;
    padding:15px 18px;
    border-radius:999px;
    background:#11151b;
    border:1px solid var(--line);
    color:white;
    margin-bottom:28px
}
.hidden {
    display:none!important
}
[data-reveal] {
    opacity:0;
    transform:translateY(22px);
    transition:.7s ease
}
[data-reveal].revealed {
    opacity:1;
    transform:none
}
@media(max-width:900px) {
    .navlinks {
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:82px;
        background:#0b0e12;
        padding:24px;
        flex-direction:column;
        border-bottom:1px solid var(--line)
    }
    .navlinks.open {
        display:flex
    }
    .menu-btn {
        display:block
    }
    .nav>.btn-gold {
        display:none
    }
    .hero-grid, .split, .gallery, .footer-grid, .store-grid {
        grid-template-columns:1fr
    }
    .hero {
        min-height:auto
    }
    .hero-grid {
        padding:58px 0
    }
    .hero-visual {
        min-height:460px
    }
    .hero-visual img {
        max-height:480px
    }
    .trust {
        grid-template-columns:1fr 1fr;
        margin-top:20px
    }
    .grid, .reviews {
        grid-template-columns:repeat(2, 1fr)
    }
    .product-info {
        position:static
    }
}
@media(max-width:600px) {
    .grid, .reviews {
        grid-template-columns:1fr
    }
    .trust {
        grid-template-columns:1fr 1fr
    }
    .section {
        padding:68px 0
    }
    .section-head {
        display:block
    }
    .hero h1 {
        font-size:3.45rem
    }
    .hero-visual {
        min-height:390px
    }
    .feature-list {
        grid-template-columns:1fr
    }
    .brand span {
        font-size:.78rem
    }
    .brand img {
        width:42px;
        height:42px
    }
    .banner img {
        aspect-ratio:4/5
    }
    .banner-copy {
        left:7%;
        right:7%
    }
    .hero-badge {
        right:0;
        bottom:5%
    }
}
/* ==========================================================================
   18A. WHITE LUXURY THEME OVERRIDES
   ========================================================================== */
:root {
    --bg:#ffffff;
    --panel:#ffffff;
    --panel2:#ffffff;
    --text:#111111;
    --muted:#62666d;
    --gold:#b78416;
    --gold2:#c99a2e;
    --line:rgba(17, 17, 17, .12);
    --shadow:0 18px 55px rgba(20, 24, 30, .10)
}
body {
    background:#fff;
    color:var(--text)
}
.topbar {
    background:#111;
    color:#fff
}
.site-header {
    background:rgba(255, 255, 255, .93);
    border-bottom:1px solid var(--line);
    box-shadow:0 8px 30px rgba(20, 24, 30, .05)
}
.brand span small {
    color:var(--gold)
}
.navlinks a {
    color:#202226
}
.navlinks a:after {
    background:var(--gold)
}
.menu-btn {
    color:#111
}
.btn {
    border-color:rgba(17, 17, 17, .16)
}
.btn-gold {
    background:#111;
    color:#fff
}
.btn-gold:hover {
    background:var(--gold);
    color:#fff
}
.btn-dark {
    background:#fff;
    color:#111;
    border:1px solid #111
}
.hero {
    min-height:72vh;
    background:#fff;
    border-bottom:1px solid var(--line)
}
.hero:after {
    display:none
}
.hero-grid.hero-clean {
    display:block;
    padding:112px 0 105px
}
.hero-copy {
    max-width:900px;
    margin:0 auto;
    text-align:center
}
.hero h1, .page-hero h1 {
    color:#111
}
.hero h1 em {
    color:var(--gold)
}
.hero p {
    color:var(--muted);
    margin-left:auto;
    margin-right:auto;
    max-width:720px
}
.hero-actions {
    justify-content:center
}
.hero-points {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:34px
}
.hero-points span {
    padding:10px 15px;
    border-radius:999px;
    background:#f4f3ef;
    border:1px solid #e8e5dc;
    color:#343434;
    font-weight:700;
    font-size:.88rem
}
.trust {
    margin-top:-36px
}
.trust div {
    background:#fff;
    border-color:var(--line);
    box-shadow:var(--shadow)
}
.trust strong {
    color:var(--gold)
}
.section {
    background:#fff
}
.section.alt {
    background:#f7f7f5
}
.section-head p, .card p, .footer p, .footer a, .breadcrumbs {
    color:var(--muted)
}
.card {
    background:#fff;
    border-color:var(--line);
    box-shadow:var(--shadow)
}
.card:hover {
    border-color:rgba(183, 132, 22, .45)
}
.card-media {
    background:#f5f5f2
}
.card-media:after {
    background:rgba(17, 17, 17, .88);
    color:#fff
}
.price, .eyebrow {
    color:var(--gold)
}
.banner {
    border-color:var(--line);
    box-shadow:var(--shadow)
}
.banner-copy {
    text-shadow:0 3px 16px rgba(0, 0, 0, .75);
    color:#fff
}
.feature, .review, .faq details {
    background:#fff;
    border-color:var(--line);
    box-shadow:0 10px 32px rgba(20, 24, 30, .06)
}
.feature b, .stars {
    color:var(--gold)
}
.review p {
    color:#45484d
}
.page-hero {
    background:#f7f7f5;
    border-bottom:1px solid var(--line)
}
.gallery-main, .gallery-side img {
    border-color:var(--line);
    box-shadow:var(--shadow)
}
.chip {
    border-color:var(--line);
    color:#30343a;
    background:#fff
}
.footer {
    background:#fff;
    border-top:1px solid var(--line)
}
.footer a:hover {
    color:var(--gold)
}
.copyright {
    border-top-color:var(--line);
    color:#777
}
.call {
    background:#111;
    color:#fff
}
.notice {
    background:#f7f7f5;
    color:var(--muted);
    border-left-color:var(--gold)
}
.search {
    background:#fff;
    color:#111;
    border-color:var(--line);
    box-shadow:0 8px 24px rgba(20, 24, 30, .05)
}
@media(max-width:900px) {
    .navlinks {
        background:#fff;
        border-bottom-color:var(--line)
    }
    .hero-grid.hero-clean {
        padding:80px 0 82px
    }
    .hero {
        min-height:auto
    }
}
@media(max-width:600px) {
    .hero h1 {
        font-size:3rem
    }
    .hero-grid.hero-clean {
        padding:64px 0 70px
    }
    .hero-points {
        gap:8px
    }
    .hero-points span {
        font-size:.78rem;
        padding:8px 11px
    }
    .trust {
        margin-top:18px
    }
}
/* ==========================================================================
   18B. BRANDED HERO, PRODUCT GALLERY AND ADMIN COMPONENTS
   ========================================================================== */
.hero-brand {
    min-height:auto;
    padding:0;
    background:linear-gradient(135deg, #fff 0%, #faf9f5 58%, #f2eee4 100%);
    overflow:hidden
}
.hero-brand-grid {
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    align-items:center;
    gap:50px;
    min-height:690px;
    padding:70px 0
}
.hero-brand .hero-copy {
    max-width:650px;
    margin:0;
    text-align:left
}
.hero-brand h1 {
    font-size:clamp(4rem, 6.5vw, 7.2rem);
    letter-spacing:-.055em;
    line-height:.87;
    margin:15px 0 28px
}
.hero-brand h1 em {
    display:inline-block;
    color:var(--gold);
    font-style:normal
}
.hero-brand p {
    margin:0 0 28px;
    max-width:590px;
    font-size:1.08rem
}
.hero-brand .hero-actions {
    justify-content:flex-start
}
.hero-proof {
    display:flex;
    gap:22px;
    margin-top:35px;
    padding-top:26px;
    border-top:1px solid var(--line)
}
.hero-proof span {
    display:flex;
    flex-direction:column;
    gap:4px
}
.hero-proof b {
    font-size:.92rem
}
.hero-proof small {
    color:var(--muted)
}
.hero-products {
    position:relative;
    min-height:560px
}
.hero-product {
    position:absolute;
    background:#fff;
    border:1px solid rgba(17, 17, 17, .08);
    border-radius:30px;
    box-shadow:0 30px 75px rgba(24, 28, 34, .15);
    overflow:hidden
}
.hero-product img {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block
}
.hero-product-main {
    inset:2% 17% 2% 10%;
    z-index:3;
    transform:rotate(-1deg)
}
.hero-product-top {
    width:37%;
    height:48%;
    right:0;
    top:0;
    z-index:2;
    transform:rotate(4deg)
}
.hero-product-bottom {
    width:40%;
    height:46%;
    right:1%;
    bottom:0;
    z-index:4;
    transform:rotate(2deg)
}
.hero-stamp {
    position:absolute;
    left:0;
    bottom:7%;
    z-index:5;
    width:120px;
    height:120px;
    border-radius:50%;
    background:#102e3f;
    color:#fff;
    display:grid;
    place-content:center;
    text-align:center;
    border:5px solid #fff;
    box-shadow:0 15px 35px rgba(0, 0, 0, .18)
}
.hero-stamp strong {
    letter-spacing:.15em
}
.hero-stamp span {
    font-size:.66rem;
    color:#e1b753;
    text-transform:uppercase;
    letter-spacing:.08em
}
.product-breadcrumb {
    padding:25px 0;
    border-bottom:1px solid var(--line);
    background:#fafafa
}
.product-layout {
    display:grid;
    grid-template-columns:minmax(0, 1.15fr) minmax(310px, .85fr);
    gap:55px;
    align-items:start
}
.product-gallery {
    min-width:0
}
.product-slider {
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow);
    touch-action:pan-y
}
.product-slide {
    display:none;
    margin:0;
    min-height:650px
}
.product-slide.active {
    display:grid;
    place-items:center;
    animation:galleryFade .25s ease
}
.product-slide img {
    width:100%;
    height:650px;
    object-fit:contain;
    padding:20px
}
@keyframes galleryFade {
    from {
        opacity:.35
    }
    to {
        opacity:1
    }
}
.slider-arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
    width:48px;
    height:48px;
    border:1px solid rgba(17, 17, 17, .14);
    border-radius:50%;
    background:rgba(255, 255, 255, .95);
    color:#111;
    font-size:2rem;
    line-height:1;
    display:grid;
    place-items:center;
    box-shadow:0 8px 24px rgba(0, 0, 0, .12);
    cursor:pointer
}
.slider-prev {
    left:16px
}
.slider-next {
    right:16px
}
.slider-count {
    position:absolute;
    right:16px;
    bottom:16px;
    background:#111;
    color:#fff;
    border-radius:999px;
    padding:7px 12px;
    font-size:.8rem
}
.gallery-thumbs {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:12px;
    margin-top:14px
}
.gallery-thumb {
    border:1px solid var(--line);
    border-radius:15px;
    background:#fff;
    overflow:hidden;
    cursor:pointer;
    padding:0
}
.gallery-thumb.active {
    border:2px solid var(--gold)
}
.gallery-thumb img {
    width:100%;
    height:125px;
    object-fit:contain
}
.floating a {
    border:0
}
.floating svg {
    width:25px;
    height:25px;
    fill:currentColor
}
.wa {
    background:#25D366;
    color:#fff
}
.call {
    background:#111;
    color:#fff
}
.muted-status {
    color:var(--muted);
    grid-column:1/-1
}
.text-link {
    font-weight:800;
    color:var(--gold)
}
.admin-main {
    padding:70px 0
}
.admin-login {
    max-width:640px;
    margin:auto;
    text-align:center;
    padding:55px;
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow)
}
.admin-login h1, .admin-heading h1 {
    font-family:'Playfair Display', serif;
    font-size:3.2rem;
    margin:.4rem 0
}
.admin-login-row {
    display:flex;
    gap:10px;
    margin-top:25px
}
.admin-login-row input {
    flex:1;
    padding:14px 16px;
    border:1px solid var(--line);
    border-radius:10px
}
.admin-heading {
    display:flex;
    justify-content:space-between;
    gap:25px;
    align-items:start;
    margin-bottom:35px
}
.admin-grid {
    display:grid;
    grid-template-columns:380px 1fr;
    gap:30px
}
.admin-form, .admin-list-wrap {
    border:1px solid var(--line);
    border-radius:22px;
    padding:25px;
    box-shadow:var(--shadow);
    background:#fff
}
.admin-form label {
    display:grid;
    gap:7px;
    font-weight:700;
    margin-bottom:16px
}
.admin-form input, .admin-form select, .admin-form textarea {
    width:100%;
    padding:12px;
    border:1px solid var(--line);
    border-radius:9px;
    font:inherit
}
.admin-list-head {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px
}
.danger-btn, .delete-product {
    border:0;
    border-radius:9px;
    background:#b42318;
    color:#fff;
    padding:10px 13px;
    font-weight:800;
    cursor:pointer
}
.admin-products {
    display:grid;
    gap:12px;
    margin-top:20px
}
.admin-product {
    display:grid;
    grid-template-columns:72px 1fr auto;
    align-items:center;
    gap:14px;
    border:1px solid var(--line);
    border-radius:14px;
    padding:10px
}
.admin-product img {
    width:72px;
    height:72px;
    object-fit:contain;
    background:#f7f7f5;
    border-radius:10px
}
.admin-product small {
    display:block;
    color:var(--muted);
    margin-top:5px
}
.form-message {
    color:var(--gold);
    font-weight:700
}
@media(max-width:900px) {
    .hero-brand-grid {
        grid-template-columns:1fr;
        min-height:auto;
        padding:60px 0 45px
    }
    .hero-brand .hero-copy {
        text-align:center;
        margin:auto
    }
    .hero-brand .hero-actions {
        justify-content:center
    }
    .hero-proof {
        justify-content:center
    }
    .hero-products {
        min-height:510px;
        max-width:650px;
        width:100%;
        margin:auto
    }
    .product-layout, .admin-grid {
        grid-template-columns:1fr
    }
    .product-info {
        position:static
    }
}
@media(max-width:600px) {
    .topbar {
        font-size:.73rem;
        padding:8px 10px
    }
    .hero-brand-grid {
        padding:45px 0 30px;
        gap:25px
    }
    .hero-brand h1 {
        font-size:3.5rem;
        line-height:.91
    }
    .hero-brand p {
        font-size:.96rem
    }
    .hero-brand .hero-actions {
        display:grid;
        grid-template-columns:1fr;
        gap:10px
    }
    .hero-brand .btn {
        width:100%
    }
    .hero-proof {
        display:grid;
        grid-template-columns:1fr 1fr;
        text-align:left;
        gap:13px;
        margin-top:24px
    }
    .hero-proof span {
        background:#fff;
        border:1px solid var(--line);
        border-radius:13px;
        padding:12px
    }
    .hero-proof small {
        font-size:.73rem
    }
    .hero-products {
        min-height:395px
    }
    .hero-product-main {
        inset:0 7% 0 7%;
        transform:none
    }
    .hero-product-top {
        display:none
    }
    .hero-product-bottom {
        width:38%;
        height:39%;
        right:0;
        bottom:-3%
    }
    .hero-stamp {
        width:82px;
        height:82px;
        left:0;
        bottom:1%;
        border-width:3px
    }
    .hero-stamp strong {
        font-size:.75rem
    }
    .hero-stamp span {
        font-size:.48rem
    }
    .product-breadcrumb {
        padding:18px 0
    }
    .section:has(.product-layout) {
        padding-top:24px
    }
    .product-layout {
        gap:28px
    }
    .product-slider {
        border-radius:16px
    }
    .product-slide {
        min-height:420px
    }
    .product-slide img {
        height:420px;
        padding:12px
    }
    .slider-arrow {
        width:43px;
        height:43px;
        font-size:1.8rem
    }
    .slider-prev {
        left:10px
    }
    .slider-next {
        right:10px
    }
    .gallery-thumbs {
        display:none
    }
    .product-info h2 {
        font-size:2rem
    }
    .floating {
        right:12px;
        bottom:14px
    }
    .floating a {
        width:50px;
        height:50px
    }
    .admin-login {
        padding:28px 20px
    }
    .admin-login-row {
        flex-direction:column
    }
    .admin-heading {
        display:block
    }
    .admin-heading .btn {
        margin-top:15px
    }
    .admin-list-head {
        align-items:flex-start
    }
    .admin-product {
        grid-template-columns:60px 1fr
    }
    .admin-product img {
        width:60px;
        height:60px
    }
    .admin-product .delete-product {
        grid-column:1/-1
    }
    .admin-main {
        padding:35px 0
    }
}
/* ==========================================================================
   18C. REFINED HERO WITH ORIGINAL PRODUCT PHOTOGRAPHY
   ========================================================================== */
.hero-brand {
    background:#fff
}
.hero-brand-grid {
    grid-template-columns:.92fr 1.08fr;
    gap:54px;
    min-height:680px
}
.hero-showcase {
    position:relative;
    min-height:570px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:14px 10px 0
}
.hero-main-frame {
    position:relative;
    width:min(100%, 620px);
    height:475px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at 50% 54%, #fff 0, #fff 48%, #f5f3ee 100%);
    border-radius:36px;
    overflow:hidden
}
.hero-main-frame:after {
    content:"";
    position:absolute;
    left:16%;
    right:16%;
    bottom:28px;
    height:30px;
    border-radius:50%;
    background:rgba(20, 25, 31, .13);
    filter:blur(22px);
    z-index:0
}
.hero-main-image {
    position:relative;
    z-index:1;
    width:100%;
    height:100%;
    object-fit:contain;
    padding:18px 58px 26px;
    filter:drop-shadow(0 24px 24px rgba(17, 24, 31, .14));
    transition:opacity .25s ease, transform .35s ease
}
.hero-main-image.is-changing {
    opacity:.15;
    transform:scale(.975)
}
.hero-arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
    width:48px;
    height:48px;
    border:1px solid #e5e1d8;
    border-radius:50%;
    background:rgba(255, 255, 255, .96);
    color:#111;
    font-size:2rem;
    line-height:1;
    display:grid;
    place-items:center;
    box-shadow:0 12px 30px rgba(17, 24, 31, .1);
    cursor:pointer;
    transition:.2s ease
}
.hero-arrow:hover {
    background:#111;
    color:#fff;
    border-color:#111;
    transform:translateY(-50%) scale(1.04)
}
.hero-arrow-prev {
    left:20px
}
.hero-arrow-next {
    right:20px
}
.hero-thumbnails {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:13px;
    margin-top:14px;
    position:relative;
    z-index:4
}
.hero-thumb {
    width:76px;
    height:82px;
    padding:5px;
    border-radius:16px;
    border:1px solid #e5e1d8;
    background:#fff;
    box-shadow:0 8px 24px rgba(17, 24, 31, .08);
    cursor:pointer;
    transition:.2s ease
}
.hero-thumb img {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block
}
.hero-thumb:hover {
    transform:translateY(-3px)
}
.hero-thumb.active {
    border:2px solid var(--gold);
    box-shadow:0 10px 28px rgba(199, 151, 49, .2)
}
.hero-image-note {
    margin-top:14px;
    text-align:center;
    display:flex;
    flex-direction:column;
    gap:2px
}
.hero-image-note span {
    font-size:.74rem;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:#1a1a1a
}
.hero-image-note small {
    color:var(--muted);
    font-size:.75rem
}
@media(max-width:900px) {
    .hero-brand-grid {
        grid-template-columns:1fr;
        gap:25px;
        padding-bottom:48px
    }
    .hero-showcase {
        min-height:auto;
        max-width:680px;
        width:100%;
        margin:auto;
        padding-top:0
    }
    .hero-main-frame {
        height:470px
    }
}
@media(max-width:600px) {
    .hero-brand-grid {
        padding-top:42px;
        gap:22px
    }
    .hero-showcase {
        width:calc(100% + 18px);
        margin-left:-9px
    }
    .hero-main-frame {
        height:390px;
        border-radius:22px;
        background:linear-gradient(180deg, #fff 0%, #faf9f6 100%)
    }
    .hero-main-frame:after {
        left:21%;
        right:21%;
        bottom:24px;
        height:22px
    }
    .hero-main-image {
        padding:12px 34px 18px
    }
    .hero-arrow {
        width:42px;
        height:42px;
        font-size:1.7rem;
        box-shadow:0 8px 24px rgba(17, 24, 31, .12)
    }
    .hero-arrow-prev {
        left:8px
    }
    .hero-arrow-next {
        right:8px
    }
    .hero-thumbnails {
        gap:8px;
        margin-top:11px
    }
    .hero-thumb {
        width:61px;
        height:68px;
        border-radius:13px;
        padding:4px
    }
    .hero-image-note {
        margin-top:11px
    }
    .hero-image-note span {
        font-size:.63rem
    }
}
/* ==========================================================================
   18D. MOBILE HERO: ACTIONS, PROOF CARDS AND TRUST STRIP
   ========================================================================== */
.hero-actions-mobile {
    display:none
}
@media(max-width:600px) {
    .hero-brand-grid {
        padding:34px 0 20px;
        gap:14px
    }
    .hero-brand .hero-copy {
        text-align:left;
        width:100%
    }
    .hero-brand h1 {
        font-size:clamp(2.55rem, 13vw, 3.25rem);
        margin:.28em 0 .22em
    }
    .hero-brand p {
        font-size:.9rem;
        line-height:1.6;
        margin-bottom:0
    }
    .hero-actions-desktop {
        display:none!important
    }
    .hero-actions-mobile {
        display:grid!important;
        grid-template-columns:1.35fr .65fr;
        gap:8px;
        margin-top:18px
    }
    .hero-actions-mobile .btn {
        min-height:43px;
        padding:10px 11px;
        font-size:.76rem;
        white-space:nowrap;
        border-radius:999px
    }
    .hero-proof {
        display:grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:6px;
        margin-top:17px;
        text-align:center
    }
    .hero-proof span {
        min-width:0;
        padding:9px 5px 8px;
        border-radius:11px;
        box-shadow:none;
        background:#fff
    }
    .hero-proof b {
        display:block;
        font-size:.67rem;
        line-height:1.15;
        white-space:normal
    }
    .hero-proof small {
        display:block;
        margin-top:4px;
        font-size:.55rem;
        line-height:1.2;
        color:#727780
    }
    .hero-showcase {
        display:none!important
    }
    .trust {
        display:grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap:5px;
        margin:12px auto 0;
        padding:0 10px;
        width:100%
    }
    .trust div {
        min-width:0;
        padding:10px 4px 9px;
        border-radius:12px;
        box-shadow:0 5px 15px rgba(17, 24, 31, .06);
        font-size:.54rem;
        line-height:1.2;
        text-align:center;
        background:linear-gradient(180deg, #fff, #faf9f6)
    }
    .trust strong {
        font-size:.66rem;
        line-height:1.12;
        margin-bottom:4px;
        white-space:normal
    }
}
/* ==========================================================================
   18E. FINAL MOBILE COMPACT OVERRIDES
   ========================================================================== */
@media (max-width:768px) {
    .hero {
        padding:18px 0 8px!important;
    }
    .hero-grid, .hero-content {
        padding-bottom:0!important;
        margin-bottom:0!important;
    }
    .hero-showcase {
        display:none!important;
    }
    .hero-actions {
        display:flex!important;
        gap:10px!important;
        margin:12px 0!important;
    }
    .hero-actions .btn {
        flex:1!important;
        height:48px!important;
        border-radius:999px!important;
        font-size:15px!important;
        font-weight:700!important;
        display:flex!important;
        align-items:center!important;
        justify-content:center!important;
    }
    .hero-highlights {
        display:grid!important;
        grid-template-columns:repeat(3, 1fr)!important;
        gap:8px!important;
        margin:12px 0!important;
    }
    .hero-highlights>* {
        padding:10px 6px!important;
        min-height:auto!important;
    }
    .trust {
        display:grid!important;
        grid-template-columns:repeat(4, 1fr)!important;
        gap:8px!important;
        margin:10px 0 0!important;
    }
    .trust>div {
        padding:10px 6px!important;
        font-size:10px!important;
    }
    .trust strong {
        display:block;
        font-size:13px!important;
    }
}


/* ==========================================================================
   FINAL MOBILE-ONLY HERO SPACING + COMPACT TRUST GRID
   Keeps .hero-proof unchanged. Desktop/tablet styling is untouched.
   ========================================================================== */
@media (max-width: 600px) {
    /* Remove only the extra vertical space around the mobile hero content. */
    .hero.hero-brand {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        min-height: auto !important;
    }

    .hero-brand .hero-brand-grid {
        min-height: auto !important;
        padding-top: 12px !important;
        padding-bottom: 10px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        gap: 0 !important;
    }

    .hero-brand .hero-copy {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-brand .eyebrow {
        margin-top: 0 !important;
    }

    /* The mobile hero action block was removed from index.html. */
    .hero-actions-mobile {
        display: none !important;
    }

    /* Keep the three hero-proof cards exactly as designed. */

    /* Compact, premium 2 x 2 trust grid below the hero. */
    .container.trust {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px !important;
        width: min(100% - 24px, 430px) !important;
        margin: 8px auto 0 !important;
        padding: 0 !important;
    }

    .container.trust > div {
        min-width: 0 !important;
        min-height: 48px !important;
        padding: 7px 8px !important;
        border-radius: 10px !important;
        border: 1px solid rgba(17, 17, 17, 0.09) !important;
        background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%) !important;
        box-shadow: 0 4px 12px rgba(17, 24, 31, 0.045) !important;
        color: #62666d !important;
        font-size: 0.60rem !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .container.trust > div strong {
        display: block !important;
        margin: 0 0 2px !important;
        color: var(--gold) !important;
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        line-height: 1.05 !important;
        white-space: normal !important;
    }
}


/* Mobile final tweaks */
@media (max-width:768px){
  .container.trust{display:none!important;visibility:hidden!important;height:0!important;min-height:0!important;margin:0!important;padding:0!important;overflow:hidden!important;}
  .hero{padding-top:6px!important;padding-bottom:8px!important;}
  .hero-brand-grid{padding-top:8px!important;padding-bottom:8px!important;min-height:auto!important;}
  .hero-actions-mobile{display:none!important;}
}

/* ========================================================================== 
   RESPONSIVE PROMOTIONAL BANNER
   --------------------------------------------------------------------------
   Phone:  vertical brand-banner-mobile.png selected by the <picture> element.
   Tablet: existing horizontal brand-banner.png remains unchanged.
   Desktop: existing horizontal brand-banner.png remains unchanged.
   ========================================================================== */
.banner-picture {
    display: block;
    width: 100%;
}

.banner-image {
    display: block;
    width: 100%;
}

/* Phone only — show the entire portrait banner with no top/bottom cropping. */
@media (max-width: 600px) {
    .banner-responsive {
        height: auto !important;
        border-radius: 18px;
        overflow: hidden;
    }

    .banner-responsive .banner-picture,
    .banner-responsive .banner-image {
        width: 100%;
        height: auto !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
    }

    /* Keep the complete image visible; place the CTA below instead of over it. */
    .banner-responsive .banner-copy {
        position: static;
        max-width: none;
        padding: 12px;
        background: #ffffff;
        text-shadow: none;
    }

    .banner-responsive .banner-copy .btn {
        width: 100%;
        min-height: 46px;
        text-align: center;
    }
}



/* ==========================================================
   ADMIN PRODUCT MANAGEMENT — EDIT, UPLOAD, VISIBILITY
========================================================== */

.field-help {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.admin-checks {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fafafa;
}

.check-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 9px;
    margin: 0 !important;
}

.check-row input {
    width: 18px !important;
    height: 18px;
    margin: 0;
}

.admin-form-actions,
.admin-product-actions,
.admin-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.admin-image-preview {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f7f7f7;
}

.admin-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-image-preview button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.admin-product {
    grid-template-columns: 72px minmax(0, 1fr) auto !important;
}

.admin-product.is-hidden {
    opacity: .62;
}

.admin-product-copy {
    min-width: 0;
}

.admin-product-actions button {
    padding: 8px 12px;
    border: 1px solid #111;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 700;
    cursor: pointer;
}

.admin-product-actions .delete-product {
    border-color: #c52a1a;
    color: #c52a1a;
}

.status-pill {
    display: inline-flex;
    padding: 3px 8px;
    border-radius: 999px;
    background: #ececec;
    color: #555;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.status-pill.active {
    background: #e3f7e9;
    color: #176a32;
}

.status-pill.featured {
    background: #fff3cf;
    color: #8a5c00;
}

.admin-empty {
    padding: 28px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 16px;
}

@media (max-width: 700px) {
    .admin-product {
        grid-template-columns: 58px minmax(0, 1fr) !important;
    }

    .admin-product-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .image-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
