:root {
    --bg: #0D0D0D;
    --surface: #1A1A1A;
    --surface-2: #111111;
    --text: #F0F0F0;
    --muted: #888888;
    --gold: #C5A028;
    --navy: #0F1B35;
    --border: #2A2A2A;
    --success: #2E7D32;
    --error: #C62828;
    --max: 1200px;
    --shadow: 0 12px 32px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Segoe UI,Arial,sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

    body.cart-drawer-open {
        overflow: hidden;
    }

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

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

.container {
    width: min(calc(100% - 2rem),var(--max));
    margin-inline: auto;
}

.announcement-bar {
    background: linear-gradient(90deg,#0F1B35,#151515);
    color: #F0F0F0;
    border-bottom: 1px solid #2A2A2A;
    font-size: .95rem;
}

.announcement-bar__inner {
    width: min(1200px,94%);
    margin: 0 auto;
    padding: .75rem 0;
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-bar__text {
    color: #F0F0F0;
    font-weight: 500;
}

.announcement-bar__link {
    color: #C5A028;
    text-decoration: none;
    font-weight: 700;
}

    .announcement-bar__link:hover {
        text-decoration: underline;
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(13,13,13,.92);
    border-bottom: 1px solid var(--border);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1.25rem;
}

.brand {
    font-weight: 900;
    letter-spacing: .22em;
    font-size: 1rem;
    white-space: nowrap;
}

    .brand span {
        color: var(--gold);
    }

.site-nav {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}

    .site-nav a,
    .nav-link {
        color: var(--muted);
        transition: color .2s ease;
    }

        .site-nav a:hover,
        .nav-link:hover {
            color: var(--text);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.inline-form {
    display: inline;
    margin: 0;
}

.cart-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease;
}

    .cart-trigger:hover {
        border-color: var(--gold);
        transform: translateY(-1px);
    }

.cart-trigger__icon {
    font-size: 1rem;
    line-height: 1;
}

.cart-trigger__text {
    font-weight: 700;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 .3rem;
    border-radius: 999px;
    background: var(--gold);
    color: #111;
    font-size: .8rem;
    font-weight: 800;
    margin-left: .1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--gold);
    font-weight: 700;
    transition: .2s ease;
    cursor: pointer;
}

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

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-gold {
    background: #C5A028;
    color: #0D0D0D;
    border: 1px solid #C5A028;
    border-radius: 999px;
    padding: .8rem 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: #F0F0F0;
    border: 1px solid #C5A028;
    border-radius: 999px;
    padding: .8rem 1.1rem;
    cursor: pointer;
}

.btn-small {
    min-height: 38px;
    padding: 0 1rem;
    font-size: .92rem;
}

.hero {
    min-height: 78vh;
    display: grid;
    align-items: center;
    background: linear-gradient(120deg,rgba(13,13,13,.86),rgba(13,13,13,.55)), radial-gradient(circle at top right, rgba(197,160,40,.18), transparent 32%), radial-gradient(circle at bottom left, rgba(15,27,53,.6), transparent 35%);
    border-bottom: 1px solid var(--border);
}

.hero-content {
    padding: 6rem 0;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .75rem;
}

.hero h1,
.section-header h1,
.section-header h2 {
    margin: .2rem 0 1rem;
    line-height: 1.05;
    font-family: "Barlow Condensed","Arial Narrow",Arial,sans-serif;
}

.hero h1 {
    font-size: clamp(3rem,8vw,6rem);
    max-width: 10ch;
}

.hero p {
    max-width: 640px;
    color: #d4d4d4;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.hero-modern {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #2A2A2A;
}

.hero-modern__media,
.hero-modern__video,
.hero-modern__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-modern__video {
    object-fit: cover;
}

.hero-modern__overlay {
    background: linear-gradient(to right, rgba(10,10,10,.88), rgba(10,10,10,.42)), linear-gradient(to top, rgba(10,10,10,.75), rgba(10,10,10,.18));
}

.hero-modern__content {
    position: relative;
    z-index: 2;
    padding: 7rem 0;
    max-width: 760px;
}

.hero-modern__eyebrow,
.section-kicker {
    color: #C5A028;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .82rem;
    font-weight: 700;
}

.hero-modern__title {
    font-size: clamp(2.75rem,6vw,5.75rem);
    line-height: .95;
    margin: 1rem 0;
    color: #F8F5EE;
}

.hero-modern__subtitle {
    max-width: 620px;
    color: #D2D2D2;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.hero-modern__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.section {
    padding: 4.5rem 0;
}

.section-dark {
    background: linear-gradient(180deg,rgba(15,27,53,.22),transparent);
}

.section-header {
    margin-bottom: 1.75rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

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

    .section-heading h2 {
        font-size: clamp(1.8rem,4vw,3rem);
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

.section-copy {
    color: #A8A8A8;
    max-width: 720px;
    margin: 0 auto;
}

.image-slider-section,
.collections-modern,
.features-modern,
.story-modern,
.community-strip {
    padding: 5rem 0;
}

.image-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #2A2A2A;
    background: #121212;
}

.image-slider__track {
    display: flex;
    transition: transform .45s ease;
    width: 100%;
}

.image-slider__item {
    min-width: 100%;
    height: 520px;
}

    .image-slider__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.image-slider__controls {
    position: absolute;
    inset: auto 1rem 1rem auto;
    display: flex;
    gap: .5rem;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.collections-modern__grid,
.features-modern__grid,
.stats-band__grid {
    display: grid;
    gap: 1.25rem;
}

.collections-modern__grid {
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
}

.collection-card-modern {
    background: #151515;
    border: 1px solid #2A2A2A;
    border-radius: 22px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .collection-card-modern:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,.28);
    }

.collection-card-modern__image-wrap {
    height: 340px;
    overflow: hidden;
}

.collection-card-modern__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collection-card-modern__body {
    padding: 1.25rem;
}

    .collection-card-modern__body h3 {
        margin-bottom: .55rem;
    }

    .collection-card-modern__body p {
        color: #B8B8B8;
        line-height: 1.7;
    }

.text-link {
    display: inline-block;
    margin-top: .85rem;
    color: #C5A028;
    text-decoration: none;
    font-weight: 700;
}

    .text-link:hover {
        text-decoration: underline;
    }

.stats-band {
    padding: 2rem 0 5rem;
}

.stats-band__grid {
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}

.stat-card,
.feature-panel {
    background: linear-gradient(180deg,#181818,#111111);
    border: 1px solid #2A2A2A;
    border-radius: 20px;
    padding: 1.5rem;
}

    .stat-card p,
    .feature-panel p {
        color: #B5B5B5;
        line-height: 1.75;
    }

.features-modern__grid {
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
}

.story-modern__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
    align-items: center;
}

.story-modern__content p {
    color: #B8B8B8;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.story-modern__visual img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid #2A2A2A;
    display: block;
}

.cta-banner {
    padding: 0 0 5rem;
}

.cta-banner__inner {
    background: linear-gradient(135deg,#161616,#0F1B35);
    border: 1px solid #2A2A2A;
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 1.2rem;
}

.product-card,
.card,
.metric-card {
    background: linear-gradient(180deg,var(--surface),var(--surface-2));
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-image,
.detail-image {
    background: linear-gradient(135deg,#171717,#242424);
    border-bottom: 1px solid var(--border);
}

.product-image {
    aspect-ratio: 1/1;
}

.detail-image {
    aspect-ratio: 3/4;
    border-radius: 24px;
}

.product-body {
    padding: 1rem;
}

    .product-body h3 {
        margin: .25rem 0;
    }

    .product-body p {
        color: var(--muted);
        min-height: 3.5rem;
    }

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    margin: .65rem 0 1rem;
}

.two-col,
.product-detail,
.shop-layout,
.footer-grid,
.metrics-grid {
    display: grid;
    gap: 1.5rem;
}

.two-col,
.product-detail {
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.shop-layout {
    grid-template-columns: 300px 1fr;
}

.filters,
.card {
    padding: 1.25rem;
}

.filter-block {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: .45rem;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #101010;
    color: var(--text);
    padding: .85rem 1rem;
}

    input:focus,
    select:focus,
    textarea:focus {
        outline: 1px solid var(--gold);
    }

.variant-list {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    margin: 1rem 0 1.4rem;
}

.variant-pill {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .55rem .9rem;
    font-size: .9rem;
    color: #ddd;
    background: #121212;
}

.narrow {
    width: min(calc(100% - 2rem),680px);
}

.auth-form {
    display: grid;
    gap: .9rem;
}

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

.metric-card {
    padding: 1.25rem;
}

    .metric-card span {
        display: block;
        color: var(--muted);
        margin-bottom: .5rem;
    }

    .metric-card strong {
        font-size: 1.8rem;
    }

blockquote {
    margin: 1rem 0 0;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.02);
    color: #ddd;
    font-family: "Playfair Display",Georgia,serif;
    font-style: italic;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
    background: #090909;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

    .footer-grid h4,
    .footer-grid h3 {
        margin-top: 0;
    }

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

        .footer-grid a:hover {
            color: var(--text);
        }

.footer-bottom {
    padding-top: 1.2rem;
    color: var(--muted);
}

.auth-shell {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

    .auth-card h1 {
        margin-bottom: .5rem;
    }

.auth-subtitle {
    color: #888888;
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-control {
    background: #0D0D0D;
    color: #F0F0F0;
    border: 1px solid #2A2A2A;
    border-radius: 10px;
    padding: .85rem 1rem;
}

.checkbox-row {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

.validation-summary {
    color: #ff8f8f;
    margin-bottom: 1rem;
}

.page-section {
    padding: 3rem 0;
}

.panel {
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-left: 4px solid #C5A028;
    border-radius: 16px;
    padding: 1.5rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.page-muted {
    color: #888888;
    margin-top: .25rem;
}

.settings-form .panel h2 {
    margin-bottom: 1rem;
}

.settings-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
}

.field-hint {
    color: #888888;
    font-size: .85rem;
    margin-top: .35rem;
}

.alert-success {
    background: rgba(46,125,50,.12);
    border: 1px solid rgba(46,125,50,.4);
    color: #c8f1cd;
    border-radius: 12px;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
}

.alert-error {
    background: rgba(198,40,40,.12);
    border: 1px solid rgba(198,40,40,.45);
    color: #f3b4b4;
    border-radius: 12px;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
}

.shop-hero {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid #2A2A2A;
    background: radial-gradient(circle at top right, rgba(197,160,40,.12), transparent 25%), linear-gradient(180deg, #101010, #0D0D0D);
}

.shop-hero__content {
    max-width: 760px;
}

    .shop-hero__content h1 {
        margin: .5rem 0 1rem;
        font-size: clamp(2.2rem,5vw,4rem);
    }

    .shop-hero__content p {
        color: #B8B8B8;
        line-height: 1.8;
    }

.shop-section {
    padding: 2.5rem 0 5rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.shop-toolbar__title {
    margin-bottom: .25rem;
}

.shop-toolbar__meta {
    color: #888888;
}

.shop-sort-form {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.shop-sort-form__label {
    color: #B8B8B8;
}

.shop-sort-form__select {
    min-width: 220px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.shop-filters {
    position: sticky;
    top: 100px;
}

.filter-form__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: .75rem;
}

.price-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.shop-results {
    min-width: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1.25rem;
}

.product-card {
    background: #151515;
    border: 1px solid #2A2A2A;
    border-radius: 22px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,.28);
        border-color: rgba(197,160,40,.35);
    }

.product-card__image-link {
    text-decoration: none;
    color: inherit;
}

.product-card__image-wrap {
    aspect-ratio: 1 / 1;
    background: #111111;
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777777;
    font-size: .95rem;
}

.product-card__body {
    padding: 1rem;
}

.product-card__category {
    color: #C5A028;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .55rem;
}

.product-card__title {
    margin: 0 0 .4rem;
    font-size: 1.1rem;
}

    .product-card__title a {
        color: #F0F0F0;
        text-decoration: none;
    }

        .product-card__title a:hover {
            color: #C5A028;
        }

.product-card__price {
    font-weight: 700;
    margin-bottom: .75rem;
}

.product-card__meta {
    margin-bottom: .75rem;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    padding: .35rem .65rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    border: 1px solid #2A2A2A;
}

    .stock-badge.in-stock {
        color: #9FE2A7;
        background: rgba(46,125,50,.12);
    }

    .stock-badge.out-stock {
        color: #F1A2A2;
        background: rgba(198,40,40,.12);
    }

.variant-chip-row,
.variant-color-row {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

.variant-chip,
.variant-color-label {
    display: inline-flex;
    align-items: center;
    padding: .3rem .55rem;
    border-radius: 999px;
    background: #101010;
    border: 1px solid #2A2A2A;
    color: #CFCFCF;
    font-size: .76rem;
}

.pagination-wrap {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pagination-link {
    min-width: 42px;
    height: 42px;
    padding: 0 .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #2A2A2A;
    background: #151515;
    color: #F0F0F0;
    text-decoration: none;
}

    .pagination-link:hover,
    .pagination-link.active {
        border-color: #C5A028;
        color: #C5A028;
    }

.pdp-shell {
    padding: 2rem 0 5rem;
}

.breadcrumb {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    color: #888888;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

    .breadcrumb a {
        color: #C5A028;
        text-decoration: none;
    }

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.pdp-gallery__main {
    background: #141414;
    border: 1px solid #2A2A2A;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

    .pdp-gallery__main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .25s ease;
        cursor: zoom-in;
    }

        .pdp-gallery__main img.zoomed {
            transform: scale(1.18);
        }

.pdp-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: .75rem;
    margin-top: .9rem;
}

.pdp-thumb {
    border: 1px solid #2A2A2A;
    background: #121212;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}

    .pdp-thumb.active {
        border-color: #C5A028;
    }

    .pdp-thumb img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

.pdp-info__category {
    color: #C5A028;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .55rem;
}

.pdp-title {
    font-size: clamp(2rem,4vw,3.5rem);
    margin: 0 0 .75rem;
}

.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: .1rem;
    line-height: 1;
}

.star {
    color: #555;
    font-size: 1rem;
}

    .star.filled {
        color: #C5A028;
    }

.pdp-rating-text {
    color: #AFAFAF;
}

.pdp-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pdp-description {
    color: #B8B8B8;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.pdp-stock-area {
    display: flex;
    gap: .65rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}

.low-stock-note {
    color: #f4c878;
    font-weight: 600;
}

.pdp-sku {
    color: #8f8f8f;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

.variant-picker-form {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.variant-group__label {
    font-weight: 700;
    margin-bottom: .65rem;
}

.variant-options {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.variant-option {
    border: 1px solid #2A2A2A;
    background: #111111;
    color: #F0F0F0;
    border-radius: 999px;
    padding: .65rem .95rem;
    cursor: pointer;
    transition: all .2s ease;
}

    .variant-option:hover,
    .variant-option.active {
        border-color: #C5A028;
        color: #C5A028;
    }

.add-to-cart-form {
    display: grid;
    gap: 1.2rem;
}

.quantity-group label {
    display: block;
    font-weight: 700;
    margin-bottom: .55rem;
}

.quantity-picker {
    display: flex;
    align-items: stretch;
    gap: .55rem;
    max-width: 220px;
}

.qty-btn {
    width: 46px;
    border: 1px solid #2A2A2A;
    background: #111111;
    color: #F0F0F0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.25rem;
}

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

.add-to-cart-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.btn-add-cart[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

.pdp-reviews,
.pdp-related {
    margin-top: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1rem;
}

.review-card {
    background: #151515;
    border: 1px solid #2A2A2A;
    border-radius: 20px;
    padding: 1.25rem;
}

.review-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .5rem;
}

.review-date {
    color: #8c8c8c;
    font-size: .92rem;
}

.checkout-page {
    padding: 2rem 0 5rem;
}

.checkout-header {
    margin-bottom: 1.5rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}

.checkout-section {
    margin-bottom: 2rem;
}

    .checkout-section h2 {
        margin-bottom: 1rem;
    }

.checkout-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-three-col {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 1rem;
}

.checkout-form-actions,
.checkout-submit-row {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.checkout-summary-items {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: .75rem;
    align-items: start;
    padding-bottom: .9rem;
    border-bottom: 1px solid #242424;
}

.checkout-summary-item__left img,
.checkout-summary-item__placeholder {
    width: 72px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-summary-item__meta {
    color: #9b9b9b;
    margin-top: .35rem;
    font-size: .92rem;
}

.checkout-summary-item__amount {
    white-space: nowrap;
    font-weight: 700;
}

.total-row {
    font-size: 1.08rem;
}

.coupon-applied-note {
    margin-top: 1rem;
    color: #c8f1cd;
    background: rgba(46,125,50,.12);
    border: 1px solid rgba(46,125,50,.35);
    border-radius: 12px;
    padding: .8rem 1rem;
}

.shop-intro-band {
    padding: 1.5rem 0 2rem;
}

.shop-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1.25rem;
    align-items: stretch;
}

.shop-category-promo-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
}

.shop-category-promo {
    min-height: 150px;
    border-radius: 20px;
    border: 1px solid #2A2A2A;
    background: linear-gradient(135deg, rgba(15,27,53,.95), rgba(18,18,18,.95));
    color: #F0F0F0;
    text-decoration: none;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 1rem;
    font-weight: 700;
    transition: transform .2s ease, border-color .2s ease;
}

    .shop-category-promo:hover {
        transform: translateY(-3px);
        border-color: rgba(197,160,40,.45);
        color: #C5A028;
    }

.shop-empty-state {
    padding: 2rem;
}

.payment-panel,
.confirmation-panel {
    max-width: 860px;
    margin: 0 auto;
}

.payment-option-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-option-card {
    width: 100%;
    text-align: left;
    border: 1px solid #2A2A2A;
    background: linear-gradient(180deg,#181818,#111111);
    color: #F0F0F0;
    border-radius: 20px;
    padding: 1.25rem;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease;
}

    .payment-option-card:hover {
        transform: translateY(-3px);
        border-color: rgba(197,160,40,.45);
    }

.payment-option-card--disabled {
    opacity: .65;
    cursor: not-allowed;
}

.payment-option-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.payment-option-card__desc {
    color: #B8B8B8;
    line-height: 1.7;
}

.confirmation-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.admin-filter-row {
    display: grid;
    grid-template-columns: 1fr 220px auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th,
    .admin-table td {
        padding: .9rem;
        border-bottom: 1px solid #2A2A2A;
        text-align: left;
        vertical-align: top;
    }

    .admin-table th {
        color: #C5A028;
        font-weight: 700;
    }

.timeline-list {
    display: grid;
    gap: .85rem;
}

.timeline-item {
    border-left: 3px solid #C5A028;
    padding-left: .9rem;
}

.admin-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1rem;
}

.admin-image-card {
    display: flex;
    flex-direction: column;
}

.admin-image-preview {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #2A2A2A;
    display: block;
}

.admin-table-panel h2 {
    margin-bottom: 1rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.admin-inline-edit-form {
    display: contents;
}

.admin-row-low-stock {
    background: rgba(198,40,40,0.08);
}

    .admin-row-low-stock td {
        border-bottom-color: rgba(198,40,40,0.25);
    }

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 999;
}

    .cart-drawer-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px,100%);
    height: 100vh;
    background: #111;
    color: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,.35);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

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

.cart-drawer__header,
.cart-drawer__footer {
    padding: 1.25rem;
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .cart-drawer__header h2 {
        margin: 0;
        font-size: 2rem;
        line-height: 1.1;
    }

.cart-drawer__close {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.4rem;
    cursor: pointer;
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .cart-empty p {
        margin: 0;
        color: #D5D5D5;
    }

.cart-items {
    display: grid;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: .9rem;
    align-items: start;
}

.cart-item__image img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
}

.cart-item__details {
    min-width: 0;
}

.cart-item__name {
    font-weight: 700;
    margin-bottom: .25rem;
}

.cart-item__meta,
.cart-item__price {
    color: rgba(255,255,255,.75);
    font-size: .95rem;
}

.cart-drawer__footer {
    border-top: 1px solid rgba(255,255,255,.08);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-drawer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

    .cart-drawer__actions .btn,
    .cart-drawer__actions .btn-outline,
    .cart-drawer__actions .btn-gold {
        width: 100%;
        justify-content: center;
    }

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: static;
    }
}

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .two-col,
    .product-detail,
    .shop-layout,
    .footer-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        gap: .85rem;
        flex-wrap: wrap;
        justify-content: center;
        flex: unset;
    }

    .nav-shell {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem 0;
    }

    .nav-actions {
        justify-content: center;
    }

    .story-modern__grid {
        grid-template-columns: 1fr;
    }

    .story-modern__visual img {
        height: 420px;
    }

    .image-slider__item {
        height: 360px;
    }

    .shop-intro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .admin-filter-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .payment-option-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-modern {
        min-height: 78vh;
    }

    .hero-modern__content {
        padding: 6rem 0 5rem;
    }

    .cta-banner__inner {
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 1rem;
    }

    .price-range-grid {
        grid-template-columns: 1fr;
    }

    .shop-sort-form {
        width: 100%;
        justify-content: space-between;
    }

    .shop-sort-form__select {
        min-width: 0;
        width: 100%;
    }

    .pdp-gallery__thumbs {
        grid-template-columns: repeat(4,1fr);
        gap: .5rem;
    }

    .pdp-price {
        font-size: 1.5rem;
    }

    .checkout-two-col,
    .checkout-three-col {
        grid-template-columns: 1fr;
    }

    .checkout-summary-item {
        grid-template-columns: 1fr;
    }

    .checkout-summary-item__left img,
    .checkout-summary-item__placeholder {
        width: 100%;
        height: 220px;
    }

    .cart-drawer {
        width: 100%;
    }

    .cart-drawer__actions {
        grid-template-columns: 1fr;
    }
}
.cart-drawer__header-copy p {
    margin: .35rem 0 0;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
}

.cart-item__image-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: #1a1a1a;
    color: #8f8f8f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    text-align: center;
    padding: .4rem;
}
.about-hero {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid #2A2A2A;
    background: radial-gradient(circle at top right, rgba(197,160,40,.10), transparent 24%), linear-gradient(180deg, #101010, #0D0D0D);
}

.about-hero__content {
    max-width: 820px;
}

    .about-hero__content h1 {
        font-size: clamp(2.5rem, 5vw, 4.75rem);
        line-height: 1;
        margin: .75rem 0 1rem;
    }

.about-hero__subtitle {
    color: #C8C8C8;
    font-size: 1.08rem;
    line-height: 1.85;
    max-width: 720px;
}

.about-section,
.about-values,
.about-story-section,
.about-craft-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.about-panel h2,
.about-story__content h2,
.about-craft-panel h2 {
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.about-panel p,
.about-story__content p,
.about-craft-panel p {
    color: #B8B8B8;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 2rem;
    align-items: center;
}

.about-story__visual img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid #2A2A2A;
    display: block;
}

.about-craft-panel {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .about-grid,
    .about-values__grid,
    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-story__visual img {
        height: 420px;
    }
}
.journal-hero {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid #2A2A2A;
    background: radial-gradient(circle at top right, rgba(197,160,40,.10), transparent 24%), linear-gradient(180deg, #101010, #0D0D0D);
}

.journal-hero__content {
    max-width: 840px;
}

    .journal-hero__content h1 {
        font-size: clamp(2.4rem, 5vw, 4.75rem);
        line-height: 1;
        margin: .75rem 0 1rem;
    }

.journal-featured,
.journal-grid-section,
.journal-encouragement-section {
    padding: 4rem 0;
}

.journal-feature-card {
    background: linear-gradient(180deg, #181818, #111111);
    border: 1px solid #2A2A2A;
    border-radius: 24px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

    .journal-feature-card h2 {
        margin-top: .5rem;
        margin-bottom: 1rem;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
    }

.journal-verse-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #F4F1E8;
    margin: 1rem 0;
    border-left: 3px solid #C5A028;
    padding-left: 1rem;
}

.journal-verse-ref,
.journal-card__reference {
    color: #C5A028;
    font-weight: 700;
    margin-bottom: .85rem;
}

.journal-encouragement {
    color: #B8B8B8;
    line-height: 1.85;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.journal-card {
    background: #151515;
    border: 1px solid #2A2A2A;
    border-radius: 20px;
    padding: 1.25rem;
}

.journal-card__category {
    color: #C5A028;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .75rem;
}

.journal-card h3 {
    margin-bottom: .75rem;
}

.journal-card__verse {
    color: #F0F0F0;
    line-height: 1.75;
    margin-bottom: .75rem;
}

.journal-card p {
    color: #B8B8B8;
    line-height: 1.8;
}

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

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