/* ============================================
   ANDREW J MILLAR - ARTIST THEME FOR OPENCART
   Premium Gold Leaf Design System
   ============================================ */

/* CSS Variables */
:root {
    --dark-color: #0a0a0a;
    --darker-color: #050505;
    --light-color: #f5f5f5;
    --secondary-color: #999;
    --gold-color: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8960c;
    --silver-color: #c0c0c0;
    --font-heading: 'Libre Franklin', sans-serif;
    --font-body: 'Libre Franklin', sans-serif;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* ============================================
   LOADING SCREEN - CINEMATIC PARTICLE SANDSTORM
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

/* Ambient light glow */
.loading-screen::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    animation: ambientPulse 4s ease-in-out infinite;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Gold leaf textured text */
.loading-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 200;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(
        135deg,
        #bf953f 0%,
        #fcf6ba 25%,
        #d4af37 50%,
        #fcf6ba 75%,
        #bf953f 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    animation: 
        textReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
        goldShimmer 3s ease-in-out 2s infinite;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        letter-spacing: 0.6em;
        filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0)) blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 0.4em;
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4)) blur(0);
    }
}

@keyframes goldShimmer {
    0% { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}

/* Decorative line */
.loading-line {
    width: 0;
    height: 1px;
    position: relative;
    animation: lineExpand 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.loading-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(191, 149, 63, 0.5) 20%,
        #fcf6ba 50%,
        rgba(191, 149, 63, 0.5) 80%,
        transparent 100%
    );
}

@keyframes lineExpand {
    from { width: 0; opacity: 0; }
    to { width: 150px; opacity: 1; }
}

/* Gold leaf particles container */
.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Ultra-Realistic Gold Leaf Flakes - Foil Quality */
.gold-leaf {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

/* Large flakes - genuine 24ct gold leaf appearance */
.gold-leaf.large {
    width: 36px;
    height: 28px;
    background: 
        /* Bright specular highlights - where light catches */
        radial-gradient(ellipse at 15% 10%, rgba(255,255,245,1) 0%, transparent 18%),
        radial-gradient(ellipse at 80% 20%, rgba(255,254,240,0.95) 0%, transparent 15%),
        radial-gradient(ellipse at 50% 45%, rgba(255,252,230,0.9) 0%, transparent 22%),
        radial-gradient(ellipse at 25% 75%, rgba(255,255,245,0.85) 0%, transparent 20%),
        radial-gradient(ellipse at 90% 65%, rgba(255,253,235,0.8) 0%, transparent 16%),
        /* Crinkle shadows - folds in the foil */
        radial-gradient(ellipse at 40% 30%, rgba(160,120,20,0.45) 0%, transparent 28%),
        radial-gradient(ellipse at 65% 55%, rgba(150,110,15,0.35) 0%, transparent 25%),
        radial-gradient(ellipse at 20% 50%, rgba(155,115,18,0.3) 0%, transparent 30%),
        /* Rich gold base with authentic color variation */
        linear-gradient(
            160deg,
            #c4941f 0%,
            #daa520 5%,
            #f0d55c 12%,
            #fef3a0 18%,
            #e5b82a 25%,
            #d4a012 32%,
            #f7e98e 40%,
            #cfb53b 48%,
            #f4e04d 55%,
            #c9922c 62%,
            #f0d55c 70%,
            #d4af37 78%,
            #e8c252 85%,
            #c4941f 92%,
            #daa520 100%
        );
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 220% 220%;
    clip-path: polygon(
        2% 8%, 8% 2%, 22% 6%, 38% 1%, 52% 4%, 68% 0%, 82% 5%, 94% 2%, 99% 18%,
        100% 35%, 97% 52%, 100% 68%, 96% 85%, 88% 96%, 72% 100%, 55% 97%,
        40% 100%, 25% 95%, 12% 100%, 4% 92%, 0% 78%, 2% 60%, 0% 42%, 3% 25%
    );
    box-shadow: 
        0 4px 16px rgba(150, 110, 20, 0.45),
        0 2px 6px rgba(120, 90, 15, 0.35),
        0 0 1px rgba(255, 250, 200, 0.8),
        inset 0 2px 4px rgba(255, 255, 250, 0.75),
        inset 2px 0 3px rgba(255, 250, 200, 0.5),
        inset -2px -2px 5px rgba(170, 130, 25, 0.35);
    filter: brightness(1.12) saturate(1.2) contrast(1.08);
    animation: 
        leafFallRealistic var(--fall-duration) cubic-bezier(0.35, 0.9, 0.4, 1) var(--delay) forwards,
        leafShimmer 0.6s ease-in-out var(--delay) infinite,
        leafGlint 3s ease-in-out var(--delay) infinite;
}

/* Medium flakes */
.gold-leaf.medium {
    width: 22px;
    height: 17px;
    background: 
        radial-gradient(ellipse at 20% 15%, rgba(255,255,248,0.95) 0%, transparent 22%),
        radial-gradient(ellipse at 75% 60%, rgba(255,253,235,0.9) 0%, transparent 18%),
        radial-gradient(ellipse at 45% 35%, rgba(155,115,20,0.4) 0%, transparent 30%),
        linear-gradient(
            145deg,
            #c9922c 0%,
            #f0d55c 15%,
            #d4a012 30%,
            #fef3a0 45%,
            #cfb53b 58%,
            #f4e04d 72%,
            #c9a227 85%,
            #e8c252 100%
        );
    background-size: 100% 100%, 100% 100%, 100% 100%, 190% 190%;
    clip-path: polygon(
        5% 5%, 20% 0%, 45% 4%, 72% 1%, 92% 15%, 100% 38%,
        96% 65%, 88% 92%, 65% 100%, 40% 94%, 15% 100%, 2% 80%, 0% 50%, 4% 22%
    );
    box-shadow: 
        0 3px 10px rgba(150, 110, 20, 0.4),
        0 0 1px rgba(255, 250, 200, 0.7),
        inset 0 1px 2px rgba(255, 255, 250, 0.65),
        inset -1px -1px 3px rgba(170, 130, 25, 0.3);
    filter: brightness(1.1) saturate(1.15);
    animation: 
        leafFallRealistic var(--fall-duration) cubic-bezier(0.35, 0.9, 0.4, 1) var(--delay) forwards,
        leafShimmer 0.8s ease-in-out var(--delay) infinite,
        leafGlint 3.5s ease-in-out var(--delay) infinite;
}

/* Small flakes - thin torn slivers */
.gold-leaf.small {
    width: 12px;
    height: 9px;
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(255,255,245,0.9) 0%, transparent 35%),
        radial-gradient(ellipse at 70% 70%, rgba(255,252,230,0.8) 0%, transparent 30%),
        linear-gradient(
            130deg,
            #c9922c 0%,
            #f7e98e 22%,
            #d4a012 45%,
            #fef3a0 65%,
            #cfb53b 82%,
            #c9a227 100%
        );
    background-size: 100% 100%, 100% 100%, 160% 160%;
    clip-path: polygon(
        3% 12%, 25% 0%, 60% 5%, 95% 20%, 100% 55%, 85% 95%, 50% 100%, 15% 88%, 0% 55%
    );
    box-shadow: 
        0 2px 6px rgba(150, 110, 20, 0.35),
        inset 0 1px 1px rgba(255, 255, 250, 0.6);
    filter: brightness(1.08) saturate(1.12);
    animation: 
        leafFallRealistic var(--fall-duration) cubic-bezier(0.35, 0.9, 0.4, 1) var(--delay) forwards,
        leafShimmer 1s ease-in-out var(--delay) infinite;
}

/* Tiny sparkle dust - glittering particles */
.gold-leaf.dust {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, 
        rgba(255,255,250,1) 0%, 
        rgba(255,250,180,0.95) 25%,
        rgba(247,233,142,0.85) 50%,
        rgba(212,160,18,0.6) 75%, 
        transparent 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 8px rgba(255, 250, 180, 0.8),
        0 0 16px rgba(247, 233, 142, 0.4),
        0 0 24px rgba(212, 175, 55, 0.2);
    animation: dustDrift var(--fall-duration) ease-in-out var(--delay) forwards;
}

/* Shimmer animation - light catching effect */
@keyframes leafShimmer {
    0%, 100% {
        filter: brightness(1.08) saturate(1.15);
    }
    50% {
        filter: brightness(1.35) saturate(1.25);
    }
}

/* Glint animation - occasional bright flash */
@keyframes leafGlint {
    0%, 85%, 100% {
        filter: brightness(1.1) saturate(1.15) contrast(1.05);
    }
    90% {
        filter: brightness(1.6) saturate(1.3) contrast(1.1);
    }
    95% {
        filter: brightness(1.2) saturate(1.2) contrast(1.05);
    }
}

/* Realistic falling animation with flutter and tumble */
@keyframes leafFallRealistic {
    0% {
        opacity: 0;
        transform: 
            translateY(var(--start-y)) 
            translateX(0)
            rotateX(var(--tilt-x))
            rotateY(0deg)
            rotateZ(var(--start-rotation))
            scale(0.2);
    }
    8% {
        opacity: var(--max-opacity);
        transform: 
            translateY(calc(var(--start-y) + 12px)) 
            translateX(calc(var(--drift-x) * 0.08))
            rotateX(calc(var(--tilt-x) + 25deg))
            rotateY(40deg)
            rotateZ(calc(var(--start-rotation) + 20deg))
            scale(1);
    }
    20% {
        transform: 
            translateY(calc(var(--start-y) + 40px)) 
            translateX(calc(var(--drift-x) * 0.22))
            rotateX(calc(var(--tilt-x) - 20deg))
            rotateY(-25deg)
            rotateZ(calc(var(--start-rotation) + 55deg))
            scale(1);
    }
    35% {
        transform: 
            translateY(calc(var(--start-y) + 70px)) 
            translateX(calc(var(--drift-x) * 0.38))
            rotateX(calc(var(--tilt-x) + 30deg))
            rotateY(50deg)
            rotateZ(calc(var(--start-rotation) + 95deg))
            scale(0.98);
    }
    50% {
        opacity: var(--max-opacity);
        transform: 
            translateY(calc(var(--start-y) + 100px)) 
            translateX(calc(var(--drift-x) * 0.55))
            rotateX(calc(var(--tilt-x) - 15deg))
            rotateY(-35deg)
            rotateZ(calc(var(--start-rotation) + 140deg))
            scale(0.96);
    }
    65% {
        transform: 
            translateY(calc(var(--end-y) - 60px)) 
            translateX(calc(var(--drift-x) * 0.72))
            rotateX(calc(var(--tilt-x) + 20deg))
            rotateY(30deg)
            rotateZ(calc(var(--end-rotation) - 45deg))
            scale(0.92);
    }
    80% {
        opacity: calc(var(--max-opacity) * 0.8);
        transform: 
            translateY(calc(var(--end-y) - 25px)) 
            translateX(calc(var(--drift-x) * 0.88))
            rotateX(calc(var(--tilt-x) - 10deg))
            rotateY(-20deg)
            rotateZ(calc(var(--end-rotation) - 15deg))
            scale(0.88);
    }
    100% {
        opacity: 0;
        transform: 
            translateY(var(--end-y)) 
            translateX(var(--drift-x))
            rotateX(var(--tilt-x))
            rotateY(15deg)
            rotateZ(var(--end-rotation))
            scale(0.75);
    }
}

@keyframes dustDrift {
    0% {
        opacity: 0;
        transform: translateY(var(--start-y)) translateX(0) scale(0);
    }
    12% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.6;
        transform: translateY(calc(var(--start-y) + 80px)) translateX(calc(var(--drift-x) * 0.5)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(var(--end-y)) translateX(var(--drift-x)) scale(0.2);
    }
}

/* Light ray effect */
.light-ray {
    position: absolute;
    top: -50%;
    width: 2px;
    height: 200%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(252, 246, 186, 0.1) 40%,
        rgba(252, 246, 186, 0.3) 50%,
        rgba(252, 246, 186, 0.1) 60%,
        transparent 100%
    );
    transform: rotate(var(--ray-angle));
    opacity: 0;
    animation: rayGlint 0.8s ease var(--ray-delay) forwards;
}

@keyframes rayGlint {
    0% { opacity: 0; transform: rotate(var(--ray-angle)) translateY(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(var(--ray-angle)) translateY(100%); }
}

/* Exit animations */
.loading-screen.loaded .loading-text {
    animation: textExit 0.8s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.loading-screen.loaded .loading-line {
    animation: lineExit 0.6s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.loading-screen.loaded .gold-leaf {
    animation: leafScatter 0.5s ease forwards !important;
}

.loading-screen.loaded::before {
    animation: glowFade 0.8s ease forwards;
}

@keyframes textExit {
    to { 
        opacity: 0; 
        transform: translateY(-30px) scale(1.05);
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)) blur(2px);
    }
}

@keyframes lineExit {
    to { width: 0; opacity: 0; }
}

@keyframes leafScatter {
    to { 
        opacity: 0; 
        transform: translateY(-50px) scale(0);
    }
}

@keyframes glowFade {
    to { opacity: 0; }
}

.loading-screen.loaded {
    animation: screenExit 1s cubic-bezier(0.7, 0, 0.3, 1) 0.5s forwards;
}

@keyframes screenExit {
    to { 
        opacity: 0; 
        visibility: hidden; 
        pointer-events: none; 
    }
}

/* ============================================
   BACKGROUND VIDEO
   ============================================ */
.background-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: grayscale(40%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(5, 5, 5, 0.6) 0%,
        rgba(5, 5, 5, 0.4) 50%,
        rgba(5, 5, 5, 0.7) 100%
    );
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 5vw;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-fast);
}

.main-nav.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5vw;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-color);
    position: relative;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--gold-color);
}

.nav-cart, .nav-account {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    background: var(--gold-color);
    color: var(--dark-color);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Brand Mark */
.brand-mark {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 100;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--light-color);
    z-index: 100;
    opacity: 0.6;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.brand-mark:hover {
    opacity: 1;
    color: var(--gold-color);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-line {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--light-color);
    margin: 6px 0;
    transition: var(--transition-fast);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 100;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-color);
}

.mobile-nav-item:hover {
    color: var(--gold-color);
}

/* ============================================
   MUSIC TOGGLE
   ============================================ */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--light-color);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.music-toggle:hover {
    background: var(--gold-color);
    color: var(--dark-color);
    border-color: var(--gold-color);
}

.music-toggle .music-icon {
    position: absolute;
    transition: opacity 0.3s ease;
}

.music-toggle .music-on { opacity: 0; }
.music-toggle .music-off { opacity: 1; }
.music-toggle.playing .music-on { opacity: 1; }
.music-toggle.playing .music-off { opacity: 0; }

.music-toggle.playing {
    animation: musicPulse 2s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 5vw;
    background: transparent;
    gap: 8vw;
}

.hero-content {
    text-align: left;
    z-index: 2;
    max-width: 500px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 100;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title .word {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) { animation-delay: 0.4s; }
.hero-title .word:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 200;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 0.75rem;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    padding: 1rem 2rem;
    font-size: 0.8rem;
}

/* Scroll Indicator */
.scroll-indicator-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-color);
    opacity: 0.6;
    transition: var(--transition-fast);
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator-arrow:hover {
    opacity: 1;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Circular Frame */
.hero-artwork {
    position: relative;
    z-index: 2;
}

.circular-frame {
    width: 350px;
    height: 350px;
    position: relative;
}

.frame-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 50%, #e8e8e8 100%);
    padding: 20px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.frame-outer::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(244,208,63,0.1), rgba(212,175,55,0.3)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.circular-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    transition: var(--transition-slow);
}

.circular-image:hover .image-content {
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
    transform: scale(1.02);
}

.gold-overlay, .silver-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.circular-image:hover .gold-overlay {
    opacity: 0.1;
    background: linear-gradient(135deg, transparent, rgba(212,175,55,0.2), transparent);
}

.scroll-indicator-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 5vh;
}

.section-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 100;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    padding: 10vh 5vw;
    background: rgba(10, 10, 10, 0.85);
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(30%);
}

.portfolio-item:hover .portfolio-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.portfolio-actions {
    margin-top: 1rem;
}

.btn-enquire {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    color: var(--dark-color);
    border-radius: 5px;
    transition: var(--transition-fast);
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold-gradient);
    color: var(--dark-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 10vh 5vw;
    background: rgba(10, 10, 10, 0.9);
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.about-text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

.artist-quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold-color);
    border-left: 2px solid var(--gold-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.about-image {
    flex: 0 0 400px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-image .image-caption {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 300;
    font-style: italic;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
}

/* ============================================
   GALLERY SHOWCASE
   ============================================ */
.gallery-showcase {
    padding: 10vh 5vw;
    background: rgba(5, 5, 5, 0.95);
    position: relative;
    z-index: 1;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--light-color);
    margin-bottom: 0.25rem;
}

.gallery-caption span {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gold-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Gold border on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    border-color: rgba(212, 175, 55, 0.5);
}

/* ============================================
   FEATURED STRIP - Horizontal Scroll
   ============================================ */
.featured-strip {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.95);
    overflow: hidden;
    position: relative;
}

.featured-strip::before,
.featured-strip::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.featured-strip::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, transparent 100%);
}

.featured-strip::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,1) 0%, transparent 100%);
}

.featured-scroll {
    display: flex;
    gap: 1.5rem;
    animation: scrollStrip 40s linear infinite;
    width: max-content;
}

.featured-scroll:hover {
    animation-play-state: paused;
}

.featured-item {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
}

.featured-item:hover img {
    filter: brightness(1.1) saturate(1.1);
}

@keyframes scrollStrip {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   EXHIBITIONS SECTION
   ============================================ */
.exhibitions-section {
    padding: 10vh 5vw;
    background: rgba(8, 8, 8, 0.88);
    position: relative;
    z-index: 1;
}

/* Exhibition Feature - Large Hero Style */
.exhibition-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    align-items: center;
}

.exhibition-feature-image {
    border-radius: 12px;
    overflow: hidden;
}

.exhibition-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.exhibition-feature:hover .exhibition-feature-image img {
    transform: scale(1.03);
}

.exhibition-feature-content {
    padding: 1rem;
}

.exhibition-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--darker-color);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.exhibition-feature-content .exhibition-year {
    display: block;
    color: var(--gold-color);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.exhibition-feature-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.exhibition-feature-content p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.7;
}

.exhibition-featured {
    max-width: 1000px;
    margin: 0 auto 4rem;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.exhibition-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.exhibition-featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.exhibition-featured-info .exhibition-year {
    color: var(--gold-color);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
}

.exhibition-featured-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 200;
    margin: 0.5rem 0;
}

.exhibition-featured-info p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.exhibition-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.exhibition-item:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
}

.exhibition-year {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold-color);
    display: block;
    margin-bottom: 0.5rem;
}

.exhibition-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
}

.exhibition-item p {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* ============================================
   SHOP SECTION
   ============================================ */
.shop-section {
    padding: 10vh 5vw;
    background: rgba(10, 10, 10, 0.9);
    position: relative;
    z-index: 1;
}

/* Filter Tabs */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.shop-filter {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--secondary-color);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.shop-filter:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.shop-filter.active {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--dark-color);
}

/* Full Products Grid */
.shop-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.shop-item.hidden {
    display: none;
}

.shop-item:hover {
    border-color: var(--gold-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.shop-item-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.shop-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.shop-item:hover .shop-item-image img {
    transform: scale(1.08);
}

/* Hover Overlay */
.shop-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.view-details {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gold-color);
    color: var(--gold-color);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 25px;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.shop-item:hover .view-details {
    transform: translateY(0);
}

.shop-item-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-color);
    color: var(--dark-color);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
}

.shop-item-badge.sale {
    background: #e74c3c;
    color: white;
}

.shop-item-badge.sold-out {
    background: rgba(80, 80, 80, 0.95);
    color: rgba(255, 255, 255, 0.8);
}

.shop-item-info {
    padding: 1.25rem;
}

.shop-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.shop-item-desc {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.shop-item-price {
    font-size: 1.1rem;
    color: var(--gold-color);
    font-weight: 400;
}

.price-old {
    text-decoration: line-through;
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 0.95rem;
}

.price-new {
    color: var(--gold-color);
}

.shop-item-cart {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--light-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.shop-item-cart svg {
    width: 16px;
    height: 16px;
}

.shop-item-cart:hover {
    background: var(--gold-color);
    color: var(--dark-color);
}

.shop-item-cart.sold-out {
    color: var(--secondary-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.shop-item-cart.sold-out:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Shop Empty State */
.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.shop-empty p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 200;
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.shop-empty-sub {
    font-size: 0.9rem !important;
    color: var(--secondary-color) !important;
}

/* Load More Button */
.shop-load-more {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   ARTIST STATEMENT
   ============================================ */
.artist-statement {
    padding: 12vh 5vw;
    background: rgba(12, 12, 12, 0.9);
    text-align: center;
    position: relative;
    z-index: 1;
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
}

.statement-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 200;
    font-style: italic;
    line-height: 1.8;
    color: var(--light-color);
    margin-bottom: 2rem;
}

.statement-attribution {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold-color);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 10vh 5vw;
    background: rgba(10, 10, 10, 0.88);
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.service-item:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 100;
    color: var(--gold-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
    padding: 10vh 5vw;
    text-align: center;
    background: rgba(14, 12, 10, 0.9);
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 5rem 5vw 2rem;
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.footer-location {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.footer-links h4,
.footer-info h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
}

.footer-links a,
.footer-info a {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-info a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--secondary-color);
}

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

/* ============================================
   CATEGORY / PRODUCT LISTING PAGE
   ============================================ */
.category-section {
    padding-top: 120px;
    padding-bottom: 5rem;
    min-height: 100vh;
    background: rgba(10, 10, 10, 0.9);
    position: relative;
    z-index: 1;
}

.category-header {
    position: relative;
    margin-bottom: 3rem;
}

.category-banner {
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 5vw 2rem;
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
}

.category-title-wrap {
    text-align: center;
    padding: 0 5vw;
}

.category-title-wrap h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 100;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.category-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 5vw;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

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

.breadcrumb-separator {
    opacity: 0.3;
}

.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5vw;
    margin-bottom: 2rem;
}

.product-count {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-wrap label {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.sort-wrap select {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: var(--font-body);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.product-card:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-color);
    color: var(--dark-color);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    padding: 0.75rem 1.5rem;
    background: var(--gold-gradient);
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 25px;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    color: var(--gold-color);
}

.product-rating {
    margin-top: 0.5rem;
}

.star {
    color: var(--secondary-color);
}

.star.filled {
    color: var(--gold-color);
}

.product-actions {
    display: flex;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-add-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--light-color);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.btn-wishlist {
    padding: 1rem;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-wishlist:hover {
    color: var(--gold-color);
}

.no-products {
    text-align: center;
    padding: 5rem 2rem;
}

.no-products p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    padding: 3rem 5vw;
}

/* ============================================
   ACCOUNT PAGES
   ============================================ */
#account-login,
#account-register,
#account-account,
#account-order,
#account-wishlist,
#account-edit,
#account-password,
#account-address,
#account-forgotten,
#checkout-cart,
#checkout-checkout,
#information-contact,
#information-information,
#product-product,
#product-search {
    background: rgba(8, 8, 8, 0.92);
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

#account-login #content,
#account-register #content,
#account-account #content,
#account-order #content,
#checkout-checkout #content,
#information-contact #content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5vw;
}

#account-login h1,
#account-register h1,
#account-account h1,
#checkout-checkout h1,
#information-contact h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 100;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-color);
    text-align: center;
    margin-bottom: 3rem;
}

#account-login #content > .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

#account-login #content > .row > div {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.6), rgba(15, 15, 15, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

#account-login #content > .row > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
    border-radius: 20px 20px 0 0;
}

.card, .well, .panel {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.7), rgba(12, 12, 12, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.form-group, .mb-3 {
    margin-bottom: 1.75rem;
}

.form-group label, .form-label, .control-label, label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 1.1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--light-color);
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--dark-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-secondary, .btn-default {
    background: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover, .btn-default:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

#account-account .list-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    list-style: none;
    padding: 0;
}

.list-group-item {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.7), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 14px;
    transition: var(--transition-fast);
}

.list-group-item:hover {
    border-color: var(--gold-color);
    transform: translateY(-5px);
}

.list-group-item a {
    display: block;
    padding: 1.5rem;
    color: var(--light-color);
}

.list-group-item a:hover {
    color: var(--gold-color);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.table thead th {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-color);
    text-align: left;
    padding: 1.25rem;
    background: rgba(212, 175, 55, 0.08);
}

.table tbody td {
    padding: 1.25rem;
    color: var(--light-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.alert {
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(50, 150, 80, 0.15);
    border: 1px solid rgba(50, 150, 80, 0.3);
    color: #8fd4a8;
}

.alert-danger {
    background: rgba(180, 50, 50, 0.15);
    border: 1px solid rgba(180, 50, 50, 0.3);
    color: #e89999;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--light-color);
    transition: var(--transition-fast);
}

.pagination li a:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.pagination li.active span {
    background: var(--gold-gradient);
    color: var(--dark-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
        padding-top: 15vh;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .circular-frame {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .brand-mark {
        position: fixed;
        left: 50%;
        top: 1.5rem;
        transform: translateX(-50%) rotate(0);
        font-size: 0.7rem;
    }
    
    .hero-title .word {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .circular-frame {
        width: 250px;
        height: 250px;
    }
    
    .frame-outer {
        padding: 15px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .gallery-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
        padding: 1.5rem 1rem 1rem;
    }
    
    .shop-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .shop-filters {
        gap: 0.5rem;
    }
    
    .shop-filter {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .exhibitions-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .exhibition-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .exhibition-feature-content h3 {
        font-size: 1.5rem;
    }
    
    .exhibition-featured {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    #account-login #content > .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .music-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title .word {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
    
    .circular-frame {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .exhibitions-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
    }
    
    .loading-ring {
        width: 140px;
        height: 140px;
    }
    
    .loading-initials {
        font-size: 1.6rem;
    }
    
    .loading-name {
        font-size: 0.5rem;
        letter-spacing: 0.25em;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-screen {
        display: none;
    }
}

/* Custom Cursor */
.cursor, .cursor-follower {
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--gold-color);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease;
    }
    
    .cursor-follower {
        display: block;
        position: fixed;
        width: 30px;
        height: 30px;
        border: 1px solid rgba(212, 175, 55, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
    }
}

/* Particle Background */
.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
