﻿/* ============================================================
   VAIRONCROWN â€” Premium Luxury Watch Design System
   ============================================================ */

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
    /* Backgrounds */
    --bg-primary: #070809;
    --bg-secondary: #0D0F11;
    --bg-tertiary: #17191B;
    --bg-card: #111315;
    --bg-card-hover: #17191B;
    --bg-overlay: rgba(7, 8, 9, 0.92);
    --bg-input: #0D0F11;
    --bg-light: #F3F0E9;

    /* Gold Palette */
    --gold: #C59A52;
    --gold-light: #D7B56D;
    --gold-dark: #8D682E;
    --gold-glow: rgba(197, 154, 82, 0.35);
    --gold-border: rgba(197, 154, 82, 0.45);
    --gold-subtle: rgba(197, 154, 82, 0.08);
    --gradient-gold: linear-gradient(135deg, #C59A52 0%, #D7B56D 50%, #C59A52 100%);

    /* Text */
    --text-heading: #F5F2EA;
    --text-body: #AAA69E;
    --text-muted: #77746E;
    --text-dark: #17181B;

    /* Borders */
    --border: rgba(255, 255, 255, 0.10);
    --border-light: rgba(255, 255, 255, 0.16);
    --border-gold: var(--gold-border);

    /* Status */
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes â€” fluid where appropriate */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: clamp(1.5rem, 2vw + 1rem, 1.875rem);
    --fs-4xl: clamp(1.875rem, 3vw + 1rem, 2.25rem);
    --fs-5xl: clamp(2.25rem, 4vw + 1rem, 3rem);
    --fs-6xl: clamp(3rem, 6vw + 1rem, 3.75rem);
    --fs-hero: clamp(2.5rem, 5.9vw + 0.85rem, 4.75rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-section: clamp(3rem, 6vw, 6rem);

    /* Layout */
    --container-max: 1360px;
    --container-padding: clamp(1rem, 3vw, 2rem);
    --grid-gap: 1.5rem;

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.5s var(--ease);
    --transition-fast: 0.15s var(--ease);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(201, 154, 74, 0.15);
    --shadow-gold-lg: 0 8px 40px rgba(201, 154, 74, 0.25);

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-header: 600;
}

/* ----------------------------------------------------------
   2. RESET / NORMALIZE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset {
    border: none;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ----------------------------------------------------------
   3. TYPOGRAPHY SYSTEM
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

h1 {
    font-size: var(--fs-6xl);
    font-weight: 400;
    letter-spacing: 0.02em;
}

h2 {
    font-size: var(--fs-5xl);
    font-weight: 400;
}

h3 {
    font-size: var(--fs-4xl);
}

h4 {
    font-size: var(--fs-3xl);
}

h5 {
    font-size: var(--fs-2xl);
}

h6 {
    font-size: var(--fs-xl);
}

p {
    margin-bottom: 1em;
    color: var(--text-body);
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 600;
}

small {
    font-size: var(--fs-sm);
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.font-serif {
    font-family: var(--font-heading);
}

.font-sans {
    font-family: var(--font-body);
}

/* ----------------------------------------------------------
   4. CONTAINER & GRID SYSTEM
   ---------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-narrow {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-wide {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.grid {
    display: grid;
    gap: var(--grid-gap);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ----------------------------------------------------------
   5. UTILITY CLASSES
   ---------------------------------------------------------- */
/* Display */
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-inline-flex { display: inline-flex; }
.d-none { display: none; }

/* Flex */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.flex-start { align-items: flex-start; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }
.pt-0 { padding-top: 0; }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pb-0 { padding-bottom: 0; }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

/* Width / Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Visibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----------------------------------------------------------
   6. BUTTONS
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-sm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold-border);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.btn-ghost {
    background: transparent;
    color: var(--text-body);
    border-color: transparent;
}

.btn-ghost:hover {
    color: var(--gold);
    background: var(--gold-subtle);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: var(--fs-base);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ----------------------------------------------------------
   7. ANNOUNCEMENT BAR
   ---------------------------------------------------------- */
.announcement-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 0.55rem 0;
    text-align: center;
    font-size: var(--fs-xs);
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.announcement-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-bar__item svg,
.announcement-bar__item i {
    color: var(--gold);
    font-size: 0.85em;
}

.announcement-bar__item strong {
    color: var(--gold);
    font-weight: 600;
}

/* ----------------------------------------------------------
   8. SITE HEADER
   ---------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    transition: all var(--transition);
}

.site-header--transparent {
    background: transparent;
}

.site-header--solid {
    background: rgba(5, 7, 8, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

/* Header Top Bar */
.header-top-bar {
    background: var(--bg-secondary);
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.header-top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-top-bar__item i,
.header-top-bar__item svg {
    color: var(--gold);
    font-size: 0.8em;
}

/* Header Main */
.header-main {
    padding: 0.85rem 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo__icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    fill: currentColor;
}

.site-logo__text {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
}

.site-logo__sub {
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.main-nav__link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 1rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color var(--transition);
    position: relative;
    white-space: nowrap;
}

.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.main-nav__link:hover,
.main-nav__link--active {
    color: var(--gold);
}

.main-nav__link:hover::after,
.main-nav__link--active::after {
    width: 60%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.header-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-body);
    transition: color var(--transition);
    border-radius: var(--radius-full);
}

.header-action:hover {
    color: var(--gold);
    background: var(--gold-subtle);
}

.header-action svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.header-action__badge {
    position: absolute;
    top: 2px;
    right: 1px;
    width: 17px;
    height: 17px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    line-height: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
}

.hamburger__line {
    width: 100%;
    height: 1.5px;
    background: var(--text-body);
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ----------------------------------------------------------
   9. HERO SECTION
   ---------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 720px;
    height: min(940px, 90vh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
    isolation: isolate;
    perspective: 1200px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}

.hero__bg img.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 46%;
    will-change: transform;
    animation: heroKenBurns 16s ease-out forwards;
}

/* Cinematic single-hero zoom (slow, restrained) */
@keyframes heroKenBurns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.05) translate(-0.4%, 0.5%); }
}

/* Watch layer fades in as one cinematic photograph */
.hero__picture {
    animation: heroPictureReveal 1.1s var(--ease) both;
}

@keyframes heroPictureReveal {
    from { opacity: 0; transform: scale(1.045); }
    to   { opacity: 1; transform: scale(1); }
}

/* Warm bronze atmosphere */
.hero__glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 46% 52% at 80% 34%, rgba(201, 154, 74, 0.13) 0%, transparent 62%),
        radial-gradient(ellipse 34% 30% at 46% 84%, rgba(201, 154, 74, 0.05) 0%, transparent 60%);
    animation: heroGlowPulse 10s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    from { opacity: 0.72; }
    to   { opacity: 1; }
}

/* Very faint light sweep across the watch (slow, elegant) */
.hero__sheen {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(
        115deg,
        transparent 42%,
        rgba(255, 244, 224, 0.05) 50%,
        transparent 56%
    );
    background-size: 260% 100%;
    background-position: 130% 0;
    animation: heroSheen 9s ease-in-out infinite;
}

@keyframes heroSheen {
    0%   { background-position: 130% 0; }
    55%  { background-position: -30% 0; }
    100% { background-position: -30% 0; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(4, 5, 6, 0.94) 0%,
        rgba(4, 5, 6, calc(0.60 * var(--overlay, 0.3))) 52%,
        rgba(4, 5, 6, calc(0.08 * var(--overlay, 0.3))) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 4.5rem 0 3rem;
    will-change: transform;
}

.hero__content--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero__content--center .hero__eyebrow::before,
.hero__content--center .hero__eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 154, 82, 0.9), rgba(197, 154, 82, 0.15));
}

.hero__content--center .hero__eyebrow::after {
    margin-left: 0.6rem;
}

.hero__content--center .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero__content--center .hero__actions,
.hero__content--center .hero__trust {
    justify-content: center;
}

.hero__content--right {
    margin-left: auto;
    text-align: right;
}

.hero__content--right .hero__eyebrow {
    flex-direction: row-reverse;
}

.hero__content--right .hero__eyebrow::before {
    margin: 0 0.6rem 0 0;
}

.hero__content--right .hero__subtitle {
    margin-left: auto;
}

.hero__content--right .hero__actions,
.hero__content--right .hero__trust {
    justify-content: flex-end;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
}

.hero__eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(197, 154, 82, 0.2));
    transform-origin: left center;
    animation: heroEyebrowLine 0.9s var(--ease) both;
    animation-delay: 0.45s;
}

@keyframes heroEyebrowLine {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    font-weight: 500;
    line-height: 1.04;
    color: var(--text-heading);
    margin-bottom: 1.6rem;
    letter-spacing: 0.012em;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 0.35em;
}

.hero__title-line {
    opacity: 0;
    transform: translateY(28px);
    animation: heroLineUp 1s var(--ease) forwards;
    animation-delay: var(--d, 0.4s);
}

.hero__title-line--top {
    font-size: 0.58em;
    color: var(--text-heading);
    letter-spacing: 0.06em;
}

.hero__title-line--main {
    font-size: 1.2em;
    color: var(--gold-light);
    line-height: 0.95;
}

@keyframes heroLineUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__title::after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 210px;
    height: 1px;
    background: linear-gradient(to right, var(--gold-light), rgba(215, 181, 109, 0.12));
    transform: scaleX(0);
    transform-origin: left center;
    animation: heroTitleRule 1.1s var(--ease) 0.72s both;
}

@keyframes heroTitleRule {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
}

.hero__title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero__subtitle {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    color: var(--text-muted);
    margin-bottom: 2.4rem;
    max-width: 440px;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2.2rem;
}

.btn-hero {
    border-radius: 2px;
    padding: 1.05rem 2.3rem;
    transform: translate(var(--mx, 0px), var(--my, 0px));
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    box-shadow: 0 14px 34px -12px rgba(197, 154, 82, 0.4);
}

.hero__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(234, 234, 228, 0.55);
}

.hero__trust i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.8;
    display: inline-block;
}

/* Hero text reveal (staggered, subdued) */
.hero-anim {
    opacity: 0;
    transform: translateY(24px);
    animation: heroRevealUp 0.9s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes heroRevealUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 1.9rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    color: rgba(234, 234, 228, 0.6);
    font-size: var(--fs-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: heroScrollBounce 2.4s ease-in-out infinite;
}

.hero__scroll-indicator::after {
    content: '';
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

/* Carousel arrows */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(7, 8, 9, 0.45);
    border: 1px solid rgba(197, 154, 82, 0.25);
    color: var(--text-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero__arrow:hover {
    background: rgba(7, 8, 9, 0.7);
    border-color: var(--gold);
}

.hero__arrow--left { left: 1.5rem; }
.hero__arrow--right { right: 1.5rem; }

/* Info badge (bottom-right) */
.hero__badge {
    position: absolute;
    bottom: 2.8rem;
    right: 3rem;
    z-index: 3;
}

.hero__badge-inner {
    background: rgba(7, 8, 9, 0.72);
    border: 1px solid rgba(197, 154, 82, 0.22);
    border-radius: 3px;
    padding: 0.9rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    backdrop-filter: blur(8px);
    max-width: 190px;
}

.hero__badge-brand {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero__badge-model {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1.15;
}

.hero__badge-tagline {
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    line-height: 1.35;
}

/* Subtitle dot separator */
.hero__dot {
    color: var(--gold);
    opacity: 0.65;
    margin: 0 0.1em;
}

/* Button gold shine sweep */
.btn-shine { position: relative; overflow: hidden; z-index: 1; }
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: btnShine 4.5s ease-in-out infinite;
}
@keyframes btnShine {
    0%   { left: -75%; }
    55%  { left: 125%; }
    100% { left: 125%; }
}

/* ----------------------------------------------------------
   10. SECTIONS
   ---------------------------------------------------------- */
.section {
    padding: var(--space-section) 0;
}

.section--dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header--left {
    text-align: left;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-header--left .section-eyebrow {
    justify-content: flex-start;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: var(--fs-base);
    color: var(--text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-header--left .section-subtitle {
    margin-left: 0;
}

/* Gold divider line */
.section-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.section-header--left .section-divider {
    margin-left: 0;
}

/* ----------------------------------------------------------
   11. CATEGORY CARDS
   ---------------------------------------------------------- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.category-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    will-change: transform;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(201, 154, 74, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
    z-index: 4;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    border-color: rgba(201, 154, 74, 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(201, 154, 74, 0.08);
    transform: translateY(-4px);
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
    transform: scale(1.08);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 7, 8, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.5rem;
    transition: background var(--transition);
}

.category-card:hover .category-card__overlay {
    background: linear-gradient(to top, rgba(5, 7, 8, 0.98) 0%, rgba(5, 7, 8, 0.3) 70%);
}

.category-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 0.3rem;
}

.category-card__count {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--gold);
    font-weight: 500;
    transition: gap var(--transition);
}

.category-card:hover .category-card__link {
    gap: 0.9rem;
}

.category-card__link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.category-card:hover .category-card__link svg {
    transform: translateX(3px);
}

/* ----------------------------------------------------------
   12. PRODUCT CARDS
   ---------------------------------------------------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

/* Gold Accent Hover (hover-only, touch devices unaffected) */
@media (hover: hover) {
    .product-card:hover {
        border-color: var(--border-gold);
        box-shadow: 0 0 0 1px var(--border-gold), 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 154, 74, 0.1);
        transform: translateY(-6px);
    }
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--bg-secondary);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
    .product-card:hover .product-card__image {
        transform: scale(1.05);
    }
}

/* Wishlist Heart */
.product-card__wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(5, 7, 8, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    z-index: 3;
    transition: all var(--transition);
    cursor: pointer;
}

.product-card__wishlist:hover,
.product-card__wishlist--active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

@media (hover: hover) {
    .product-card:hover .product-card__wishlist {
        background: var(--gold);
        color: var(--bg-primary);
        border-color: var(--gold);
    }
}

.product-card__wishlist svg {
    width: 16px;
    height: 16px;
}

/* Badges */
.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.badge-sale {
    background: var(--danger);
    color: #fff;
}

.badge-new {
    background: var(--gold);
    color: var(--bg-primary);
}

.badge-bestseller {
    background: var(--success);
    color: #fff;
}

.badge-limited {
    background: var(--info);
    color: #fff;
}

/* Quick View Overlay */
.product-card__quickview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(5, 7, 8, 0.95), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 2;
}

@media (hover: hover) {
    .product-card:hover .product-card__quickview {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Info */
.product-card__info {
    padding: 1.1rem 1.2rem 1.2rem;
}

.product-card__category {
    font-size: var(--fs-xs);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__name a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.product-card__name a:hover {
    color: var(--gold);
}

/* Rating */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.6rem;
}

.rating__star {
    color: var(--gold);
    font-size: 0.75rem;
}

.rating__star--empty {
    color: var(--border-light);
}

.rating__count {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-left: 0.4rem;
}

/* Price */
.product-card__price {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.price {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-heading);
}

.price-original {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.price-sale {
    color: var(--gold);
}

.price-range {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

/* ----------------------------------------------------------
   13. PROMO / BANNER GRID
   ---------------------------------------------------------- */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.promo-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--border);
    cursor: pointer;
}

.promo-card--wide {
    grid-column: span 2;
    aspect-ratio: 8 / 5;
}

.promo-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.promo-card:hover .promo-card__image {
    transform: scale(1.05);
}

.promo-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(5, 7, 8, 0.92) 0%, transparent 50%);
}

.promo-card__eyebrow {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.promo-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.promo-card__text {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    max-width: 360px;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   14. NEWSLETTER
   ---------------------------------------------------------- */
.newsletter {
    text-align: center;
    padding: var(--space-section) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.newsletter__title {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.newsletter__subtitle {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-right: none;
    color: var(--text-heading);
    font-size: var(--fs-sm);
    transition: border-color var(--transition);
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter__input::placeholder {
    color: var(--text-muted);
}

.newsletter__btn {
    padding: 0.9rem 1.8rem;
    background: var(--gold);
    color: var(--bg-primary);
    border: 1px solid var(--gold);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

/* ----------------------------------------------------------
   15. TRUST STRIP
   ---------------------------------------------------------- */
.trust-strip {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: var(--fs-sm);
    color: var(--text-body);
}

.trust-item__icon {
    color: var(--gold);
    font-size: 1.2em;
}

.trust-item__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

/* ----------------------------------------------------------
   16. COMING SOON
   ---------------------------------------------------------- */
.coming-soon {
    text-align: center;
    padding: var(--space-section) 0;
}

.coming-soon__title {
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.coming-soon__subtitle {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.coming-soon__countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 72px;
}

.countdown-unit__value {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    padding: 0.5rem 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-width: 72px;
    text-align: center;
}

.countdown-unit__label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ----------------------------------------------------------
   16A. VAIRONCROWN STANDARD
   ---------------------------------------------------------- */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.standard-item {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.standard-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-slow);
}

.standard-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--gold-border);
    transform: translateY(-4px);
}

.standard-item:hover::after {
    width: 100%;
}

.standard-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-border);
    background: var(--gold-subtle);
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.standard-item__icon svg {
    width: 24px;
    height: 24px;
}

.standard-item__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.standard-item__text {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--text-muted);
}

/* ----------------------------------------------------------
   16B. BRAND STORY
   ---------------------------------------------------------- */
.story-section {
    padding: var(--space-2xl) 0;
}

.story-section__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.story-section__media {
    position: relative;
}

.story-section__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.story-section__media::before {
    content: '';
    position: absolute;
    inset: 1rem -1rem -1rem 1rem;
    border: 1px solid var(--gold-border);
    pointer-events: none;
}

.story-section__medallion {
    position: absolute;
    right: -1.5rem;
    top: -1.5rem;
    width: 96px;
    height: 96px;
    color: var(--gold);
    opacity: 0.9;
    animation: medallion-spin 24s linear infinite;
}

.story-section__medallion svg {
    width: 100%;
    height: 100%;
}

@keyframes medallion-spin {
    to {
        transform: rotate(360deg);
    }
}

.story-section__content {
    text-align: left;
}

.story-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    font-weight: 400;
    color: var(--text-heading);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-divider--left {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.75rem;
}

.story-section__text {
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.story-section__quote {
    margin: 1.75rem 0;
    padding: 1.25rem 1.75rem;
    border-left: 2px solid var(--gold);
    background: var(--gold-subtle);
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
}

.story-section__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat__value {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    color: var(--gold);
}

.stat__label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ----------------------------------------------------------
   16C. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
    padding: 5.5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.55);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
}

.testimonial-card__stars .gold {
    color: var(--gold);
}

.testimonial-card__stars .dim {
    color: rgba(255, 255, 255, 0.18);
}

.testimonial-card__quote {
    font-family: var(--font-heading);
    font-size: calc(var(--fs-body) * 1.05);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.testimonial-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #070809;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author {
    font-size: var(--fs-sm);
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.testimonial-card__meta {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ----------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand__logo {
    font-size: var(--fs-lg);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.footer-brand__desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social__link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-social__link:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.footer-column__title {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
}

.footer-column__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-column__link {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    transition: color var(--transition);
    padding: 0.15rem 0;
}

.footer-column__link:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom__text {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.footer-bottom__payments {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-bottom__payments img {
    height: 20px;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.footer-bottom__payments img:hover {
    opacity: 0.8;
}

/* ----------------------------------------------------------
   18. FORMS
   ---------------------------------------------------------- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-size: var(--fs-sm);
    transition: all var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input--error {
    border-color: var(--danger);
}

.form-input--error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    font-size: var(--fs-xs);
    color: var(--danger);
    margin-top: 0.4rem;
}

.form-hint {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: 0.4rem;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form-select {
    width: 100%;
    padding: 0.85rem 2.5rem 0.85rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-size: var(--fs-sm);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
    transition: all var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-subtle);
}

/* Checkbox & Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--text-body);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-light);
    background: var(--bg-input);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
}

.form-check input[type="checkbox"] {
    border-radius: var(--radius-sm);
}

.form-check input[type="radio"] {
    border-radius: var(--radius-full);
}

.form-check input[type="checkbox"]:checked,
.form-check input[type="radio"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.form-check input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23050708' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.form-check input[type="radio"]:checked {
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23050708'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ----------------------------------------------------------
   19. TOASTS / ALERTS
   ---------------------------------------------------------- */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
    width: 100%;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    animation: toastSlideIn 0.35s var(--ease);
}

.toast--success {
    border-left: 3px solid var(--success);
}

.toast--error {
    border-left: 3px solid var(--danger);
}

.toast--warning {
    border-left: 3px solid var(--warning);
}

.toast--info {
    border-left: 3px solid var(--info);
}

.toast__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.toast--success .toast__icon { color: var(--success); }
.toast--error .toast__icon { color: var(--danger); }
.toast--warning .toast__icon { color: var(--warning); }
.toast--info .toast__icon { color: var(--info); }

.toast__message {
    flex: 1;
    font-size: var(--fs-sm);
    color: var(--text-body);
    line-height: 1.5;
}

.toast__close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.toast__close:hover {
    color: var(--text-heading);
    background: var(--gold-subtle);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ----------------------------------------------------------
   20. MODAL
   ---------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.92) translateY(10px);
    transition: transform var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    color: var(--text-heading);
}

.modal__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
    border-radius: var(--radius-sm);
}

.modal__close:hover {
    color: var(--text-heading);
    background: var(--gold-subtle);
}

.modal__body {
    padding: 1.5rem;
}

.modal__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* ----------------------------------------------------------
   21. TABS
   ---------------------------------------------------------- */
.tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tabs__item {
    padding: 0.9rem 1.5rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.tabs__item:hover {
    color: var(--text-body);
}

.tabs__item.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tabs__content {
    display: none;
}

.tabs__content.active {
    display: block;
}

/* ----------------------------------------------------------
   22. LOADER / SPINNER
   ---------------------------------------------------------- */
.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-light);
    border-top-color: var(--gold);
    border-radius: var(--radius-full);
    animation: spin 0.7s linear infinite;
}

.spinner--lg {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

.spinner--sm {
    width: 16px;
    height: 16px;
    border-width: 1.5px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

.page-loader__text {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-card) 25%,
        var(--bg-tertiary) 50%,
        var(--bg-card) 75%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ----------------------------------------------------------
   23. BREADCRUMBS
   ---------------------------------------------------------- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    padding: 1rem 0;
    flex-wrap: wrap;
}

.breadcrumb__link {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumb__link:hover {
    color: var(--gold);
}

.breadcrumb__separator {
    color: var(--border-light);
    font-size: 0.7em;
}

.breadcrumb__current {
    color: var(--text-body);
}

/* ----------------------------------------------------------
   24. PAGINATION
   ---------------------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 3rem;
}

.pagination__item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-body);
    font-size: var(--fs-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.pagination__item:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination__item.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
    font-weight: 600;
}

.pagination__item--prev,
.pagination__item--next {
    width: auto;
    padding: 0 0.8rem;
}

/* ----------------------------------------------------------
   25. EMPTY STATES
   ---------------------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state__icon {
    font-size: 56px;
    color: var(--border-light);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.empty-state__icon svg {
    width: 56px;
    height: 56px;
    stroke-width: 1;
    color: var(--text-muted);
}

.empty-state__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.empty-state__text {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------
   26. QUANTITY SELECTOR
   ---------------------------------------------------------- */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
}

.quantity-selector__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-body);
    font-size: 16px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.quantity-selector__btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.quantity-selector__input {
    width: 56px;
    height: 40px;
    text-align: center;
    background: var(--bg-card);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
}

/* ----------------------------------------------------------
   27. WHATSAPP BUTTON
   ---------------------------------------------------------- */
.whatsapp-btn {
    position: fixed;
    bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    right: calc(2rem + env(safe-area-inset-right, 0px));
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        right: calc(1rem + env(safe-area-inset-right, 0px));
        width: 50px;
        height: 50px;
    }
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ----------------------------------------------------------
   28. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.reveal {
    opacity: 0;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger-children > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 0.5s; }

.stagger-children > .reveal-up:nth-child(1) { transition-delay: 0s; }
.stagger-children > .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .reveal-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .reveal-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > .reveal-up:nth-child(6) { transition-delay: 0.5s; }

/* ----------------------------------------------------------
   29. ENHANCED SCROLL REVEAL ANIMATIONS (Cubic-Bezier)
   ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* ----------------------------------------------------------
   30. ENHANCED PRODUCT CARD HOVER (Luxury Lift)
   ---------------------------------------------------------- */
.product-card { transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease; }
.product-card__image-wrap { overflow: hidden; }
.product-card__image { transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1); }
.product-card__quickview { opacity: 0; transform: translateY(10px); transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
@media (hover: hover) {
    .product-card:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px var(--border-gold), 0 20px 50px rgba(0, 0, 0, 0.4); }
    .product-card:hover .product-card__image { transform: scale(1.05); }
    .product-card:hover .product-card__quickview { opacity: 1; transform: translateY(0); }
    .product-card:hover .product-card__wishlist { background: var(--gold); color: var(--bg-primary); border-color: var(--gold); }
}

/* ----------------------------------------------------------
   31. CATEGORY CARD HOVER (Scale & Glow)
   ---------------------------------------------------------- */
.category-card { transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.category-card:hover { transform: translateY(-4px); }
.category-card__image { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.category-card:hover .category-card__image { transform: scale(1.06); }

/* ----------------------------------------------------------
   32. GOLD GLOW BUTTON EFFECTS
   ---------------------------------------------------------- */
.btn--primary { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.btn--primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent); transform: translateX(-100%); transition: transform 0.5s ease; }
.btn--primary:hover::after { transform: translateX(100%); }
.btn--primary:hover { box-shadow: 0 4px 30px rgba(201, 154, 74, 0.35); }

/* ----------------------------------------------------------
   33. STAGGERED REVEAL FOR PRODUCT GRIDS
   ---------------------------------------------------------- */
.product-grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.product-grid .product-card:nth-child(2) { transition-delay: 0.1s; }
.product-grid .product-card:nth-child(3) { transition-delay: 0.15s; }
.product-grid .product-card:nth-child(4) { transition-delay: 0.2s; }
.product-grid .product-card:nth-child(5) { transition-delay: 0.25s; }
.product-grid .product-card:nth-child(6) { transition-delay: 0.3s; }

/* ----------------------------------------------------------
   34. PARALLAX-COMPATIBLE SECTION BACKGROUNDS
   ---------------------------------------------------------- */
.parallax-section { background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; }

/* ----------------------------------------------------------
   35. SMOOTH IMAGE LOADING
   ---------------------------------------------------------- */
img { transition: opacity 0.3s ease; }
img[src=""] { opacity: 0; }

/* ----------------------------------------------------------
   36. GOLD SHIMMER ANIMATION
   ---------------------------------------------------------- */
@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.gold-shimmer {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light, #E6C988) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 4s linear infinite;
}

/* ----------------------------------------------------------
   37. SMOOTH PAGE LOAD ANIMATION
   ---------------------------------------------------------- */
@keyframes pageLoadIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
main { animation: pageLoadIn 0.4s ease; }

/* ----------------------------------------------------------
   38. MOBILE MENU SLIDE ANIMATION
   ---------------------------------------------------------- */
.mobile-menu { transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-overlay { opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }

/* ----------------------------------------------------------
   40. PAGE TRANSITION OVERLAY
   ---------------------------------------------------------- */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-modal) + 20);
    background: radial-gradient(ellipse 60% 50% at 50% 45%, #1a150b 0%, var(--bg-primary) 70%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.page-transition::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: translate(-50%, -50%) scaleX(0);
    transition: transform 0.3s var(--ease) 0.15s;
}

.page-transition.page-transition--active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.page-transition.page-transition--active::after {
    transform: translate(-50%, -50%) scaleX(1);
}

/* ----------------------------------------------------------
   39. REDUCED MOTION SUPPORT
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
    .product-card, .category-card, .btn--primary { transition: none; }
    .product-card:hover { transform: none; }
    .category-card:hover { transform: none; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
