﻿:root {
    --navy-950: #11172a;
    --navy-900: #1a2338;
    --navy-800: #232b3f;
    --navy-700: #303a54;
    --navy-600: #465071;
    --gold-600: #a6821c;
    --gold-500: #c9a227;
    --gold-400: #dcbd58;
    --gold-100: #f6ecc9;
    --azure-600: #1f5fc4;
    --azure-500: #2f80ed;
    --azure-400: #5fa2ff;
    --azure-100: #e4efff;
    --bg: #f3f5f8;
    --bg-alt: #eaeef3;
    --white: #ffffff;
    --ink-900: #161b26;
    --ink-700: #3a4256;
    --ink-500: #6b7488;
    --line: #e1e5ec;
    --line-dark: #3a4459;
    --f-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --f-body: 'Inter', 'Segoe UI', sans-serif;
    --f-mono: 'IBM Plex Mono', monospace;
    --maxw: 1240px;
    --radius: 4px;
    --shadow-sm: 0 1px 2px rgba(17,23,42,.06), 0 1px 1px rgba(17,23,42,.04);
    --shadow-md: 0 8px 24px rgba(17,23,42,.10);
    --shadow-lg: 0 20px 50px rgba(17,23,42,.18);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    font-family: var(--f-body);
    color: var(--ink-900);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

h1, h2, h3, h4 {
    font-family: var(--f-display);
    color: var(--navy-900);
    line-height: 1.15;
    margin: 0 0 .5em;
    letter-spacing: -.01em;
}

h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin: 0 0 1em;
    color: var(--ink-700);
}

:focus-visible {
    outline: 3px solid var(--azure-400);
    outline-offset: 2px;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 76px 0;
}

.section--tight {
    padding: 48px 0;
}

.section--alt {
    background: var(--white);
}

.section--navy {
    background: var(--navy-900);
    color: var(--white);
}

    .section--navy h2, .section--navy h3 {
        color: var(--white);
    }

    .section--navy p {
        color: #c4cbdc;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-600);
    font-weight: 600;
    margin-bottom: 14px;
}

    .eyebrow::before {
        content: '';
        width: 22px;
        height: 2px;
        background: var(--gold-500);
        display: inline-block;
    }

.section--navy .eyebrow {
    color: var(--gold-400);
}

    .section--navy .eyebrow::before {
        background: var(--gold-400);
    }

.head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

    .head-row p {
        max-width: 520px;
        margin: 0;
    }

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .92rem;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-950);
}

    .btn-gold:hover {
        background: var(--gold-400);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-navy {
    background: var(--navy-800);
    color: var(--white);
}

    .btn-navy:hover {
        background: var(--navy-700);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}

    .btn-outline:hover {
        border-color: var(--gold-400);
        color: var(--gold-400);
    }

.btn-outline-navy {
    background: transparent;
    color: var(--navy-800);
    border-color: #c7cede;
}

    .btn-outline-navy:hover {
        border-color: var(--navy-800);
        background: var(--navy-800);
        color: var(--white);
    }

.btn-sm {
    padding: 9px 16px;
    font-size: .82rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
}

.topbar {
    background: var(--navy-950);
    color: #aeb6cc;
    font-size: .82rem;
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 38px;
    }

.topbar-links {
    display: flex;
    gap: 20px;
}

    .topbar-links a:hover {
        color: var(--gold-400);
    }

.topbar-contact {
    display: flex;
    gap: 22px;
}

    .topbar-contact span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

.site-header {
    background: var(--navy-800);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 18px rgba(0,0,0,.18);
}

    .site-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 82px;
        gap: 24px;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-weight: 700;
    color: var(--navy-950);
    font-size: 1.1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .brand-text strong {
        font-family: var(--f-display);
        color: var(--white);
        font-size: 1.18rem;
        letter-spacing: .02em;
    }

    .brand-text span {
        font-family: var(--f-mono);
        font-size: .62rem;
        letter-spacing: .16em;
        color: var(--gold-400);
        text-transform: uppercase;
    }

.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav > .nav-list > li > a.menu-link {
    display: flex;
    align-items: center;
    color: #d7dcea;
    padding: 10px 15px;
    font-size: .93rem;
    font-weight: 500;
    border-radius: 3px;
    position: relative;
    transition: color .15s ease;
    gap: 0;
}

    .main-nav > .nav-list > li > a.menu-link .menu-link__text {
        padding-right: 5px;
    }

.main-nav a.menu-link:hover,
.main-nav a.menu-link.active {
    color: var(--white);
}

.main-nav > .nav-list > li > a.menu-link.active::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 2px;
    height: 2px;
    background: var(--gold-500);
}

.main-nav > .nav-list > li.has-default-child > a.menu-link.active::after {
    background: var(--gold-500);
}

.menu-link__caret {
    background: transparent;
    border: 0;
    color: inherit;
    padding: 4px 6px;
    margin-left: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: background .15s ease;
}

    .menu-link__caret:hover {
        background: rgba(255,255,255,.1);
    }

.caret {
    font-size: .6rem;
    transition: transform .18s ease;
    position: relative;
    top: 1px;
    display: inline-block;
}

li.has-dropdown:hover > a > .menu-link__caret .caret,
li.has-dropdown.open > a > .menu-link__caret .caret {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--navy-800);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 8px;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 200;
    list-style: none;
}

li.has-dropdown:hover > .dropdown,
li.has-dropdown:focus-within > .dropdown,
li.has-dropdown.open > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown > li > a.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 3px;
    color: #d7dcea;
    font-size: .88rem;
    font-weight: 500;
}

    .dropdown > li > a.menu-link:hover,
    .dropdown > li > a.menu-link.active {
        background: rgba(255,255,255,.07);
        color: var(--white);
    }

    .dropdown > li > a.menu-link.active {
        color: var(--gold-400);
    }

.dropdown .dropdown {
    top: -9px;
    left: 100%;
    margin-left: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    transition: background .15s ease, border-color .15s ease;
    cursor: pointer;
}

    .icon-btn:hover {
        background: rgba(255,255,255,.08);
        border-color: var(--gold-400);
    }

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: .65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-mono);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 3px;
    padding: 0 6px 0 12px;
    height: 40px;
}

    .search-box input {
        background: transparent;
        border: 0;
        color: var(--white);
        width: 150px;
        outline: none;
    }

        .search-box input::placeholder {
            color: #8b93ab;
        }

    .search-box button {
        background: transparent;
        border: 0;
        color: #c4cbdc;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 3px;
    background: transparent;
    color: var(--white);
    align-items: center;
    justify-content: center;
}

@media (max-width: 1080px) {
    .search-box {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--navy-800);
        padding: 8px 12px 18px;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 82px);
        overflow-y: auto;
    }

        .main-nav.open {
            display: flex;
        }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .main-nav > .nav-list > li > a.menu-link {
        padding: 13px 10px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        justify-content: space-between;
    }

        .main-nav > .nav-list > li > a.menu-link .menu-link__text {
            flex: 1;
        }

        .main-nav > .nav-list > li > a.menu-link.active::after {
            display: none;
        }

    .nav-toggle {
        display: flex;
    }

    .topbar-links {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(255,255,255,.04);
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0;
        margin: 0 0 0 12px;
    }

    li.has-dropdown.open > .dropdown {
        display: flex;
    }

    .dropdown .dropdown {
        margin-left: 14px;
    }

    .dropdown > li > a.menu-link {
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255,255,255,.05);
    }
}

.cat-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

    .cat-strip .container {
        display: flex;
        gap: 26px;
        overflow-x: auto;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .cat-strip a {
        font-size: .82rem;
        font-weight: 600;
        color: var(--ink-700);
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 4px 2px;
        border-bottom: 2px solid transparent;
        transition: color .2s, border-color .2s;
    }

        .cat-strip a:hover {
            color: var(--azure-600);
            border-color: var(--azure-500);
        }

.hero--cinematic {
    position: relative;
    overflow: hidden;
    background: var(--navy-950);
    min-height: 620px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 620px;
}

.slide {
    position: relative;
    overflow: hidden;
    height: 620px;
    background: var(--navy-900);
}

.slide-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

    .slide-media img,
    .slide-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.slide--image .slide-media img {
    transform: scale(1);
    transition: transform 8s ease-out;
    will-change: transform;
}

.slide--image.swiper-slide-active .slide-media img {
    transform: scale(1.12);
}

.slide--video .slide-media video {
    transform: scale(1.05);
    transition: transform 2s ease-out;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(17,23,42,.92) 0%, rgba(17,23,42,.75) 35%, rgba(17,23,42,.25) 65%, rgba(17,23,42,.15) 100%), linear-gradient(180deg, transparent 40%, rgba(17,23,42,.6) 100%);
    pointer-events: none;
}

.slide-overlay--video {
    background: linear-gradient(90deg, rgba(17,23,42,.88) 0%, rgba(17,23,42,.55) 45%, rgba(17,23,42,.15) 100%), linear-gradient(180deg, transparent 50%, rgba(17,23,42,.7) 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 60px 0;
}

    .slide-content .container {
        width: 100%;
    }

    .slide-content > .container > * {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .7s ease, transform .7s ease;
    }

.swiper-slide-active .slide-content > .container > *:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s;
}

.swiper-slide-active .slide-content > .container > *:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .4s;
}

.swiper-slide-active .slide-content > .container > *:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .6s;
}

.swiper-slide-active .slide-content > .container > *:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .8s;
}

.swiper-slide-active .slide-content > .container > *:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.slide-badge {
    display: inline-block;
    background: var(--gold-500);
    color: var(--navy-950);
    font-family: var(--f-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 8px 18px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(201,162,39,.3);
}

.slide-badge--alt {
    background: var(--azure-500);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(47,128,237,.3);
}

.slide-badge--live {
    background: rgba(255,50,50,.95);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,50,50,.6);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255,50,50,0);
    }
}

.slide-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 720px;
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.slide-subtitle {
    font-family: var(--f-mono);
    font-size: 1.05rem;
    color: var(--gold-400);
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 18px;
    max-width: 620px;
}

.slide-description {
    font-size: 1.08rem;
    color: #d7dcea;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 30px;
}

.slide-cta {
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(201,162,39,.35);
}

.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.15);
    z-index: 5;
    overflow: hidden;
}

    .slide-progress span {
        display: block;
        height: 100%;
        width: 0;
        background: var(--gold-500);
        transform-origin: left;
    }

.swiper-slide-active .slide-progress span {
    animation: progressFill 7s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.slide-video-indicator {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(17,23,42,.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    color: var(--white);
    font-family: var(--f-mono);
    font-size: .78rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

    .slide-video-indicator .play-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        background: var(--gold-500);
        color: var(--navy-950);
        border-radius: 50%;
        font-size: .7rem;
    }

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(17,23,42,.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
}

    .hero-nav-btn:hover {
        background: var(--gold-500);
        border-color: var(--gold-500);
        color: var(--navy-950);
        transform: translateY(-50%) scale(1.08);
    }

    .hero-nav-btn span {
        font-size: 2rem;
        font-weight: 300;
        line-height: 1;
    }

    .hero-nav-btn.swiper-button-prev {
        left: 32px;
    }

    .hero-nav-btn.swiper-button-next {
        right: 32px;
    }

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    display: none;
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    width: auto;
}

    .hero-pagination .swiper-pagination-bullet {
        width: 36px;
        height: 4px;
        border-radius: 2px;
        background: rgba(255,255,255,.4);
        opacity: 1;
        transition: all .3s ease;
        margin: 0 !important;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        background: var(--gold-400);
        width: 56px;
    }

.hero-counter {
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(17,23,42,.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    color: var(--white);
    font-family: var(--f-mono);
}

.hero-counter-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-400);
}

.hero-counter-sep {
    color: rgba(255,255,255,.4);
    font-size: .9rem;
}

.hero-counter-total {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
}

.hero-slider .swiper-slide {
    opacity: 0 !important;
    transition: opacity .8s ease-in-out;
}

.hero-slider .swiper-slide-active {
    opacity: 1 !important;
}

.hero-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 100%;
    max-width: var(--maxw);
    padding: 0 24px;
    color: var(--white);
    pointer-events: none;
}

    .hero-copy > * {
        pointer-events: auto;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
        color: var(--white);
        max-width: 720px;
        line-height: 1.05;
        margin: 14px 0 20px;
        text-shadow: 0 4px 30px rgba(0,0,0,.5);
    }

    .hero-copy .lede {
        max-width: 560px;
        color: #e4e8f0;
        font-size: 1.08rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

    .hero-stats > div {
        display: flex;
        flex-direction: column;
    }

    .hero-stats strong {
        font-family: var(--f-display);
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--gold-400);
        line-height: 1;
    }

    .hero-stats span {
        font-family: var(--f-mono);
        font-size: .74rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: rgba(255,255,255,.8);
        margin-top: 6px;
    }

@media (max-width: 1100px) {
    .hero-slider, .slide {
        height: 560px;
    }

    .slide-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }

    .hero-nav-btn {
        width: 48px;
        height: 48px;
    }

        .hero-nav-btn.swiper-button-prev {
            left: 20px;
        }

        .hero-nav-btn.swiper-button-next {
            right: 20px;
        }
}

@media (max-width: 768px) {
    .hero--cinematic {
        min-height: 520px;
    }

    .hero-slider, .slide {
        height: 520px;
    }

    .hero-copy {
        position: static;
        transform: none;
        padding: 40px 24px;
        background: var(--navy-900);
    }

        .hero-copy h1 {
            font-size: clamp(1.8rem, 5vw, 2.4rem);
        }

    .hero-stats {
        gap: 24px;
    }

        .hero-stats strong {
            font-size: 1.8rem;
        }

    .slide-content {
        padding: 40px 0;
        align-items: flex-end;
    }

    .slide-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .slide-subtitle {
        font-size: .92rem;
    }

    .slide-description {
        font-size: .92rem;
        margin-bottom: 20px;
        display: none;
    }

    .slide-overlay {
        background: linear-gradient(180deg, rgba(17,23,42,.3) 0%, rgba(17,23,42,.85) 55%, rgba(17,23,42,.95) 100%);
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }

        .hero-nav-btn span {
            font-size: 1.5rem;
        }

        .hero-nav-btn.swiper-button-prev {
            left: 12px;
        }

        .hero-nav-btn.swiper-button-next {
            right: 12px;
        }

    .hero-counter {
        top: 16px;
        right: 16px;
        padding: 6px 12px;
    }

    .hero-counter-current {
        font-size: 1.1rem;
    }

    .slide-video-indicator {
        bottom: 70px;
        right: 16px;
        font-size: .7rem;
        padding: 6px 12px;
    }

    .slide-badge {
        padding: 6px 12px;
        font-size: .65rem;
    }

    .slide-cta {
        padding: 12px 22px;
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .hero-slider, .slide {
        height: 480px;
    }

    .slide-title {
        font-size: 1.4rem;
    }

    .slide-subtitle {
        font-size: .82rem;
    }

    .hero-pagination {
        bottom: 16px;
        gap: 8px;
    }

        .hero-pagination .swiper-pagination-bullet {
            width: 24px;
        }

        .hero-pagination .swiper-pagination-bullet-active {
            width: 40px;
        }
}

.page-header {
    background: var(--navy-800);
    color: var(--white);
    padding: 44px 0 40px;
    background-image: linear-gradient(120deg, var(--navy-800) 60%, var(--navy-700) 100%);
    border-bottom: 3px solid var(--gold-500);
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: var(--f-mono);
    font-size: .74rem;
    letter-spacing: .03em;
    color: #9aa3bd;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

    .breadcrumb a:hover {
        color: var(--gold-400);
    }

    .breadcrumb .sep {
        opacity: .6;
    }

.page-header h1 {
    color: var(--white);
    margin-bottom: 0;
}

.grid {
    display: grid;
    gap: 28px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 980px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
    display: flex;
    flex-direction: column;
}

    .card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
        border-color: #d3dae8;
    }

.media {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, var(--navy-700), var(--navy-900));*/
    color: rgba(255,255,255,.8);
    font-family: var(--f-mono);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* .media.tone-2 {
        background: linear-gradient(135deg, #2a3a5c, #1a2338);
    }

    .media.tone-3 {
        background: linear-gradient(135deg, #3a2f22, #232b3f);
    }

    .media.tone-4 {
        background: linear-gradient(135deg, #22384a, #1a2338);
    }

    .media.tone-5 {
        background: linear-gradient(135deg, #3a2440, #1a2338);
    }*/

.media-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-family: var(--f-mono);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 4px 9px;
    border-radius: 2px;
    text-transform: uppercase;
}

    .media-tag.alt {
        background: var(--azure-500);
        color: var(--white);
    }

.news-card .body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-family: var(--f-mono);
    font-size: .72rem;
    color: var(--azure-600);
    letter-spacing: .04em;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.news-card p {
    font-size: .9rem;
    flex: 1;
}

.read-more {
    font-size: .84rem;
    font-weight: 700;
    color: var(--navy-800);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

    .read-more:hover {
        color: var(--azure-600);
        gap: 9px;
    }

.cat-card {
    padding: 26px 22px;
    text-align: left;
    position: relative;
}

    .cat-card .cat-icon {
        width: 46px;
        height: 46px;
        border-radius: 4px;
        background: var(--azure-100);
        color: var(--azure-600);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        font-size: 1.4rem;
    }

    .cat-card h3 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .cat-card .count {
        font-family: var(--f-mono);
        font-size: .74rem;
        color: var(--ink-500);
    }

    .cat-card::after {
        content: '→';
        position: absolute;
        top: 24px;
        right: 22px;
        color: var(--line);
        font-size: 1.2rem;
        transition: color .2s, transform .2s;
    }

    .cat-card:hover::after {
        color: var(--gold-500);
        transform: translateX(4px);
    }

.prod-card .body {
    padding: 16px 18px 20px;
}

.prod-cat {
    font-family: var(--f-mono);
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 6px;
}

.prod-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.prod-price {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-900);
}

    .prod-price small {
        font-family: var(--f-body);
        font-weight: 500;
        font-size: .72rem;
        color: var(--ink-500);
        text-decoration: line-through;
        margin-left: 6px;
    }

.prod-moq {
    font-family: var(--f-mono);
    font-size: .68rem;
    color: var(--ink-500);
    margin-top: 4px;
}

.add-cart-btn {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background: var(--navy-800);
    color: var(--white);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s, transform .18s, color .18s;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}

    .add-cart-btn:hover {
        background: var(--gold-500);
        color: var(--navy-950);
    }

    .add-cart-btn:active {
        transform: scale(.9);
    }

.stock-badge {
    font-family: var(--f-mono);
    font-size: .66rem;
    padding: 3px 8px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 6px;
}

    .stock-badge.in {
        background: #e4f5ea;
        color: #1f7a44;
    }

    .stock-badge.low {
        background: #fdf1dc;
        color: #9a6a10;
    }

    .stock-badge.out {
        background: #fde4e4;
        color: #a02828;
    }

.value-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

    .value-card .num {
        font-family: var(--f-mono);
        color: var(--gold-600);
        font-size: .78rem;
        letter-spacing: .08em;
        margin-bottom: 12px;
        display: block;
    }

.layout-with-sidebar {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 900px) {
    .layout-with-sidebar {
        grid-template-columns: 1fr;
    }
}

.filter-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px;
}

    .filter-box h4 {
        font-size: .86rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        font-family: var(--f-mono);
        color: var(--navy-800);
        margin-bottom: 14px;
    }

    .filter-box label {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: .9rem;
        color: var(--ink-700);
        padding: 6px 0;
        cursor: pointer;
    }

    .filter-box input[type="checkbox"] {
        accent-color: var(--navy-800);
        width: 15px;
        height: 15px;
    }

.range-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .range-row input {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid var(--line);
        border-radius: 3px;
    }

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

    .toolbar .result-count {
        font-size: .88rem;
        color: var(--ink-500);
    }

    .toolbar select {
        padding: 9px 12px;
        border: 1px solid var(--line);
        border-radius: 3px;
        background: var(--white);
    }

.view-toggle {
    display: flex;
    gap: 4px;
}

    .view-toggle button {
        width: 36px;
        height: 36px;
        border: 1px solid var(--line);
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
        cursor: pointer;
    }

        .view-toggle button.active {
            background: var(--navy-800);
            border-color: var(--navy-800);
            color: var(--white);
        }

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 44px;
}

    .pagination a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line);
        border-radius: 3px;
        font-size: .86rem;
        color: var(--ink-700);
        transition: all .2s;
    }

        .pagination a.active {
            background: var(--navy-800);
            border-color: var(--navy-800);
            color: var(--white);
        }

        .pagination a:hover:not(.active) {
            border-color: var(--navy-800);
        }

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

@media (max-width: 900px) {
    .pd-grid {
        grid-template-columns: 1fr;
    }
}

.pd-gallery-main {
    aspect-ratio: 1/1;
    border-radius: 6px;
    margin-bottom: 14px;
}

.pd-thumbs {
    display: flex;
    gap: 10px;
}

    .pd-thumbs .thumb {
        width: 74px;
        height: 74px;
        border-radius: 4px;
        border: 2px solid transparent;
        cursor: pointer;
    }

        .pd-thumbs .thumb.active {
            border-color: var(--gold-500);
        }

.pd-sku {
    font-family: var(--f-mono);
    font-size: .76rem;
    color: var(--ink-500);
    margin-bottom: 6px;
}

.pd-qty-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 22px 0;
    flex-wrap: wrap;
}

.qty-input {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
}

    .qty-input button {
        width: 38px;
        background: var(--bg);
        border: 0;
        font-size: 1.1rem;
        color: var(--navy-800);
        cursor: pointer;
    }

    .qty-input input {
        width: 52px;
        border: 0;
        text-align: center;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

.pd-specs {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .pd-specs tr {
        border-bottom: 1px solid var(--line);
    }

    .pd-specs td {
        padding: 11px 4px;
        font-size: .9rem;
    }

        .pd-specs td:first-child {
            color: var(--ink-500);
            width: 40%;
            font-family: var(--f-mono);
            font-size: .8rem;
        }

.tabs {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    margin: 52px 0 26px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 13px 22px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink-500);
    border-bottom: 2px solid transparent;
    background: transparent;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    cursor: pointer;
    transition: all .2s;
}

    .tab-btn.active {
        color: var(--navy-900);
        border-color: var(--gold-500);
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

.trust-row {
    display: flex;
    gap: 22px;
    margin-top: 24px;
    flex-wrap: wrap;
}

    .trust-row div {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .82rem;
        color: var(--ink-700);
    }

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 52px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
}

.timeline {
    position: relative;
    padding-left: 34px;
    margin-top: 10px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: var(--line);
    }

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -34px;
        top: 2px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: var(--white);
        border: 3px solid var(--gold-500);
    }

.timeline-year {
    font-family: var(--f-mono);
    font-weight: 700;
    color: var(--navy-800);
    font-size: .95rem;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

    .gal-grid .gal-item {
        grid-column: span 1;
        aspect-ratio: 1/1;
        border-radius: 4px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        .gal-grid .gal-item.wide {
            grid-column: span 2;
        }

.gal-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,23,42,.75), transparent 55%);
    opacity: 0;
    transition: opacity .2s;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
}

.gal-item:hover .overlay {
    opacity: 1;
}

.gal-item:hover {
    transform: scale(1.01);
}

@media (max-width: 900px) {
    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .gal-grid .gal-item.wide {
            grid-column: span 2;
        }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(11,15,26,.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

    .lightbox.open {
        display: flex;
    }

.lightbox-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.lightbox-visual {
    aspect-ratio: 16/10;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--f-mono);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    overflow: hidden;
}

    .lightbox-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    color: #fff;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}

.lightbox-caption {
    color: #dfe3ee;
}

.video-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

    .video-card .play-btn {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255,255,255,.92);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-900);
        transition: transform .2s, background .2s;
        z-index: 2;
    }

    .video-card:hover .play-btn {
        transform: scale(1.1);
        background: var(--gold-500);
    }

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 52px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

    .contact-info-item .ic {
        width: 44px;
        height: 44px;
        border-radius: 4px;
        background: var(--navy-800);
        color: var(--gold-400);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-info-item strong {
        display: block;
        margin-bottom: 4px;
        font-size: .95rem;
    }

    .contact-info-item span, .contact-info-item a {
        font-size: .9rem;
        color: var(--ink-500);
    }

.map-frame {
    aspect-ratio: 16/9;
    border-radius: 6px;
    background: linear-gradient(135deg, #dfe4ec, #c7cede);
    position: relative;
    overflow: hidden;
    margin-top: 26px;
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    .map-frame .pin {
        position: absolute;
        top: 44%;
        left: 52%;
        width: 34px;
        height: 34px;
        background: var(--gold-500);
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg) translate(-50%, -50%);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

    .form-grid .full {
        grid-column: 1 / -1;
    }

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.field label {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--white);
    transition: border-color .15s;
}

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        border-color: var(--azure-500);
        outline: none;
    }

.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 34px;
    box-shadow: var(--shadow-sm);
}

.cta-band {
    background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
    color: var(--white);
    border-radius: 6px;
    padding: 44px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

    .cta-band::after {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,162,39,.25), transparent 70%);
    }

    .cta-band h3 {
        color: #fff;
        margin-bottom: 6px;
    }

    .cta-band p {
        color: #b9c1d6;
        margin: 0;
    }

.site-footer {
    background: var(--navy-950);
    color: #9aa3bd;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 820px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer h4 {
    color: var(--white);
    font-family: var(--f-mono);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.site-footer ul li {
    margin-bottom: 11px;
}

.site-footer a:hover {
    color: var(--gold-400);
}

.footer-brand p {
    max-width: 280px;
    font-size: .88rem;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

    .social-row a {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all .2s;
    }

        .social-row a:hover {
            background: var(--gold-500);
            border-color: var(--gold-500);
            color: var(--navy-950);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom .legal-links {
        display: flex;
        gap: 18px;
    }

.article-layout {
    max-width: 820px;
    margin: 0 auto;
}

.article-hero {
    aspect-ratio: 16/9;
    border-radius: 8px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-family: var(--f-mono);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

    .article-meta .date {
        font-family: var(--f-mono);
        font-size: .78rem;
        letter-spacing: .04em;
        color: var(--azure-600);
    }

    .article-meta .category {
        display: inline-block;
        padding: 4px 12px;
        background: var(--gold-100);
        color: var(--gold-600);
        font-family: var(--f-mono);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .05em;
        text-transform: uppercase;
        border-radius: 2px;
    }

.article-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ink-700);
}

    .article-content p {
        margin-bottom: 20px;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin: 40px 0 16px;
        color: var(--navy-900);
    }

    .article-content blockquote {
        border-left: 3px solid var(--gold-500);
        padding-left: 24px;
        margin: 32px 0;
        font-family: var(--f-display);
        font-size: 1.3rem;
        font-style: italic;
        color: var(--navy-800);
        line-height: 1.4;
    }

    .article-content ul {
        padding-left: 20px;
        margin-bottom: 16px;
        color: var(--ink-700);
    }

        .article-content ul li {
            margin-bottom: 8px;
            list-style: disc;
        }

.article-tags {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

    .article-tags a {
        display: inline-block;
        padding: 6px 14px;
        background: var(--bg);
        color: var(--ink-700);
        font-family: var(--f-mono);
        font-size: .78rem;
        border-radius: 20px;
        transition: all .2s ease;
    }

        .article-tags a:hover {
            background: var(--navy-800);
            color: var(--white);
        }

.share-row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--f-mono);
    font-size: .78rem;
    color: var(--ink-500);
    letter-spacing: .05em;
    text-transform: uppercase;
}

    .share-row a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ink-700);
        transition: all .2s ease;
    }

        .share-row a:hover {
            background: var(--navy-800);
            color: var(--white);
            border-color: var(--navy-800);
        }

.cat-hero-card {
    position: relative;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    border-radius: 8px;
    padding: 36px 30px;
    color: var(--white);
    overflow: hidden;
    transition: all .3s ease;
    border: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    text-decoration: none;
}

    .cat-hero-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold-500);
    }

    .cat-hero-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 140px;
        height: 140px;
        background: radial-gradient(circle, rgba(201,162,39,.15), transparent 70%);
        border-radius: 50%;
        transform: translate(30%, -30%);
    }

    .cat-hero-card .cat-count {
        font-family: var(--f-display);
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--gold-400);
        margin-bottom: 6px;
    }

    .cat-hero-card .cat-icon-big {
        font-size: 2.4rem;
        margin-bottom: 14px;
        display: inline-block;
    }

    .cat-hero-card h3 {
        color: var(--white);
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .cat-hero-card p {
        color: #b9c1d6;
        font-size: .9rem;
        line-height: 1.55;
        flex: 1;
    }

    .cat-hero-card .cat-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 18px;
        margin-top: 18px;
        border-top: 1px solid rgba(255,255,255,.1);
    }

        .cat-hero-card .cat-meta span {
            font-family: var(--f-mono);
            font-size: .72rem;
            letter-spacing: .05em;
            color: var(--gold-400);
            text-transform: uppercase;
        }

    .cat-hero-card .cat-arrow {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: all .2s ease;
        font-size: 1.2rem;
    }

    .cat-hero-card:hover .cat-arrow {
        background: var(--gold-500);
        color: var(--navy-950);
        transform: translateX(4px);
    }

.subcat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

    .subcat-list span {
        padding: 3px 10px;
        background: rgba(255,255,255,.06);
        color: #c4cbdc;
        border-radius: 20px;
        font-size: .72rem;
        font-family: var(--f-mono);
    }

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17,23,42,.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
}

    .cart-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 100vw;
    background: var(--white);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22,.61,.36,1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(17,23,42,.25);
}

    .cart-drawer.active {
        transform: translateX(0);
    }

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    flex-shrink: 0;
}

.cart-drawer__heading {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .cart-drawer__heading h3 {
        margin: 0;
        font-size: 1.15rem;
        color: var(--navy-900);
        font-weight: 600;
        font-family: var(--f-display);
    }

.cart-drawer__meta {
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .05em;
    color: var(--ink-500);
    text-transform: uppercase;
}

.cart-drawer__count {
    color: var(--gold-600);
    font-weight: 700;
}

.cart-drawer__close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    cursor: pointer;
}

    .cart-drawer__close:hover {
        background: var(--navy-800);
        border-color: var(--navy-800);
        color: var(--white);
        transform: rotate(90deg);
    }

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    position: relative;
}

    .cart-drawer__body::-webkit-scrollbar {
        width: 6px;
    }

    .cart-drawer__body::-webkit-scrollbar-track {
        background: transparent;
    }

    .cart-drawer__body::-webkit-scrollbar-thumb {
        background: var(--line-dark);
        border-radius: 3px;
    }

        .cart-drawer__body::-webkit-scrollbar-thumb:hover {
            background: var(--ink-500);
        }

.cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px;
    height: 100%;
}

.cart-drawer__empty-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px dashed var(--line);
}

.cart-drawer__empty h4 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: var(--navy-900);
}

.cart-drawer__empty p {
    margin: 0 0 26px;
    color: var(--ink-500);
    font-size: .92rem;
    max-width: 280px;
    line-height: 1.5;
}

.cart-drawer__items {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

    .cart-drawer__items:empty {
        display: none;
    }

.cart-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    align-items: start;
    animation: cartItemIn .35s ease;
    transition: background .2s ease;
}

    .cart-item:hover {
        background: var(--bg);
    }

@keyframes cartItemIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item__image {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-family: var(--f-mono);
    font-size: .55rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    border: 1px solid var(--line);
}

    .cart-item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cart-item__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item__code {
    font-family: var(--f-mono);
    font-size: .68rem;
    letter-spacing: .05em;
    color: var(--ink-500);
    text-transform: uppercase;
}

.cart-item__name {
    font-family: var(--f-display);
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item__price-hint {
    font-family: var(--f-mono);
    font-size: .7rem;
    color: var(--azure-600);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.cart-item__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
}

    .cart-item__qty button {
        width: 30px;
        height: 30px;
        background: var(--bg);
        border: 0;
        color: var(--navy-800);
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .15s ease;
        cursor: pointer;
    }

        .cart-item__qty button:hover {
            background: var(--gold-500);
            color: var(--navy-950);
        }

    .cart-item__qty input {
        width: 40px;
        height: 30px;
        border: 0;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
        text-align: center;
        font-family: var(--f-mono);
        font-size: .85rem;
        font-weight: 600;
        color: var(--navy-900);
        background: var(--white);
        -moz-appearance: textfield;
    }

        .cart-item__qty input::-webkit-outer-spin-button,
        .cart-item__qty input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

.cart-item__remove {
    background: transparent;
    border: 0;
    color: var(--ink-500);
    font-family: var(--f-mono);
    font-size: .7rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s ease;
    cursor: pointer;
}

    .cart-item__remove:hover {
        color: #c0392b;
    }

.cart-drawer__footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--line);
    background: var(--bg);
    flex-shrink: 0;
}

.cart-drawer__notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--azure-100);
    border-left: 3px solid var(--azure-500);
    border-radius: 4px;
    margin-bottom: 16px;
    color: var(--azure-600);
    font-size: .78rem;
    line-height: 1.5;
}

    .cart-drawer__notice svg {
        flex-shrink: 0;
        margin-top: 1px;
    }

.cart-drawer__submit {
    padding: 15px 22px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .cart-drawer__submit:disabled {
        background: var(--line);
        color: var(--ink-500);
        cursor: not-allowed;
        transform: none;
    }

    .cart-drawer__submit.is-loading {
        position: relative;
        color: transparent;
        pointer-events: none;
    }

        .cart-drawer__submit.is-loading::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border: 2px solid var(--navy-950);
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin .7s linear infinite;
        }

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

.icon-btn.has-pulse .cart-count {
    animation: badgePulse .6s ease;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
        box-shadow: 0 0 0 6px rgba(201,162,39,.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201,162,39,0);
    }
}

.add-cart-btn.is-adding {
    background: var(--gold-500) !important;
    color: var(--navy-950) !important;
    animation: cartBtnPulse .5s ease;
}

@keyframes cartBtnPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .cart-drawer {
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100vw;
        max-height: 88vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 40px rgba(17,23,42,.25);
    }

        .cart-drawer.active {
            transform: translateY(0);
        }

        .cart-drawer::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 4px;
            background: var(--line);
            border-radius: 2px;
        }

    .cart-drawer__header {
        padding-top: 28px;
    }

    .cart-drawer__empty {
        padding: 60px 24px;
    }

    .cart-item {
        grid-template-columns: 56px 1fr;
        gap: 12px;
        padding: 14px 20px;
    }

    .cart-item__image {
        width: 56px;
        height: 56px;
    }
}

.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    pointer-events: none;
}

.toast {
    background: var(--white);
    border-left: 4px solid var(--navy-800);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
    animation: toastIn .35s cubic-bezier(.22,.61,.36,1);
}

    .toast.success {
        border-left-color: var(--gold-500);
    }

    .toast.error {
        border-left-color: #c0392b;
    }

    .toast.warning {
        border-left-color: #e67e22;
    }

    .toast.info {
        border-left-color: var(--azure-500);
    }

.toast__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: .9rem;
}

.toast.success .toast__icon {
    background: var(--gold-500);
    color: var(--navy-950);
}

.toast.error .toast__icon {
    background: #c0392b;
}

.toast.warning .toast__icon {
    background: #e67e22;
}

.toast.info .toast__icon {
    background: var(--azure-500);
}

.toast__content {
    flex: 1;
    min-width: 0;
}

.toast__title {
    display: block;
    font-family: var(--f-display);
    font-weight: 600;
    color: var(--navy-900);
    font-size: .95rem;
    margin-bottom: 2px;
}

.toast__message {
    font-size: .85rem;
    color: var(--ink-700);
    margin: 0;
    line-height: 1.4;
}

.toast__close {
    background: transparent;
    border: 0;
    color: var(--ink-500);
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    line-height: 1;
    transition: color .15s ease;
}

    .toast__close:hover {
        color: var(--navy-900);
    }

.toast.toast--closing {
    animation: toastOut .4s ease forwards;
}

.toast.show {
    opacity: 1;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

@media (max-width: 768px) {
    .toast-container {
        top: auto;
        bottom: 24px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
}

.hidden {
    display: none !important;
}

.team-member-photo {
    display: block;
    margin: 0 auto 16px;
}

.custom-modal {
    position: fixed;
    inset: 0;
    z-index: 1999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .custom-modal.open {
        display: flex;
    }

.custom-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,23,42,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: fadeIn .2s ease;
}

.custom-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    animation: slideUp .3s ease;
}

.custom-modal__content {
    padding: 0;
}

.custom-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 0;
}

.custom-modal__title {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-900);
    margin: 0;
}

.custom-modal__close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    color: var(--ink-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .2s, color .2s;
}

    .custom-modal__close:hover {
        background: var(--bg-alt);
        color: var(--ink-900);
    }

.custom-modal__body {
    padding: 24px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.custom-modal .form-label {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 7px;
}

.custom-modal .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-size: .92rem;
    transition: border-color .15s ease;
}

    .custom-modal .form-control:focus {
        border-color: var(--azure-500);
        outline: none;
    }

.custom-modal textarea.form-control {
    resize: vertical;
}

.custom-modal .form-group {
    margin-bottom: 20px;
}


.custom-modal .form-label .text-danger {
    color: #c0392b;
}

.cart-summary-list {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.cart-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

    .cart-summary-item:last-child {
        border-bottom: none;
    }

.cart-summary-item__image {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--line);
    background: var(--white);
    flex-shrink: 0;
}

.cart-summary-item__info {
    flex: 1;
    min-width: 0;
}

.cart-summary-item__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.cart-summary-item__code {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    color: var(--ink-500);
}

.cart-summary-item__qty {
    font-family: var(--f-mono);
    font-size: 0.82rem;
    color: var(--ink-700);
    background: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--line);
}

.header-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--ink-900);
    text-decoration: none;
    transition: background .15s;
}

    .header-search-item:hover {
        background: var(--bg);
    }

.header-search-item__img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.header-search-item__img--placeholder {
    background: var(--ink-100);
}

.header-search-item__name {
    font-weight: 600;
    font-size: .9rem;
}

.header-search-item__code {
    font-family: var(--f-mono);
    font-size: .72rem;
    color: var(--ink-500);
    display: block;
}

.header-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 300;
    max-height: 400px;
    overflow-y: auto;
    min-width: 300px;
}

.header-search-item__category {
    font-size: .68rem;
    color: var(--azure-600);
    background: var(--azure-100);
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    margin-top: 2px;
    font-family: var(--f-mono);
}

@media (min-width: 769px) {
    .header-search-dropdown {
        width: calc(200% + 0px);
        left: auto;
        right: 0;
    }
}

@media (max-width: 768px) {
    .header-search-dropdown {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0;
    }
}
