@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400&family=Outfit:wght@300;400;500;600&display=swap');

/* =========================================================================
   LuxeTime — преміальний годинниковий бутик (design system v2)
   ========================================================================= */

:root {
    --bg:              #020203;
    --bg-wash:         #070709;
    --surface:         #0c0c10;
    --surface-strong:  #121218;
    --surface-elevated:#18181f;
    --glass:           rgba(12, 12, 16, 0.78);

    --border:          rgba(212, 175, 55, 0.14);
    --border-strong:   rgba(212, 175, 55, 0.32);
    --border-subtle:   rgba(255, 255, 255, 0.06);

    --ink:             #faf9f6;
    --ink-soft:        #d8d4cc;
    --muted:           #8a8680;
    --muted-light:     #5c5854;

    --gold:            #d4af37;
    --gold-light:      #f3e6b8;
    --gold-dark:       #8a7128;
    --gold-muted:      #a89050;
    --gold-glow:       rgba(212, 175, 55, 0.22);

    --accent:          var(--gold);
    --accent-deep:     var(--gold-light);
    --accent-soft:     rgba(212, 175, 55, 0.1);
    --accent-wash:     rgba(212, 175, 55, 0.05);

    --success:         #5cb88a;
    --danger:          #e07a7a;

    --shadow-sm:       0 2px 8px rgba(0, 0, 0, 0.45);
    --shadow-md:       0 16px 48px rgba(0, 0, 0, 0.55);
    --shadow-lg:       0 32px 90px rgba(0, 0, 0, 0.65);
    --shadow-gold:     0 0 80px rgba(212, 175, 55, 0.12);

    --radius-sm:       6px;
    --radius-md:       12px;
    --radius-lg:       20px;
    --radius-xl:       28px;

    --serif:           'Bodoni Moda', 'Playfair Display', Georgia, serif;
    --sans:            'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container:       1240px;
    --ease-lux:        cubic-bezier(0.22, 1, 0.36, 1);
    --tracking-wide:   0.22em;
    --tracking-label:  0.18em;
}

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; -webkit-text-size-adjust: 100%; }

.top-announcement {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    padding: 11px 24px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--gold-muted);
    background:
        linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06) 20%, rgba(212, 175, 55, 0.06) 80%, transparent),
        var(--bg-wash);
    border-bottom: 1px solid var(--border);
}
.top-announcement a {
    color: var(--gold-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    padding-bottom: 1px;
}
.top-announcement a:hover { color: var(--ink); border-color: var(--ink); }
.top-announcement-sep { color: var(--muted-light); opacity: 0.5; }

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 90% 55% at 75% -15%, rgba(212, 175, 55, 0.09), transparent 52%),
        radial-gradient(ellipse 70% 45% at 5% 105%, rgba(212, 175, 55, 0.05), transparent 48%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.012) 0%, transparent 1px),
        linear-gradient(180deg, #040405 0%, var(--bg) 42%, #010102 100%);
    background-size: auto, auto, 3px 3px, auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: 0.02em;
    margin: 0;
}
h1 { font-size: 26px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; }
p  { margin: 0; }
a  {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.25s var(--ease-lux);
}
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: 40px;
}

/* Material Icons defaults */
.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    vertical-align: middle;
    font-size: 20px;
}

/* =========================================================================
   HEADER — преміальний site-header
   ========================================================================= */
.site-header,
header.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(2, 2, 3, 0.82);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border-bottom: 1px solid var(--border);
    transition: background 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), border-color 0.35s var(--ease-lux);
}
.site-header.is-scrolled {
    background: rgba(2, 2, 3, 0.96);
    border-bottom-color: var(--border-strong);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px 32px;
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
}
.header-brand:hover { color: var(--gold-light); }
.header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-strong);
}
.header-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}
.header-brand-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.header-brand-tag {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.header-nav-link {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}
.header-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.35s var(--ease-lux);
}
.header-nav-link:hover,
.header-nav-link.is-active {
    color: var(--ink);
}
.header-nav-link:hover::after,
.header-nav-link.is-active::after {
    transform: scaleX(1);
}
.header-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-muted) !important;
}
.header-nav-phone .material-icons-outlined { font-size: 16px !important; }
.header-nav-phone:hover { color: var(--gold-light) !important; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-action-btn {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.06);
    transition: background 0.25s var(--ease-lux), border-color 0.25s var(--ease-lux);
}
.header-action-btn:hover {
    border-color: var(--border-strong);
    background: rgba(212, 175, 55, 0.14);
}
.header-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.04));
    color: var(--ink);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux), border-color 0.3s var(--ease-lux);
}
.header-cart-btn:hover {
    color: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}
.header-cart-btn.is-active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0a0806;
    border-color: transparent;
}
.header-cart-btn .material-icons-outlined { font-size: 20px !important; }
.header-cart-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}
.header-cart-btn.is-active .header-cart-count {
    background: #0a0806;
    color: var(--gold-light);
}
.header-admin-btn {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    transition: background 0.25s var(--ease-lux), color 0.25s var(--ease-lux), border-color 0.25s var(--ease-lux);
}
.header-admin-btn:hover,
.header-admin-btn.is-active {
    color: #0a0806;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.header-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    grid-column: 2;
    justify-self: end;
}
.header-menu-bar {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--gold-light);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-lux), opacity 0.3s var(--ease-lux);
}
.site-header.menu-open .header-menu-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.site-header.menu-open .header-menu-bar:nth-child(2) { opacity: 0; }
.site-header.menu-open .header-menu-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Legacy header fallback (admin, old markup) */
header:not(.site-header) {
    background: rgba(2, 2, 3, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
header:not(.site-header) .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}
header:not(.site-header) h1 { margin: 0; }
.header-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-family: var(--serif);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
header:not(.site-header) nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
header:not(.site-header) nav a {
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
}
header:not(.site-header) nav a:hover { color: var(--gold-light); }
nav .nav-admin-btn {
    padding: 10px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--gold-light);
}

@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto auto auto;
    }
    .header-nav-phone { display: none; }
    .header-action-phone { display: inline-flex; }
}

@media (max-width: 860px) {
    .header-menu-toggle { display: flex; }
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 199;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 100px 32px 48px;
        background: rgba(2, 2, 3, 0.98);
        backdrop-filter: blur(16px);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s var(--ease-lux), opacity 0.35s ease, visibility 0.35s;
    }
    .site-header.menu-open .header-nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .header-nav-link {
        width: 100%;
        padding: 18px 0;
        font-size: 13px;
        border-bottom: 1px solid var(--border-subtle);
        text-align: center;
    }
    .header-nav-link::after { display: none; }
    .header-admin-btn { display: none; }
    .header-cart-label { display: none; }
    .header-brand-tag { display: none; }
}

@media (max-width: 480px) {
    .header-inner { min-height: 64px; gap: 12px; }
    .header-logo { width: 38px; height: 38px; }
    .header-brand-name { font-size: 15px; }
    .header-cart-btn { padding: 10px 12px; }
}

/* =========================================================================
   HERO — editorial two-column
   ========================================================================= */
.hero-section {
    padding: 92px 0 108px;
    background: transparent;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 48%;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, transparent, rgba(2, 2, 3, 0.6));
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 86px;
    align-items: center;
}

.hero-content { max-width: 540px; }

.hero-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: 1.04;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin: 0 0 28px;
}
.hero-title em {
    font-style: italic;
    color: var(--gold-light);
    text-shadow: 0 0 60px var(--gold-glow);
}

.hero-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.45;
    color: var(--ink-soft);
    margin: 0 0 22px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 460px;
    margin: 0 0 40px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
    color: #0a0806;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
}
.hero-cta:hover {
    color: #0a0806;
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(212, 175, 55, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.hero-cta .material-icons-outlined {
    font-size: 18px;
    transition: transform 0.25s ease;
}
.hero-cta:hover .material-icons-outlined { transform: translateX(3px); }

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 4px;
}
.hero-link:hover { color: var(--ink); border-color: var(--ink); }

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 42px;
}

.hero-proof-grid div {
    padding: 18px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(18, 18, 24, 0.9), rgba(8, 8, 10, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow-sm);
}

.hero-proof-grid strong {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.hero-proof-grid span {
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    color: var(--muted);
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border: 1px solid var(--border-strong);
}
.hero-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
    z-index: 1;
}
.hero-visual-svg {
    object-fit: contain;
    padding: 12%;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
}
.hero-visual:hover .hero-visual-img { transform: scale(1.04); }
.hero-visual-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-wash) 0%, var(--bg-wash) 100%);
    z-index: 0;
}
.hero-visual-badge {
    position: absolute;
    top: 50px;
    left: 24px;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 250, 245, 0.86);
    z-index: 2;
}

.hero-visual-brand {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 250, 245, 0.92);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.hero-visual-img-faint {
    opacity: 0.06;
    filter: saturate(0.9) contrast(0.95);
    transform: scale(1.02);
}

.hero-visual-frame::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(28, 25, 23, 0.38));
    pointer-events: none;
}

/* =========================================================================
   MAIN / SECTION TITLE
   ========================================================================= */
main {
    flex-grow: 1;
    padding-top: 82px;
    padding-bottom: 80px;
}

.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    text-align: center;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: 0.03em;
}
.section-kicker {
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 16px;
}
.section-lead {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    max-width: 540px;
    margin: 16px auto 0;
}
.section-head { margin-bottom: 56px; }

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.catalog-filter {
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.catalog-filter:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--ink);
}
.catalog-filter.is-active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-color: transparent;
    color: #0a0806;
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.25);
}
.product-tier-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(10, 10, 12, 0.82);
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.35);
}
.product-tier-badge.budget {
    color: var(--ink-soft);
    border-color: var(--border-strong);
}

.collection-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 22px 0 58px;
}

.highlight-card {
    min-height: 260px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 45%),
        linear-gradient(180deg, var(--surface-elevated), var(--surface));
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: auto 28px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.highlight-icon,
.highlight-card .material-icons-outlined {
    width: 56px;
    height: 56px;
    display: block;
    margin-bottom: 22px;
    border-radius: 16px;
}

.highlight-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-deep);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 2px;
}
.highlight-link:hover { color: var(--ink); border-color: var(--ink); }

.brands-strip {
    padding: 28px 0 36px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    margin-bottom: 8px;
}
.brands-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}
.brands-strip-inner span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(20, 20, 24, 0.5);
}

.catalog-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 48px 20px;
}

.catalog-error {
    grid-column: 1 / -1;
    color: var(--danger);
    padding: 24px;
    background: rgba(229, 115, 115, 0.08);
    border: 1px solid rgba(229, 115, 115, 0.25);
    border-radius: var(--radius-md);
    text-align: center;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 14px;
}

.highlight-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* Decorated title — clean hairline with dot */
.section-title.decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 36px;
}
.section-title-text { white-space: nowrap; }
.section-title-ornament {
    flex: 0 0 72px;
    height: 1px;
    background: var(--border-strong);
    position: relative;
}
.section-title-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}
.section-title-ornament.left::after  { right: 0; }
.section-title-ornament.right::after { left: 0; }

/* =========================================================================
   PRODUCT GRID
   ========================================================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px 30px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(18, 18, 24, 0.95), rgba(10, 10, 12, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 12px;
    cursor: pointer;
    transition: transform 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux);
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}

.product-card-single-image,
.product-card-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a20, #0d0d10);
    margin-bottom: 18px;
}
.product-image-single,
.product-card-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.product-image-single,
.product-card-images .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.product-card-images .product-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.product-card-images .product-image.active { opacity: 1; }
.product-card:hover .product-image-single,
.product-card:hover .product-card-images .product-image.active {
    transform: scale(1.04);
}

/* Slider controls inside card */
.product-card-slider-controls {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 3;
}
.product-card:hover .product-card-slider-controls { opacity: 1; }

.product-card-slider-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.product-card-slider-btn:hover { background: var(--bg-wash); }

.product-card-slider-dots { display: flex; gap: 6px; align-items: center; }
.product-card-slider-dots .slider-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border-strong);
    cursor: pointer;
    transition: all 0.25s ease;
}
.product-card-slider-dots .slider-dot.active {
    background: var(--ink);
    width: 16px;
    border-radius: 3px;
}

/* Product info */
.product-info {
    display: flex;
    flex-direction: column;
    padding: 0 4px 4px;
}
.product-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 44px;
}
.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.product-price-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.product-price {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}
.btn-add-to-cart {
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0a0806;
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
}
.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.32);
}
.btn-add-to-cart.added { background: var(--success); }

/* =========================================================================
   FEATURES STRIP
   ========================================================================= */
.features-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 48px 28px;
    margin-top: 88px;
    background: linear-gradient(165deg, var(--surface-elevated), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    align-items: stretch;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    border-left: 1px solid var(--border);
    min-height: 72px;
}
.feature-item:first-child {
    border-left: none;
}
.feature-icon {
    flex: 0 0 auto;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px !important;
    line-height: 1;
}
.feature-icon-img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 12px;
}
.feature-text { min-width: 0; }
.feature-text strong {
    display: block;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.25;
}
.feature-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* =========================================================================
   EDITORIAL BANNER
   ========================================================================= */
.editorial-banner {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: stretch;
    min-height: 320px;
    margin-top: 72px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: var(--shadow-md);
}
.editorial-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    overflow: hidden;
    background: var(--surface-elevated);
}
.editorial-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.editorial-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px;
    background:
        linear-gradient(135deg, rgba(20, 20, 24, 0.98), rgba(10, 10, 12, 0.95));
}
.editorial-panel .section-kicker {
    text-align: left;
    margin-bottom: 14px;
}
.editorial-panel h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    margin-bottom: 16px;
}
.editorial-panel p {
    color: var(--muted);
    max-width: 420px;
    margin-bottom: 26px;
}
.editorial-panel .hero-link {
    width: fit-content;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
    margin-top: auto;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(212, 175, 55, 0.1), transparent 50%),
        linear-gradient(180deg, var(--bg-wash) 0%, #010102 100%);
    color: var(--muted);
    position: relative;
    border-top: 1px solid var(--border);
}
.footer-wrapper { background: transparent; padding: 72px 0 0; }

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand {
    text-align: left;
    padding: 0;
    border: none;
}
.footer-logo {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.footer-tagline {
    font-family: var(--sans);
    font-style: normal;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
    max-width: 280px;
}

.footer-col-title {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: none;
    margin: 0;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: none;
}
.footer-contact-item:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
}
.footer-icon {
    flex: 0 0 auto;
    color: var(--accent) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    line-height: 1;
    margin-top: 2px;
}
.footer-contact-item strong {
    display: block;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}
.footer-contact-item p {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}
.footer-contact-item a {
    color: var(--ink-soft);
    font-size: 13px;
    display: block;
    overflow-wrap: anywhere;
}
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    border: none;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 400;
    background: transparent;
    border-radius: 0;
    letter-spacing: 0;
    text-transform: none;
}
.footer-links a::after { display: none; }
.footer-links a:hover { color: var(--gold-light); background: transparent; }
.footer-links a .material-icons-outlined {
    font-size: 16px !important;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--gold-muted);
    border-radius: 0;
}

.footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: left;
}
.footer-bottom p {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.04em;
    margin: 0;
}
.footer-bottom p a {
    color: var(--gold-muted);
}
.footer-bottom p a:hover {
    color: var(--gold-light);
}
.footer-payment-methods {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
    border: none;
}
.payment-label {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}
.payment-icons { display: inline-flex; align-items: center; gap: 10px; }
.payment-icon {
    height: 22px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.payment-icon:hover { opacity: 1; }

/* =========================================================================
   PRODUCT MODAL
   ========================================================================= */
.product-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(27, 21, 18, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.product-modal.show { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.product-modal-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    width: min(1040px, 94vw);
    max-height: 88vh;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    animation: modalIn 0.35s var(--ease-lux);
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}
.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border: 1px solid var(--border);
    transition: background 0.2s ease;
}
.product-modal-close:hover { background: var(--bg-wash); }

.product-image-slider {
    position: relative;
    min-width: 0;
    min-height: 520px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider-images .product-modal-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
}
.slider-images .product-modal-image.active { opacity: 1; }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--glass);
    color: var(--gold-light);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: background 0.25s var(--ease-lux), color 0.25s var(--ease-lux), transform 0.25s var(--ease-lux);
    z-index: 3;
}
.slider-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #0a0806;
    transform: translateY(-50%) scale(1.05);
}
.slider-btn-prev { left: 16px; }
.slider-btn-next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.slider-dots .slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(27, 21, 18, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
}
.slider-dots .slider-dot.active {
    background: var(--ink);
    width: 22px;
    border-radius: 4px;
}

.product-modal-details {
    min-width: 0;
    padding: 56px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    background:
        linear-gradient(180deg, var(--surface-elevated) 0%, var(--surface) 100%);
    border-left: 1px solid var(--border);
}
.product-modal-name {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.product-modal-price {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 28px;
}
.product-modal-description {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 34px;
}
.product-modal-description p { margin-bottom: 10px; }
.product-modal-actions { margin-top: auto; padding-top: 16px; }
.btn-add-to-cart-modal {
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0a0806;
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.28);
}
.btn-add-to-cart-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(212, 175, 55, 0.38);
}
.btn-add-to-cart-modal.added { background: var(--success); }

/* =========================================================================
   CART
   ========================================================================= */
main.container > h2 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 32px;
}

.cart-page {
    padding-top: 54px;
}

.cart-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
    padding: 34px 38px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(20, 20, 24, 0.92), rgba(10, 10, 12, 0.88)),
        linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 60%);
    background-blend-mode: multiply;
    box-shadow: var(--shadow-md);
}

.cart-hero .section-kicker {
    text-align: left;
    margin-bottom: 12px;
}

.cart-hero h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 12px;
}

.cart-hero p {
    max-width: 560px;
    color: var(--muted);
}

.cart-hero-logo {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

#cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(20, 20, 24, 0.9);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.cart-item:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.cart-item-image {
    width: 104px;
    height: 132px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--bg-wash);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}
.cart-item-price {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--accent-deep);
    font-weight: 500;
}
.cart-item-quantity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--ink);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.cart-item-quantity button:hover { background: var(--bg-wash); }
.cart-item-quantity {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.cart-item-total {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    margin-left: auto;
}
.cart-item-remove,
.btn-remove {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cart-item-remove:hover,
.btn-remove:hover {
    color: var(--danger);
    border-color: rgba(180, 75, 75, 0.4);
    background: rgba(180, 75, 75, 0.06);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 72px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}
.empty-cart p {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin: 0;
}
.empty-cart a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--ink) !important;
    color: var(--surface) !important;
    border-radius: 999px !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.empty-cart a:hover {
    background: var(--accent-deep) !important;
    transform: translateY(-1px);
}

/* Payment return banners (styled via JS inline - override with important where possible) */
#payment-return-banner {
    border-radius: var(--radius-md) !important;
    padding: 18px 22px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
}

/* UPC payment prepared container */
#upc-payment-container {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 28px !important;
    margin: 28px auto !important;
    max-width: 640px !important;
}
#upc-payment-container h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--ink);
}
#upc-payment-container p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.cart-total {
    margin-top: 26px;
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 50%),
        linear-gradient(165deg, var(--surface-elevated), var(--surface));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}
.cart-total-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cart-total-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.cart-total-price {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--gold-light);
}
.btn-pay {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 36px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0a0806;
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.28);
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
}
.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(212, 175, 55, 0.38);
}
.btn-pay-icon { font-size: 16px; }

/* =========================================================================
   PAYMENT STATUS PAGES
   ========================================================================= */
.payment-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
    padding-bottom: 72px;
}

.payment-status-card {
    width: min(680px, 100%);
    padding: 48px 42px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.1), transparent 55%),
        linear-gradient(180deg, var(--surface-elevated), var(--surface));
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    text-align: center;
}

.payment-status-logo {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.payment-status-card .section-kicker {
    margin-bottom: 12px;
}

.payment-status-card h2 {
    font-size: clamp(34px, 5vw, 48px);
    margin-bottom: 14px;
}

.payment-status-card p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
}

.payment-status-card strong {
    color: var(--ink);
}

.payment-status-meta {
    margin-top: 18px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border);
    font-size: 14px !important;
    color: var(--ink-soft) !important;
}

.payment-status-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.payment-status-success {
    border-color: rgba(46, 139, 87, 0.28);
}

.payment-status-fail {
    border-color: rgba(217, 83, 79, 0.30);
}

/* =========================================================================
   DELIVERY MODAL
   ========================================================================= */
.delivery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(27, 21, 18, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.delivery-modal.show { display: flex; animation: fadeIn 0.25s ease; }
.delivery-modal-content {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 45%),
        linear-gradient(180deg, var(--surface-elevated), var(--bg-wash));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    animation: modalIn 0.35s var(--ease-lux);
    color: var(--ink);
}
.delivery-modal-content h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 28px;
}
.delivery-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-wash);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}
.delivery-modal-close:hover { background: var(--border); }

.delivery-modal-content .form-group { margin-bottom: 18px; }
.delivery-modal-content label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}
.delivery-modal-content input,
.delivery-modal-content textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.delivery-modal-content input:focus,
.delivery-modal-content textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(182, 123, 123, 0.15);
}
.delivery-modal-content textarea { resize: vertical; min-height: 84px; }
.delivery-modal-content .form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted-light);
    line-height: 1.5;
}
.delivery-info {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--border);
    padding: 16px 18px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}
.delivery-info p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 6px 0;
}
.delivery-info p:first-child { margin-top: 0; }
.delivery-info p:last-child  { margin-bottom: 0; }

.acquiring-pending-content {
    max-width: 540px;
    text-align: center;
}

.acquiring-pending-logo {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.acquiring-pending-content .section-kicker {
    margin-bottom: 12px;
}

.acquiring-pending-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-pay-modal {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0a0806;
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}
.btn-pay-modal:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.35);
}
.btn-pay-modal:disabled {
    background: var(--border-strong);
    cursor: not-allowed;
}

/* =========================================================================
   FOOTER MODAL
   ========================================================================= */
.footer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(27, 21, 18, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.footer-modal.show { display: flex; animation: fadeIn 0.25s ease; }
.footer-modal-content {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    width: min(740px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    color: var(--ink);
}
.footer-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-wash);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}
.footer-modal-close:hover { background: var(--border); }
#footer-modal-body h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}
#footer-modal-body h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    margin: 22px 0 10px;
}
#footer-modal-body p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 14px;
}
#footer-modal-body ul { list-style: none; padding-left: 0; margin: 0 0 14px; }
#footer-modal-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft);
    font-size: 14px;
}
#footer-modal-body ul li:last-child { border-bottom: none; }
#footer-modal-body a { color: var(--accent-deep); }
#footer-modal-body a:hover { color: var(--ink); }

/* =========================================================================
   FLOATING CART BUTTON
   ========================================================================= */
.floating-cart-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
    color: #0a0806;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 90;
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
}
.floating-cart-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 50px rgba(212, 175, 55, 0.45);
    color: #0a0806;
}
.cart-icon { font-size: 24px !important; color: #0a0806; }
.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    display: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.cart-count-badge.show { display: block; }
.cart-count-badge:empty { display: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .collection-highlights { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .features-strip { grid-template-columns: repeat(2, 1fr); padding: 36px 20px; }
    .feature-item { padding: 14px 20px; }
    .feature-item:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
    .feature-item:nth-child(4) { border-top: 1px solid var(--border); }
    .editorial-banner { grid-template-columns: 1fr; }
    .editorial-banner img { max-height: 380px; }
}

@media (max-width: 860px) {
    .container { padding-inline: 24px; }
    .hero-section { padding: 56px 0 72px; }
    .hero-section::before { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual-frame { max-width: 420px; margin: 0 auto; }
    .hero-title { font-size: clamp(40px, 10vw, 64px); }
    .hero-proof-grid { max-width: 560px; }

    main { padding-top: 56px; padding-bottom: 56px; }
    .section-title { font-size: 32px; }
    .section-title.decorated { font-size: 26px; gap: 12px; }
    .section-title-ornament { flex: 0 0 40px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .product-name { font-size: 15px; min-height: 0; }
    .product-price { font-size: 18px; }
    .btn-add-to-cart { padding: 8px 12px; font-size: 11px; letter-spacing: 0.1em; }

    .features-strip { grid-template-columns: 1fr; padding: 16px; margin-top: 56px; }
    .feature-item { padding: 16px; border-left: none; border-top: 1px solid var(--border); min-height: 0; }
    .feature-item:first-child { border-top: none; }
    .editorial-banner { margin-top: 56px; border-radius: 22px; }
    .editorial-panel { padding: 32px 24px; }

    .footer-main { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 24px 0; }
    .footer-payment-methods { justify-content: center; }

    .product-modal-content {
        grid-template-columns: 1fr;
        max-height: 92vh;
        width: min(560px, 94vw);
    }
    .product-image-slider {
        min-height: 0;
        height: 320px;
    }
    .slider-images .product-modal-image {
        padding: 18px;
    }
    .product-modal-details { padding: 28px 24px; }

    .delivery-modal-content { padding: 32px 24px; }
    .footer-modal-content { padding: 32px 24px; }

    .cart-item { flex-wrap: wrap; }
    .cart-item-image { width: 80px; height: 100px; }
    .cart-hero {
        align-items: flex-start;
        padding: 28px 24px;
    }
    .cart-hero-logo {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }
    .cart-total-content { flex-direction: column; align-items: stretch; }
    .btn-pay { justify-content: center; }

    .floating-cart-btn { right: 20px; bottom: 20px; width: 50px; height: 50px; }
}

@media (max-width: 520px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-proof-grid { grid-template-columns: 1fr; }
    .hero-cta { width: 100%; justify-content: center; }
    .cart-hero {
        flex-direction: column;
    }
}

/* =========================================================================
   MINI-CART DRAWER
   ========================================================================= */
.floating-cart-btn {
    border: none;
    cursor: pointer;
}

.mini-cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(27, 21, 18, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}
.mini-cart-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 420px;
    max-width: 92vw;
    background: var(--surface);
    box-shadow: -20px 0 60px rgba(30, 20, 16, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1001;
}
.mini-cart.show {
    transform: translateX(0);
}

.mini-cart-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 26px;
    border-bottom: 1px solid var(--border);
}
.mini-cart-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
}
.mini-cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-wash);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.mini-cart-close:hover { background: var(--border); }
.mini-cart-close .material-icons-outlined { font-size: 20px; }

.mini-cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 26px;
}
.mini-cart-loading,
.mini-cart-empty {
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 40px 0;
    margin: 0;
}
.mini-cart-empty-title {
    font-family: var(--serif);
    color: var(--ink);
    font-size: 20px;
    margin-bottom: 6px;
}

.mini-cart-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mini-cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.mini-cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.mini-cart-item-image {
    width: 72px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-wash);
}
.mini-cart-item-info { min-width: 0; }
.mini-cart-item-name {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mini-cart-item-meta {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.mini-cart-item-price {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    margin-top: 4px;
}
.mini-cart-item-remove {
    align-self: flex-start;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.mini-cart-item-remove:hover {
    color: var(--danger);
    border-color: rgba(180, 75, 75, 0.4);
    background: rgba(180, 75, 75, 0.06);
}
.mini-cart-item-remove .material-icons-outlined { font-size: 16px; }

.mini-cart-footer {
    flex: 0 0 auto;
    padding: 20px 26px 28px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.mini-cart-footer[hidden] { display: none !important; }

.mini-cart-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}
.mini-cart-total > span:first-child {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.mini-cart-total-value {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
}
.mini-cart-checkout {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #0a0806;
    border: none;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.25);
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux);
}
.mini-cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.35);
}
.mini-cart-checkout .material-icons-outlined { font-size: 18px; }
.mini-cart-view {
    display: block;
    margin-top: 12px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.mini-cart-view:hover { color: var(--ink); }

@media (max-width: 520px) {
    .mini-cart { width: 100%; max-width: 100%; }
    .mini-cart-header,
    .mini-cart-body,
    .mini-cart-footer { padding-inline: 20px; }
}

/* =========================================================================
   GLOBAL PREMIUM POLISH
   ========================================================================= */
::selection {
    background: rgba(212, 175, 55, 0.35);
    color: var(--ink);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-muted), var(--gold-dark));
    border-radius: 999px;
}

.empty-cart a {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)) !important;
    color: #0a0806 !important;
}

.product-modal {
    background: rgba(2, 2, 3, 0.82);
    backdrop-filter: blur(12px);
}

.delivery-modal,
.footer-modal {
    background: rgba(2, 2, 3, 0.78);
    backdrop-filter: blur(14px);
}

.mini-cart {
    background: var(--surface);
    border-left: 1px solid var(--border-strong);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.5);
}

.cart-hero {
    border-color: var(--border-strong);
}

.highlight-link {
    color: var(--gold-muted);
}
.highlight-link:hover {
    color: var(--gold-light);
}
