﻿/* ==========================================================================
   LUXURY EXTENDED - Ultra-Modern Jewelry Shop Design
   ========================================================================== */

/* ========== THEME TOKENS - DARK MODE (Default) ========== */
:root {
    /* === Core Colors === */
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-light-gray: #3a3a3a;
    --color-gold: #d4af37;
    --color-gold-light: #f4e5b8;
    --color-gold-dark: #b8941f;
    --color-white: #ffffff;
    --color-white-soft: rgba(255, 255, 255, 0.9);
    
    /* === Text Colors === */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-inverse: #0a0a0a;
    --text-on-gold: #0a0a0a;
    
    /* === Surface Colors === */
    --surface-bg: #0a0a0a;
    --surface-card: rgba(26, 26, 26, 0.95);
    --surface-card-solid: #1a1a1a;
    --surface-elevated: #2a2a2a;
    
    /* === Overlay Colors (for images/videos) === */
    --overlay-hero: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.7) 100%);
    --overlay-strong: rgba(10, 10, 10, 0.85);
    --overlay-medium: rgba(10, 10, 10, 0.6);
    --overlay-light: rgba(10, 10, 10, 0.3);
    --overlay-card: rgba(26, 26, 26, 0.8);
    
    /* === Border Colors === */
    --border-default: rgba(212, 175, 55, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(212, 175, 55, 0.4);
    
    /* === Interactive States === */
    --hover-bg: rgba(212, 175, 55, 0.1);
    --active-bg: rgba(212, 175, 55, 0.2);
    --focus-ring: rgba(212, 175, 55, 0.4);
    
    /* === Shadows === */
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 20px 60px rgba(212, 175, 55, 0.25);
    --shadow-elevated: 0 25px 50px rgba(0, 0, 0, 0.5);
    
    /* === Navigation === */
    --nav-bg: rgba(10, 10, 10, 0.9);
    --nav-bg-scrolled: rgba(10, 10, 10, 0.95);
    
    /* === Typography === */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    
    /* === Transitions === */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-card: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

/* ========== LIGHT MODE THEME TOKENS ========== */
[data-theme="light"] {
    /* === Core Colors === */
    --color-black: #ffffff;
    --color-dark-gray: #f8f9fa;
    --color-gray: #e9ecef;
    --color-light-gray: #dee2e6;
    --color-white: #1a1a1a;
    --color-white-soft: rgba(26, 26, 26, 0.9);
    
    /* === Text Colors === */
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-inverse: #ffffff;
    --text-on-gold: #1a1a1a;
    
    /* === Surface Colors === */
    --surface-bg: #f8f9fa;
    --surface-card: #ffffff;
    --surface-card-solid: #ffffff;
    --surface-elevated: #ffffff;
    
    /* === Overlay Colors (LIGHT MODE - softer overlays) === */
    --overlay-hero: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 100%);
    --overlay-strong: rgba(255, 255, 255, 0.75);
    --overlay-medium: rgba(255, 255, 255, 0.5);
    --overlay-light: rgba(255, 255, 255, 0.2);
    --overlay-card: rgba(255, 255, 255, 0.95);
    
    /* === Border Colors === */
    --border-default: rgba(212, 175, 55, 0.25);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(212, 175, 55, 0.5);
    
    /* === Interactive States === */
    --hover-bg: rgba(212, 175, 55, 0.08);
    --active-bg: rgba(212, 175, 55, 0.15);
    --focus-ring: rgba(212, 175, 55, 0.5);
    
    /* === Shadows === */
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 15px 40px rgba(212, 175, 55, 0.2);
    --shadow-elevated: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* === Navigation === */
    --nav-bg: rgba(255, 255, 255, 0.9);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.98);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--surface-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ========== GOLD PARTICLES ========== */
.gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s infinite ease-in-out;
    box-shadow: 0 0 15px var(--color-gold);
}

.particle:nth-child(1) { left: 5%; top: 10%; animation-duration: 18s; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; top: 70%; animation-duration: 22s; animation-delay: 2s; }
.particle:nth-child(3) { left: 85%; top: 30%; animation-duration: 19s; animation-delay: 1s; }
.particle:nth-child(4) { left: 70%; top: 80%; animation-duration: 21s; animation-delay: 3s; }
.particle:nth-child(5) { left: 40%; top: 50%; animation-duration: 20s; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 90%; top: 60%; animation-duration: 23s; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 25%; top: 90%; animation-duration: 17s; animation-delay: 0.5s; }
.particle:nth-child(8) { left: 60%; top: 20%; animation-duration: 24s; animation-delay: 3.5s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    25% { transform: translate(20px, -30px) rotate(90deg); opacity: 0.6; }
    50% { transform: translate(-20px, 0) rotate(180deg); opacity: 0.3; }
    75% { transform: translate(20px, -30px) rotate(270deg); opacity: 0.7; }
}

/* ========== NAVIGATION ========== */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-default);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.luxury-nav.scrolled {
    padding: 15px 0;
    background: var(--nav-bg-scrolled);
    box-shadow: var(--shadow-card);
}

.luxury-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.diamond-icon {
    font-size: 26px;
    color: var(--color-gold);
    animation: diamondRotate 10s linear infinite;
    filter: drop-shadow(0 0 15px var(--color-gold));
}

@keyframes diamondRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

/* ========== HERO SECTION ========== */
/* ========== HERO SECTION WITH VIDEO ========== */
.hero-luxury {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.7;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-hero);
    z-index: 2;
}

/* Video Control Button */
.video-control-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: var(--color-gold);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.video-control-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.video-control-btn .play-icon {
    font-size: 16px;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: heroParticleMove 15s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.hero-particle:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
    animation-duration: 18s;
}

@keyframes heroParticleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    animation: fadeInUp 1.5s ease;
}

/* Hero Product Image - Fade In Animation */
.hero-product-image {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    animation: productFadeIn 2s ease 0.5s forwards;
}

.hero-product-image .product-showcase {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 15px 50px rgba(212, 175, 55, 0.4));
    animation: floatProduct 6s ease-in-out infinite;
}

@keyframes productFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0px);
        filter: drop-shadow(0 15px 50px rgba(212, 175, 55, 0.4));
    }
    50% {
        transform: translateY(-20px);
        filter: drop-shadow(0 25px 60px rgba(212, 175, 55, 0.6));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shine-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 900;
    letter-spacing: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 30px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 45px rgba(212, 175, 55, 0.9));
    }
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: shineEffect 4s infinite;
}

@keyframes shineEffect {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-description {
    margin: 30px 0;
}

.hero-description p,
.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-diamonds {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
}

.hero-diamond {
    font-size: 14px;
    color: var(--color-gold);
    animation: diamondTwinkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--color-gold));
}

.hero-diamond:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-diamond:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes diamondTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 20px 55px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.cta-button:hover .button-glow {
    transform: translate(-50%, -50%) scale(2.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-icon {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 8px 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--border-default);
    border-radius: 25px;
    margin-bottom: 25px;
    background: var(--hover-bg);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* ========== NEW COLLECTION SECTION ========== */
.new-collection-section {
    padding: 120px 0;
    background: var(--surface-bg);
    position: relative;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.collection-card {
    position: relative;
    background: var(--surface-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s ease-out,
                border-color 0.4s ease;
    cursor: pointer;
    will-change: transform;
}

.collection-card:hover {
    transform: scale(1.025);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card-hover);
}

.collection-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface-elevated);
}

.collection-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.collection-card:hover img {
    transform: scale(1.04);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--color-gold);
    opacity: 0.3;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.view-btn {
    padding: 14px 35px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-gold);
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.view-btn:hover {
    background: var(--color-gold-light);
    transform: scale(1.08);
}

.collection-info {
    padding: 30px;
}

.collection-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 12px;
}

.collection-info h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.3;
}

.collection-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.collection-price .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-gold);
}

.collection-price .old-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ========== BESTSELLERS SLIDER ========== */
.bestsellers-section {
    padding: 120px 0;
    background: var(--surface-bg);
    position: relative;
    overflow: hidden;
}

.bestsellers-slider-wrapper {
    position: relative;
    margin: 0 60px;
}

.bestsellers-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.bestsellers-slider::-webkit-scrollbar {
    display: none;
}

.bestseller-card {
    min-width: 320px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.bestseller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-gold);
    border-radius: 20px;
    z-index: 2;
}

.bestseller-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.bestseller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bestseller-card:hover .bestseller-image img {
    transform: scale(1.1);
}

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 70px;
    color: var(--color-gold);
    opacity: 0.2;
}

.bestseller-content {
    padding: 25px;
}

.bestseller-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.bestseller-content h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bestseller-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bestseller-price .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
}

.bestseller-price .old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-black);
    background: var(--color-gold);
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.add-to-cart-btn:hover {
    background: var(--color-gold-light);
    transform: scale(1.03);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 120px 0;
    background: var(--surface-card-solid);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-tag {
    margin-bottom: 20px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--text-on-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.about-features strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-features p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-image .glass-box {
    background: var(--surface-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.glass-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: glassGlow 10s ease-in-out infinite;
}

@keyframes glassGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.image-placeholder {
    text-align: center;
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 80px;
    color: var(--color-gold);
    opacity: 0.4;
    display: block;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 16px;
    color: var(--text-muted);
}

/* ========== PROCESS TIMELINE ========== */
.process-section {
    padding: 120px 0;
    background: var(--surface-bg);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--text-on-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--surface-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-default);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease-out,
                border-color 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.timeline-item:hover .timeline-content {
    border-color: var(--border-strong);
    transform: translateZ(0) scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 120px 0;
    background: var(--surface-card-solid);
    overflow-x: hidden;
    overflow-y: visible;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 35px;
    width: 100%;
}

.service-card {
    background: var(--surface-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-default);
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--hover-bg), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 25px;
    display: inline-block;
    filter: grayscale(0.3);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    filter: grayscale(0);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Video Preview */
.service-video-preview {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    background: var(--color-black);
}

.service-video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-video-preview video {
    transform: scale(1.1);
}

.service-video-overlay {
    display: none;
}

.service-card:hover .service-video-overlay {
    display: none;
}

.service-icon-small {
    display: none;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
    background: none;
    border: none;
    cursor: pointer;
}

.service-link:hover {
    color: var(--color-gold-light);
    letter-spacing: 2px;
}

/* ========== SHOWROOM GALLERY ========== */
.showroom-gallery {
    width: 100%;
}

.showroom-video-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--color-black);
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
}

.showroom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.showroom-overlay h3 {
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: 28px;
    margin: 0;
}

.showroom-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.showroom-thumb {
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.showroom-thumb.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.showroom-thumb:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.showroom-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.showroom-thumb:hover::after,
.showroom-thumb.active::after {
    background: rgba(0,0,0,0);
}

/* ========== GUARANTEES SECTION ========== */
/* ========== PREMIUM GUARANTEES SECTION ========== */
.guarantees-section-premium {
    padding: 100px 0;
    background: var(--surface-bg);
    position: relative;
}

.guarantees-header {
    text-align: center;
    margin-bottom: 60px;
}

.guarantees-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.guarantees-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.guarantees-premium-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--surface-card);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.guarantees-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05), transparent 50%);
    pointer-events: none;
}

.guarantees-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.guarantee-premium-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-smooth);
    border-radius: 12px;
    position: relative;
}

.guarantee-premium-item:hover {
    transform: translateY(-8px);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.guarantee-premium-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.guarantee-premium-item:hover .guarantee-premium-icon {
    transform: scale(1.1);
    color: var(--color-gold-light);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.4));
}

.guarantee-premium-icon svg {
    width: 48px;
    height: 48px;
}

.guarantee-premium-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.guarantee-premium-item:hover .guarantee-premium-title {
    color: var(--color-gold);
}

.guarantee-premium-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .guarantees-section-premium {
        padding: 70px 0;
    }
    
    .guarantees-premium-card {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .guarantees-premium-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .guarantee-premium-item {
        padding: 25px 15px;
    }
    
    .guarantees-header {
        margin-bottom: 45px;
    }
}

/* ========== SHOWROOM SECTION ========== */
.showroom-section {
    padding: 120px 0;
    background: var(--surface-bg);
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.showroom-info .section-tag {
    margin-bottom: 20px;
}

.showroom-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.showroom-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.showroom-details {
    margin-bottom: 35px;
}

.detail-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--surface-card);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
}

.detail-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.showroom-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-gold);
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.showroom-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Gallery Showroom */
.showroom-gallery {
    background: var(--surface-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    cursor: pointer;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img,
.gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover img,
.gallery-slide:hover video {
    transform: scale(1.05);
}

.gallery-slide video {
    background: #000;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: var(--color-black);
    border: none;
    width: 45px;
    height: 45px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.prev-gallery {
    left: 15px;
}

.next-gallery {
    right: 15px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-dot.active {
    background: var(--color-gold);
    width: 30px;
    border-radius: 5px;
}

.gallery-dot:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img,
.lightbox-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-content video {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--color-black);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.lightbox-close:hover {
    background: var(--color-gold);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: var(--color-black);
    border: none;
    width: 55px;
    height: 55px;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition-smooth);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn:hover {
    background: var(--color-gold);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Detail Item 3D Icons */
.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--surface-card);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.detail-item:hover {
    background: var(--surface-elevated);
    transform: translateX(5px);
    box-shadow: -3px 0 15px rgba(212, 175, 55, 0.2);
}

.detail-icon-3d {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    filter: drop-shadow(2px 2px 6px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
}

.detail-item:hover .detail-icon-3d {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(3px 3px 10px rgba(212, 175, 55, 0.5));
}

.detail-icon-3d svg {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.detail-item:hover .detail-icon-3d svg {
    animation: iconGlow 1s ease infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; filter: brightness(1.2); }
}

.detail-content {
    flex: 1;
}

.detail-content strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.detail-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.detail-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.detail-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.detail-link:hover {
    color: var(--color-gold);
}

.detail-link:hover::after {
    width: 100%;
}

/* ========== MOMENTS SECTION (Momentet që Krijojmë) - Premium Clean ========== */
.moments-section {
    padding: 120px 0;
    background: var(--surface-bg);
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.moment-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.moment-image {
    position: absolute;
    inset: 0;
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                filter 0.5s ease;
}

.moment-card:hover .moment-image img {
    transform: scale(1.04);
    filter: brightness(1.05) contrast(1.02);
}

/* Subtle gradient overlay - only at bottom for text readability */
.moment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.25) 35%,
        transparent 60%
    );
    pointer-events: none;
}

.moment-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    z-index: 2;
}

.moment-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.moment-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.4s ease;
}

.moment-card:hover .moment-content h3 {
    transform: translateY(-3px);
}

.moment-card:hover .moment-content h3::after {
    width: 100%;
}

.moment-content p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Hide icon - clean design */
.moment-icon {
    display: none;
}

/* Responsive Moments Grid */
@media (max-width: 1024px) {
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .moment-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .moments-section {
        padding: 80px 0;
    }
    
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .moment-card {
        aspect-ratio: 3/4;
    }
    
    .moment-content {
        padding: 20px 16px;
    }
    
    .moment-content h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .moment-content p {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
    }
}

@media (max-width: 480px) {
    .moments-grid {
        gap: 12px;
    }
    
    .moment-content {
        padding: 16px 12px;
    }
    
    .moment-content h3 {
        font-size: 15px;
    }
    
    .moment-content p {
        font-size: 10px;
    }
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
    padding: 120px 0;
    background: var(--surface-bg);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.instagram-item {
    aspect-ratio: 1;
    background: var(--surface-card);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.instagram-item:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.insta-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    opacity: 0.3;
    background: var(--surface-elevated);
}

.instagram-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: 30px;
    transition: var(--transition-smooth);
    text-align: center;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 120px 0;
    background: var(--surface-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 28px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
    padding: 120px 0;
    background: var(--surface-bg);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    text-decoration: none;
    min-width: 240px;
}

.cta-btn.primary {
    color: var(--color-black);
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.cta-btn.primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-3d {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
    transition: var(--transition-smooth);
}

.cta-btn:hover .btn-icon-3d {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.6));
}

.btn-icon-3d svg {
    transition: var(--transition-smooth);
}

.cta-btn:hover .btn-icon-3d svg {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-text strong {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-text small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* Fshi stilet e vjetra */
.contact-info-grid {
    display: none;
}

.contact-info-item {
    display: none;
}

.contact-icon {
    display: none;
}

/* ========== FOOTER ========== */
.luxury-footer {
    padding: 80px 0 30px;
    background: var(--surface-bg);
    border-top: 1px solid var(--border-default);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-default);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .about-content,
    .showroom-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    section {
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: 5px;
    }
    
    .hero-product-image .product-showcase {
        max-width: 280px;
    }
    
    .hero-description p,
    .hero-subtitle {
        font-size: 14px;
    }
    
    .video-control-btn {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .collection-grid,
    .services-grid {
        grid-template-columns: 1fr;
        overflow: visible;
    }
    
    .services-section {
        overflow-x: hidden;
        overflow-y: visible;
        max-height: none;
    }
    
    .services-section .container {
        overflow: visible;
        max-height: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .btn-text {
        align-items: center;
        text-align: center;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========== SERVICE VIDEO MODAL ========== */
.service-video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.service-video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-video-modal-content {
    background: var(--surface-card);
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
    cursor: pointer;
}

.service-modal-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: rotate(90deg);
}

.service-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    max-height: 80vh;
}

/* Left Side: Video */
.service-modal-video {
    background: var(--surface-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 80vh;
}

.service-modal-video video {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: cover;
    object-position: center;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--surface-elevated);
    z-index: 1;
}

.video-placeholder.hidden {
    display: none;
}

.service-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
}

.video-placeholder p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Right Side: Content */
.service-modal-info {
    padding: 60px 40px 40px;
    overflow-y: auto;
    max-height: 80vh;
    flex: 1;
    background: var(--surface-card);
}

.service-modal-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}

.service-modal-title {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-align: center;
}

.service-modal-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-modal-description p {
    margin-bottom: 15px;
}

.service-modal-details {
    background: var(--surface-elevated);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-default);
    margin-bottom: 30px;
}

.service-modal-details h4 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.service-modal-details ul {
    list-style: none;
    padding-left: 0;
}

.service-modal-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-modal-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.service-modal-details p {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-default);
    color: var(--text-muted);
    font-size: 14px;
}

.service-modal-details strong {
    color: var(--color-gold);
}

.service-modal-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-primary-modal {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.btn-primary-modal:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Responsive Service Modal */
@media (max-width: 992px) {
    .service-modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }
    
    .service-modal-video {
        min-height: 300px;
        max-height: 50vh;
    }
    
    .service-modal-video video {
        object-fit: contain;
    }
    
    .service-modal-info {
        max-height: 50vh;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .service-video-modal-content {
        margin: 10px;
        border-radius: 15px;
        max-height: 95vh;
    }
    
    .service-modal-info {
        padding: 40px 20px 20px;
        max-height: 60vh;
    }
    
    .service-modal-title {
        font-size: 24px;
    }
    
    .service-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* ========== CONTACT INFO MODAL ========== */
.contact-info-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.contact-info-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-info-modal-content {
    background: var(--surface-card);
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
    cursor: pointer;
    border: none;
}

.contact-modal-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: rotate(90deg);
}

.contact-info-body {
    padding: 40px;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-default);
}

.contact-info-header h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--surface-elevated);
    border-radius: 10px;
    border: 1px solid var(--border-default);
    transition: var(--transition-smooth);
}

.contact-info-item:hover {
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.contact-info-icon {
    font-size: 32px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.contact-icon-3d {
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    filter: drop-shadow(2px 2px 6px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-icon-3d {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(3px 3px 10px rgba(212, 175, 55, 0.5));
}

.contact-icon-3d svg {
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-icon-3d svg {
    animation: iconGlow 1s ease infinite;
}

.contact-info-details {
    flex: 1;
}

.contact-info-details h4 {
    color: var(--color-gold);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-details a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.contact-info-details a:hover {
    color: var(--color-gold);
    transform: translateX(3px);
}

.contact-info-details p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 14px !important;
    color: var(--color-gold) !important;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-default);
}

.contact-social h4 {
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-default);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.social-link-3d {
    background: var(--surface-card);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-card);
}

.social-link:hover {
    color: var(--color-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-card-hover);
}

.social-link-3d:hover {
    border-color: var(--color-gold);
}

.social-icon-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
    transition: var(--transition-smooth);
}

.social-link:hover .social-icon-3d {
    transform: scale(1.15) rotateY(10deg);
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.6));
}

.social-icon-3d svg {
    transition: var(--transition-smooth);
}

.social-link:hover .social-icon-3d svg {
    animation: socialPulse 0.6s ease;
}

@keyframes socialPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Contact Modal */
@media (max-width: 768px) {
    .contact-info-modal-content {
        margin: 10px;
        max-width: 100%;
    }
    
    .contact-info-body {
        padding: 30px 20px;
    }
    
    .contact-info-header h3 {
        font-size: 24px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }
    
    .contact-social-links {
        flex-direction: column;
    }
    
.social-link {
    justify-content: center;
}
}

/* ========== RESPONSIVE: SERVICE VIDEOS & SHOWROOM ========== */
@media (max-width: 992px) {
    .service-video-preview {
        height: 150px;
    }
    
    .showroom-video-container {
        height: 400px;
    }
    
    .showroom-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .showroom-thumb {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .service-video-preview {
        height: 200px;
    }
    
    .service-icon-small {
        font-size: 36px;
    }
    
    .showroom-video-container {
        height: 300px;
        border-radius: 15px;
    }
    
    .showroom-overlay h3 {
        font-size: 20px;
    }
    
    .showroom-thumbnails {
        gap: 8px;
    }
    
    .showroom-thumb {
        height: 80px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .service-video-preview {
        height: 180px;
    }
    
    .showroom-video-container {
        height: 250px;
    }
    
    .showroom-thumb {
        height: 70px;
    }
}

/* ==========================================================================
   MINIMAL LUX OVERRIDES
   Këto stile thjeshtojnë dizajnin ekzistues duke e bërë më minimalist & luksoz
   ========================================================================== */

/* Ngjyrë ari pak më e butë dhe glow më i ulët */
:root {
    --color-gold: #c9a548;
    --color-gold-light: #e9d7a2;
}

/* Hiq grimcat dekorative për sfond më të pastër */
.gold-particles,
.hero-particles {
    display: none;
}

/* Navigimi më i qetë, pa shumë hije */
.luxury-nav {
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

/* Hero më minimal – më pak animacione dhe glow */
.hero-title {
    letter-spacing: 6px;
    text-shadow: none;
    animation: none;
}

.hero-title::before {
    animation: none;
}

.hero-description p,
.hero-subtitle {
    text-shadow: none;
}

/* Butoni kryesor: glow më i ulët dhe hover më i butë */
.cta-button {
    box-shadow: 0 8px 20px rgba(201, 165, 72, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 165, 72, 0.35);
}

.button-glow {
    display: none;
}

/* Karta produktesh dhe shërbimesh më “flat” dhe më të pastra */
.bestseller-card,
.collection-card,
.service-card {
    box-shadow: var(--shadow-card);
    border-color: var(--border-default);
    background: var(--surface-card);
    transition: var(--transition-card);
    will-change: transform;
}

.bestseller-card:hover,
.collection-card:hover,
.service-card:hover {
    transform: scale(1.025);
    box-shadow: var(--shadow-card-hover);
}

/* Titujt & tekstet pa glow – lexueshmëri më e mirë dhe pamje më minimale */
.section-title,
.about-description {
    text-shadow: none;
}

/* Pak më shumë hapësirë e barabartë mes seksioneve kryesore */
.new-collection-section,
.bestsellers-section,
.about-section,
.process-section,
.services-section,
.guarantees-section,
.showroom-section,
.testimonials-section,
.instagram-section,
.final-cta-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* ========== BRAND STORY VIDEO SECTION ========== */
.brand-story-video-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: var(--color-black);
    overflow: hidden;
}

.brand-story-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 70vh;
}

.brand-story-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.75;
}

.brand-story-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.5), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(0,0,0,0.65), rgba(0,0,0,0.75));
}

.brand-story-video-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: left;
    color: var(--color-white);
}

.brand-story-video-content .section-tag {
    background: rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.8);
}

.brand-story-video-content .section-title {
    text-align: left;
}

.brand-story-video-content .section-subtitle {
    max-width: 600px;
    margin-bottom: 30px;
}

.brand-story-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-story-badges .badge-item {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 999px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-white-soft);
}

/* ========== BRAND EXPERIENCE SECTION (IMAGE + TEXT) ========== */
.brand-experience-section {
    background: var(--color-dark-gray);
    position: relative;
    height: 350vh; /* seksioni është më i gjatë, që të kemi scroll për animacion si te Apple */
}

.brand-experience-inner {
    position: sticky;
    top: 120px;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
}

.brand-experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.brand-experience-image {
    perspective: 1200px;
}

.brand-experience-tilt {
    border-radius: 24px;
    overflow: hidden;
    transform-origin: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: radial-gradient(circle at 10% 0%, rgba(212,175,55,0.15), transparent 50%),
                radial-gradient(circle at 90% 100%, rgba(212,175,55,0.15), transparent 50%),
                linear-gradient(135deg, #111, #222);
}

.brand-experience-photo {
    width: 100%;
    padding-top: 70%;
    position: relative;
    overflow: visible;
    background: transparent;
}

.brand-experience-photo .unique-product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    max-height: 120%;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Animacion kur imazhi hyn në viewport */
.brand-experience-image.slide-right.aos-animate .unique-product-image {
    animation: productSlideInGlow 1.2s ease forwards;
}

@keyframes productSlideInGlow {
    0% {
        opacity: 0;
        transform: translate(-90%, -50%) scale(0.8);
        filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.2));
    }
    50% {
        filter: drop-shadow(0 25px 70px rgba(212, 175, 55, 0.7));
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.5));
    }
}

/* Efekt glow kur shkon mbi imazh me maus */
.brand-experience-tilt:hover .unique-product-image {
    filter: drop-shadow(0 30px 80px rgba(212, 175, 55, 0.8));
}

.brand-experience-text .section-title {
    text-align: left;
    margin-bottom: 18px;
}

.brand-experience-lead {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    max-width: 480px;
}

.brand-experience-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.brand-experience-points .point {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    transition: 
        opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
        filter 0.6s ease-out;
}

.brand-experience-points .point:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand-experience-points .point.brand-point-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.brand-experience-points h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 6px;
}

.brand-experience-points p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .brand-story-video-content {
        padding: 100px 30px;
    }

    .brand-experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .brand-story-video-content {
        padding: 80px 20px 90px;
    }

    .brand-story-badges {
        flex-direction: column;
    }
    
    /* Çaktivizo sticky scroll në mobile - vetëm për desktop */
    .brand-experience-section {
        height: auto;
        padding: 60px 0;
    }
    
    .brand-experience-inner {
        position: relative;
        top: 0;
        min-height: auto;
    }
    
    .brand-experience-grid {
        gap: 30px;
    }

    .brand-experience-tilt {
        transform: none;
    }

    .brand-experience-tilt:hover {
        transform: translateY(-5px);
    }
    
    .brand-experience-photo {
        padding-top: 85%; /* Më e lartë në mobile për proporcion më të mirë */
    }
    
    .brand-experience-lead {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .brand-experience-points .point {
        padding: 15px 0;
    }
    
    .brand-experience-points h3 {
        font-size: 16px;
    }
    
    .brand-experience-points p {
        font-size: 13px;
    }
}

/* ========== LOGO STYLES ========== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: var(--transition-smooth);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* ========== CATEGORIES SHOWCASE ========== */
.categories-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.categories-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.categories-showcase .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.categories-showcase .section-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.categories-showcase .section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.deco-diamond {
    color: var(--color-gold);
    font-size: 12px;
    animation: diamondPulse 3s ease-in-out infinite;
}

.deco-sparkle {
    color: var(--color-gold);
    font-size: 16px;
    animation: sparkleTwinkle 2s ease-in-out infinite;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

@keyframes diamondPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes sparkleTwinkle {
    0%, 100% {
        opacity: 0.7;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease-out,
                border-color 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
    will-change: transform;
    transform: translateZ(0);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
}

.category-card:hover {
    transform: translateZ(0) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.12),
                0 0 20px rgba(212, 175, 55, 0.08);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
}

.category-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.5s ease-out;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    will-change: transform;
}

.category-card:hover .category-image img {
    transform: translate(-50%, -50%) translateZ(0) scale(1.05);
    filter: drop-shadow(0 12px 35px rgba(212, 175, 55, 0.4));
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
}

.category-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 25px 20px;
    color: var(--color-white);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    letter-spacing: 1px;
    transition: color 0.4s ease-out, background 0.4s ease-out;
}

.category-card:hover .category-title {
    color: var(--color-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 15, 15, 0.98) 100%);
}

/* Responsive for Categories */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .categories-showcase {
        padding: 70px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .category-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .header-decoration {
        gap: 10px;
    }
    
    .deco-line {
        width: 40px;
    }

    /* Showroom Gallery Mobile */
    .showroom-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-container {
        height: 350px;
    }

    .gallery-btn {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .prev-gallery {
        left: 10px;
    }

    .next-gallery {
        right: 10px;
    }

    .detail-item {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .detail-icon-3d {
        width: 40px;
        height: 40px;
    }

    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
}


/* ================================================
   THEME TOGGLE BUTTON - FRONTEND
   ================================================ */
.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-dark-gray);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--color-gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.theme-toggle-btn:hover .toggle-icon {
    color: var(--color-black);
}

.toggle-icon {
    font-size: 20px;
    transition: var(--transition-smooth);
}

.theme-toggle-btn .moon-icon {
    display: block;
}

.theme-toggle-btn .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle-btn .moon-icon {
    display: none;
}

[data-theme="light"] .theme-toggle-btn .sun-icon {
    display: block;
}

/* Mobile Theme Toggle (inside nav menu) */
.mobile-theme-toggle {
    display: none;
}

.theme-toggle-btn-mobile {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1.5px solid var(--color-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-primary);
    font-size: 15px;
    margin-top: 15px;
}

.theme-toggle-btn-mobile:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.theme-toggle-btn-mobile .toggle-icon {
    font-size: 18px;
}

.theme-toggle-btn-mobile .moon-icon {
    display: block;
}

.theme-toggle-btn-mobile .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle-btn-mobile .moon-icon {
    display: none;
}

[data-theme="light"] .theme-toggle-btn-mobile .sun-icon {
    display: block;
}

.toggle-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-theme-toggle {
        display: block;
    }
    
    /* Fshih fixed theme toggle në mobile */
    .theme-toggle-btn {
        display: none;
    }
}

/* ================================================
   LIGHT MODE OVERRIDES & FIXES
   ================================================ */

/* Navigation Light Mode */
[data-theme="light"] .luxury-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-default);
}

[data-theme="light"] .luxury-nav.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav-links a {
    color: var(--text-secondary);
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
    color: var(--color-gold);
}

[data-theme="light"] .logo-text {
    color: var(--text-primary);
}

/* Hero Section - Dark text overlay for light backgrounds */
[data-theme="light"] .hero-luxury {
    background: #f8f9fa;
}

[data-theme="light"] .hero-video {
    opacity: 0.85;
}

[data-theme="light"] .hero-video-overlay {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.65) 0%, 
        rgba(255, 255, 255, 0.55) 40%,
        rgba(255, 255, 255, 0.7) 100%);
}

/* Hero title in light mode - darker gold for better contrast */
[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #8B7020 0%, #A68B2B 50%, #8B7020 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Hero subtitle in light mode - dark text for readability */
[data-theme="light"] .hero-description p,
[data-theme="light"] .hero-subtitle {
    color: #2a2a2a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Scroll indicator */
[data-theme="light"] .scroll-indicator {
    color: var(--text-muted);
}

/* Gold particles - more subtle in light mode */
[data-theme="light"] .particle {
    opacity: 0.15;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Guarantees Section */
[data-theme="light"] .guarantees-section-premium {
    background: var(--surface-card-solid);
}

[data-theme="light"] .guarantees-premium-card {
    background: var(--surface-card);
    border-color: var(--border-default);
}

[data-theme="light"] .guarantee-premium-title {
    color: var(--text-primary);
}

[data-theme="light"] .guarantee-premium-text {
    color: var(--text-muted);
}

/* FAQ Section */
[data-theme="light"] .faq-section {
    background: var(--surface-card-solid);
}

[data-theme="light"] .faq-item {
    background: var(--surface-card);
    border-color: var(--border-default);
}

[data-theme="light"] .faq-question {
    color: var(--text-primary);
}

[data-theme="light"] .faq-question:hover {
    color: var(--color-gold);
}

[data-theme="light"] .faq-answer p {
    color: var(--text-secondary);
}

/* Final CTA Section */
[data-theme="light"] .final-cta-section {
    background: linear-gradient(135deg, var(--surface-bg), var(--surface-card-solid));
}

[data-theme="light"] .cta-content h2 {
    color: var(--text-primary);
}

[data-theme="light"] .cta-content > p {
    color: var(--text-secondary);
}

/* Footer Light Mode */
[data-theme="light"] .luxury-footer {
    background: var(--surface-card-solid);
    border-top: 1px solid var(--border-default);
}

[data-theme="light"] .footer-col h4 {
    color: var(--text-primary);
}

[data-theme="light"] .footer-description {
    color: var(--text-muted);
}

[data-theme="light"] .footer-col ul li a {
    color: var(--text-muted);
}

[data-theme="light"] .footer-col ul li a:hover {
    color: var(--color-gold);
}

[data-theme="light"] .footer-bottom {
    border-top-color: var(--border-subtle);
}

[data-theme="light"] .footer-bottom p {
    color: var(--text-muted);
}

/* Showroom Section */
[data-theme="light"] .showroom-section {
    background: var(--surface-bg);
}

[data-theme="light"] .showroom-info > p {
    color: var(--text-secondary);
}

[data-theme="light"] .showroom-gallery {
    background: var(--surface-card);
    border-color: var(--border-default);
}

[data-theme="light"] .gallery-container {
    background: var(--surface-elevated);
}

[data-theme="light"] .gallery-btn {
    background: var(--surface-card);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

[data-theme="light"] .gallery-btn:hover {
    background: var(--color-gold);
    color: var(--text-on-gold);
}

[data-theme="light"] .gallery-dot {
    background: var(--border-subtle);
}

[data-theme="light"] .gallery-dot.active {
    background: var(--color-gold);
}

[data-theme="light"] .showroom-details {
    background: var(--surface-card);
}

[data-theme="light"] .detail-item {
    background: var(--surface-elevated);
    border-left-color: var(--color-gold);
}

[data-theme="light"] .detail-item p {
    color: var(--text-secondary);
}

/* Service Video Modal */
[data-theme="light"] .service-video-modal-content {
    background: var(--surface-card);
    border-color: var(--color-gold);
}

[data-theme="light"] .service-modal-description {
    color: var(--text-secondary);
}

[data-theme="light"] .service-modal-details {
    background: var(--surface-elevated);
    border-color: var(--border-default);
}

[data-theme="light"] .service-modal-details li {
    color: var(--text-secondary);
}

[data-theme="light"] .service-modal-details p {
    color: var(--text-muted);
}

/* Contact Info Modal */
[data-theme="light"] .contact-info-modal-content {
    background: var(--surface-card);
}

[data-theme="light"] .contact-modal-title {
    color: var(--text-primary);
}

[data-theme="light"] .contact-item-text span {
    color: var(--text-muted);
}

[data-theme="light"] .contact-item-text strong {
    color: var(--text-primary);
}

/* Gallery Lightbox */
[data-theme="light"] .gallery-lightbox {
    background: rgba(255, 255, 255, 0.98);
}

[data-theme="light"] .lightbox-btn {
    background: var(--surface-card);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

[data-theme="light"] .lightbox-btn:hover {
    background: var(--color-gold);
    color: var(--text-on-gold);
}

/* Categories Section */
[data-theme="light"] .categories-showcase {
    background: var(--surface-bg);
}

[data-theme="light"] .category-card {
    background: var(--surface-card);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .category-card:hover {
    transform: translateZ(0) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-strong);
}

[data-theme="light"] .category-image {
    background: var(--surface-elevated);
}

[data-theme="light"] .category-overlay {
    background: radial-gradient(circle at center, transparent 40%, rgba(255, 255, 255, 0.6) 100%);
}

[data-theme="light"] .category-title {
    background: var(--surface-card);
    color: var(--text-primary);
    border-top: 1px solid var(--border-subtle);
}

[data-theme="light"] .category-card:hover .category-title {
    color: var(--color-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--surface-card) 100%);
}

/* Product Cards */
[data-theme="light"] .product-card,
[data-theme="light"] .collection-card {
    background: var(--surface-card);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .product-card:hover,
[data-theme="light"] .collection-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-strong);
}

[data-theme="light"] .product-info,
[data-theme="light"] .collection-info {
    background: var(--surface-card);
}

/* Bestseller Cards */
[data-theme="light"] .bestseller-card {
    background: var(--surface-card);
    border: 1px solid var(--border-default);
}

[data-theme="light"] .bestseller-card:hover {
    box-shadow: var(--shadow-card-hover);
}

[data-theme="light"] .bestseller-info h3 {
    color: var(--text-primary);
}

/* Form Elements */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .form-group select {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus,
[data-theme="light"] .form-group select:focus {
    background: var(--surface-card);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--focus-ring);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: var(--text-muted);
}

[data-theme="light"] .form-group label {
    color: var(--text-secondary);
}

/* Quick View Modal */
[data-theme="light"] .modal-content {
    background: var(--surface-card);
    border: 1px solid var(--border-default);
}

[data-theme="light"] .modal-content h3 {
    color: var(--text-primary);
}

[data-theme="light"] .modal-content p {
    color: var(--text-secondary);
}

/* Theme Toggle Button */
[data-theme="light"] .theme-toggle-btn {
    background: var(--surface-card);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: var(--color-gold);
}

/* Mobile Menu */
[data-theme="light"] .mobile-menu {
    background: var(--surface-card);
}

[data-theme="light"] .mobile-menu-btn span {
    background: var(--text-primary);
}

@media (max-width: 768px) {
    [data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }
}

/* Social Links */
[data-theme="light"] .social-links a {
    border-color: var(--border-default);
    color: var(--color-gold);
}

[data-theme="light"] .social-links a:hover {
    background: var(--color-gold);
    color: var(--text-on-gold);
    border-color: var(--color-gold);
}

/* Instagram Section */
[data-theme="light"] .instagram-section {
    background: var(--surface-bg);
}

/* Back to Top Button */
[data-theme="light"] .back-to-top {
    background: var(--surface-card);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

[data-theme="light"] .back-to-top:hover {
    background: var(--color-gold);
    color: var(--text-on-gold);
}

/* ================================================
   BRAND EXPERIENCE SECTION - Light Mode
   (Seksioni "Përjetime Unike" - Scroll Reveal)
   ================================================ */
[data-theme="light"] .brand-experience-section {
    background: var(--surface-bg);
}

[data-theme="light"] .brand-experience-tilt {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .brand-experience-photo {
    background: transparent;
}

[data-theme="light"] .brand-experience-photo .unique-product-image {
    filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.3));
}

[data-theme="light"] .brand-experience-tilt:hover .unique-product-image {
    filter: drop-shadow(0 25px 60px rgba(212, 175, 55, 0.5));
}

[data-theme="light"] .brand-experience-text .section-tag {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

[data-theme="light"] .brand-experience-text .section-title {
    color: var(--text-primary);
}

[data-theme="light"] .brand-experience-lead {
    color: var(--text-secondary);
}

[data-theme="light"] .brand-experience-points .point {
    border-top-color: var(--border-subtle);
}

[data-theme="light"] .brand-experience-points .point:last-child {
    border-bottom-color: var(--border-subtle);
}

[data-theme="light"] .brand-experience-points h3 {
    color: var(--text-primary);
}

[data-theme="light"] .brand-experience-points p {
    color: var(--text-muted);
}

/* ================================================
   BRAND STORY VIDEO SECTION - Light Mode
   (Seksioni "Eksperiencë Luksoze")
   ================================================ */
[data-theme="light"] .brand-story-video-section {
    background: var(--surface-bg);
}

[data-theme="light"] .brand-story-video {
    opacity: 0.85;
}

[data-theme="light"] .brand-story-video-overlay {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.5), rgba(255,255,255,0.6));
}

[data-theme="light"] .brand-story-video-content {
    color: var(--text-primary);
}

[data-theme="light"] .brand-story-video-content .section-tag {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

[data-theme="light"] .brand-story-video-content .section-title {
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .brand-story-video-content .section-subtitle {
    color: var(--text-secondary);
}

[data-theme="light"] .brand-story-badges .badge-item {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--color-gold);
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ================================================
   SERVICE CARDS - Light Mode
   (Seksioni "Shërbimet që Ofrojmë")
   ================================================ */
[data-theme="light"] .services-section {
    background: var(--surface-bg);
}

[data-theme="light"] .service-card {
    background: var(--surface-card);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .service-card::before {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
}

[data-theme="light"] .service-card:hover {
    background: var(--surface-card);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card-hover);
}

[data-theme="light"] .service-card h3 {
    color: var(--text-primary);
}

[data-theme="light"] .service-card p {
    color: var(--text-muted);
}

[data-theme="light"] .service-video-preview {
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
}

[data-theme="light"] .service-link {
    color: var(--color-gold-dark);
}

[data-theme="light"] .service-link:hover {
    color: var(--color-gold);
}

/* Section Headers in Light Mode */
[data-theme="light"] .section-header .section-tag {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

[data-theme="light"] .section-header .section-title {
    color: var(--text-primary);
}

[data-theme="light"] .section-header .section-subtitle {
    color: var(--text-muted);
}

/* Smooth Theme Transition */
body,
.luxury-nav,
.product-card,
.service-card,
.collection-card,
.bestseller-card,
.about-section,
.luxury-footer,
.gallery-container,
.showroom-details,
.form-group input,
.form-group textarea,
.modal-content,
.faq-item,
.brand-experience-section,
.brand-experience-tilt,
.brand-story-video-section,
.brand-story-video-content,
.brand-story-badges .badge-item {
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* Brand experience points have their own scroll-reveal animation transition */
.brand-experience-points .point {
    transition: 
        opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
        filter 0.6s ease-out,
        border-color 0.3s ease !important;
}

/* Category card has its own optimized transition - don't override */
.category-card {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease-out,
                border-color 0.3s ease,
                background-color 0.3s ease !important;
}

/* Timeline content has its own optimized hover transition */
.timeline-content {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease-out,
                border-color 0.3s ease,
                background-color 0.3s ease !important;
}


/* ==========================================================================
   HERITAGE SECTION - Modern Compact with Video Background
   ========================================================================== */

.heritage-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

/* Video Background */
.heritage-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.heritage-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.25) blur(3px);
}

/* Dark mode overlay */
.heritage-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8, 8, 8, 0.88) 0%,
        rgba(18, 18, 18, 0.80) 50%,
        rgba(8, 8, 8, 0.92) 100%
    );
}

.heritage-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* ── Header ── */
.heritage-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.heritage-main-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 14px 0 0;
    line-height: 1.25;
    font-family: 'Playfair Display', serif;
}

.gold-accent {
    color: var(--color-gold);
    font-style: italic;
    display: block;
    margin-top: 6px;
}

.heritage-intro {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 580px;
    margin: 12px auto 0;
}

/* ── Main Grid ── */
.heritage-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Timeline Column (Left) ── */
.heritage-timeline-col {
    position: relative;
    min-width: 0;
}

.timeline-compact {
    position: relative;
    padding-left: 38px;
}

.timeline-bar {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--color-gold) 8%,
        var(--color-gold) 92%,
        transparent 100%);
}

.timeline-point {
    position: relative;
    margin-bottom: 20px;
    padding-left: 8px;
}

.timeline-point:last-child { margin-bottom: 0; }

.point-dot {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-point:hover .point-dot {
    background: var(--color-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transform: scale(1.25);
}

.timeline-point.active .point-dot.glow {
    background: var(--color-gold);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    50%       { box-shadow: 0 0 22px rgba(212, 175, 55, 0.95); }
}

.point-content {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: all 0.3s ease;
}

.timeline-point:hover .point-content {
    background: rgba(20, 20, 20, 0.85);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(4px);
}

.point-year {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--color-gold);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.14);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.point-content h4 {
    font-size: 0.97rem;
    color: var(--text-primary);
    margin: 5px 0 4px;
    font-weight: 600;
}

.point-content p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* ── Info Column (Right) — 4 uniform boxes ── */
.heritage-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* Base box — identical look to .point-content */
.heritage-info-box {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.heritage-info-box:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

/* Row 1 — big stat */
.info-stat-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}

.info-big-num {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.info-big-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.info-box-text {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Rows 2 & 3 — two stats side by side */
.heritage-pair {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
    padding: 18px;
}

.pair-stat {
    text-align: center;
    flex: 1;
}

.pair-num {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 4px;
}

.pair-lbl {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.pair-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.25);
    flex-shrink: 0;
}

/* Row 4 — Mission */
.heritage-mission-box .mission-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}

.heritage-mission-box .mission-text strong {
    color: var(--color-gold);
}

.heritage-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: #111;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.87rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28);
    white-space: nowrap;
}

.heritage-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
    color: #111;
}

.btn-arrow {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.heritage-cta-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .heritage-section { padding: 50px 0; }

    .heritage-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .heritage-main-title {
        font-size: clamp(1.55rem, 4.5vw, 2.2rem);
    }

    .info-big-num { font-size: 2rem; }
}

@media (max-width: 600px) {
    .heritage-section { padding: 40px 0; }

    .heritage-wrapper { padding: 0 12px; }

    .heritage-header { margin-bottom: 24px; }

    .heritage-intro { font-size: 0.92rem; }

    .timeline-compact { padding-left: 30px; }
    .timeline-bar    { left: 7px; }

    .point-dot {
        left: -22px;
        width: 12px;
        height: 12px;
    }

    .point-content       { padding: 12px 14px; }
    .heritage-info-box   { padding: 12px 14px; }

    .info-big-num  { font-size: 1.8rem; }
    .info-big-label { font-size: 0.88rem; }

    .heritage-pair { padding: 14px 12px; gap: 8px; }
    .pair-num  { font-size: 1.35rem; }
    .pair-lbl  { font-size: 0.72rem; }

    .heritage-mission-box .mission-text { font-size: 0.83rem; }

    .heritage-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 11px 18px;
    }
}

/* ── Light Mode ── */
[data-theme="light"] .heritage-video-overlay {
    background: linear-gradient(
        160deg,
        rgba(245, 240, 230, 0.94) 0%,
        rgba(252, 248, 238, 0.90) 50%,
        rgba(245, 240, 230, 0.96) 100%
    );
}

[data-theme="light"] .heritage-bg-video {
    filter: brightness(0.55) blur(3px) saturate(0.6);
}

/* Both timeline and info boxes — same light style */
[data-theme="light"] .point-content,
[data-theme="light"] .heritage-info-box {
    background: rgba(255, 252, 245, 0.92);
    border-color: rgba(212, 175, 55, 0.28);
}

[data-theme="light"] .point-dot {
    background: #fffdf4;
}

[data-theme="light"] .pair-divider {
    background: rgba(212, 175, 55, 0.3);
}

[data-theme="light"] .heritage-intro { color: #4a4030; }

[data-theme="light"] .info-box-text,
[data-theme="light"] .info-big-label,
[data-theme="light"] .pair-lbl,
[data-theme="light"] .point-content p { color: #555; }

[data-theme="light"] .point-content h4 { color: #222; }

[data-theme="light"] .heritage-mission-box .mission-text { color: #4a4030; }
