/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --color-background: #050505;
    --color-text: #f5f5f5;
    --color-accent: #D4AF37;
    --color-black: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-gray-dark: #2a2a2a;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --color-white: #ffffff;
    --color-gold: #D4AF37;
    --color-gold-light: #e8d5a3;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-accent);
}

/* ============================================
   CONTAINER & GRID
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVBAR - Enhanced
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin: var(--spacing-md) var(--spacing-lg);
    transition: all var(--transition-base);
}

.navbar-content:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.navbar-brand a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.navbar-menu li a {
    color: var(--color-gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.navbar-menu li a:hover {
    color: var(--color-gold);
}

.navbar-menu li a:hover::after {
    width: 100%;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gray-light);
    position: relative;
    padding: var(--spacing-xs);
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.cart-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.cart-counter {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Mobile Navigation Toggle Button */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    gap: 5px;
    min-height: 44px;
    min-width: 44px;
    z-index: 1001;
    position: relative;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 997;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.navbar-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 767px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-content {
        margin: var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        z-index: 998;
        margin: 0;
        border-radius: 0;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-menu li {
        width: 100%;
    }
    
    .navbar-menu li a {
        display: block;
        padding: var(--spacing-sm);
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .navbar-menu li a:hover {
        color: var(--color-gold);
        padding-left: var(--spacing-md);
    }
    
    .navbar-brand a {
        font-size: 1.25rem;
    }
}

/* ============================================
   HERO SECTION - Enhanced
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                #050505;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 25%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-brand {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #D4AF37 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite, fadeInUp 1s ease forwards;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

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

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   COLLECTIONS - Enhanced Cards
   ============================================ */
.collections {
    position: relative;
    overflow: hidden;
    background: black;
}

.collections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.collection-card {
    position: relative;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    transform-style: preserve-3d;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%, transparent 100%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.collection-card:hover::before {
    opacity: 1;
    animation: shimmerEffect 1.5s ease-out;
}

@keyframes shimmerEffect {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) translateY(200%) rotate(45deg);
    }
}

.collection-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-content {
    padding: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.collection-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-base);
}

.collection-card:hover .collection-content h3 {
    color: var(--color-gold-light);
}

.collection-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.collection-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.collection-link:hover {
    color: var(--color-gold);
    gap: 1rem;
}

/* ============================================
   PRODUCTS - Enhanced
   ============================================ */
.best-sellers {
    background: black;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.product-card {
    position: relative;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-cart-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.product-card:hover .product-cart-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-cart-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(0) scale(1.1);
}

.product-content {
    padding: var(--spacing-md);
    background: black;
}

#about .product-content {
    padding: 1rem;
    background: black;
    position: relative;
}

.product-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

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

/* ============================================
   TESTIMONIALS - Enhanced
   ============================================ */
.testimonials {
    background: radial-gradient(circle at center, rgba(26, 26, 26, 0.8) 0%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: var(--font-serif);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-rating {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

/* ============================================
   FOOTER - Enhanced
   ============================================ */
.footer {
    background: linear-gradient(180deg, transparent 0%, var(--color-black) 50%);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PRODUCT QUICK VIEW MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    animation: modalScaleIn 0.3s ease forwards;
}

@keyframes modalScaleIn {
    from {
        transform: scale(0.9);
    }
    to {
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.modal-gallery {
    position: relative;
}

.modal-main-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
}

.modal-main-image img,
.modal-main-image svg {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.modal-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.modal-thumbnail img,
.modal-thumbnail svg {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.modal-info {
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.modal-reviews {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.modal-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-features {
    margin-bottom: 2rem;
}

.modal-features h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.modal-features ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.modal-features li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-options {
    margin-bottom: 2rem;
}

.modal-option-group {
    margin-bottom: 1.5rem;
}

.modal-option-label {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.modal-sizes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.size-btn:hover,
.size-btn.active {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quantity-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    color: var(--color-gold);
    transform: scale(1.2);
}

.quantity-value {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.btn-add-to-cart {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ============================================
   SIZE GUIDE MODAL
   ============================================ */
.size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.size-guide-link:hover {
    gap: 0.75rem;
}

.size-guide-content {
    padding: 3rem;
}

.size-guide-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.size-guide-table th,
.size-guide-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.size-guide-table th {
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    font-weight: 600;
}

.size-guide-table td {
    color: rgba(255, 255, 255, 0.8);
}

.size-guide-tips {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
}

.size-guide-tips h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.size-guide-tips ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.size-guide-tips li {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    position: relative;
}

.size-guide-tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-black) 100%);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.newsletter-benefit {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

.benefit-text h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    min-width: 250px;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.newsletter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.newsletter-success {
    display: none;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    padding: 1.5rem;
    border-radius: 12px;
    color: #4CAF50;
    margin-top: 1rem;
    animation: slideInUp 0.5s ease;
}

.newsletter-success.active {
    display: block;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-brand {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .modal-main-image {
        height: 400px;
    }

    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: var(--spacing-lg);
        min-height: auto;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-brand {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .collections-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .collection-card,
    .product-card {
        max-width: 100%;
    }
    
    .collection-image,
    .product-image {
        height: 250px;
    }
    
    .product-cart-btn {
        opacity: 1;
        transform: translateY(0) scale(1);
        width: 45px;
        height: 45px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: var(--spacing-sm);
    }

    .modal-body {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .modal-main-image {
        height: 300px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
    
    .modal-actions {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .btn-add-to-cart {
        width: 100%;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group input {
        width: 100%;
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .collections-carousel-wrapper {
        padding: 0 var(--spacing-sm);
    }
    
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        padding: 0;
    }
    
    .carousel-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    #collections .collection-card,
    #about .product-card {
        min-width: 200px;
        max-width: 240px;
    }
    
    #collections .collection-image,
    #about .product-image {
        height: 200px;
    }
    
    .notification {
        right: var(--spacing-sm) !important;
        left: var(--spacing-sm) !important;
        width: auto;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Improve modal for mobile */
    .modal-close {
        width: 44px;
        height: 44px;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .modal-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Better spacing for mobile */
    .collection-content,
    .product-content {
        padding: var(--spacing-sm);
    }
    
    /* Improve cart button visibility on mobile */
    .cart-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Better form inputs on mobile */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Improve loading screen on mobile */
    .loading-screen {
        width: 100vw;
        height: 100vh;
        max-width: 100%;
    }
    
    /* Better spacing for sections */
    .hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Notification animations */
@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}

/* ============================================
   COLLECTIONS CAROUSEL
   ============================================ */
/* Collections Section - Clean Luxury Static Grid */
#collections {
    position: relative;
    padding: 6rem 0;
    background: #000;
    overflow: hidden;
}

/* Section Header Animation */
#collections .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 2;
}

#collections .section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Elegant Luxury Spotlight Glow Background */
#collections::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

/* Premium Side-by-Side Cards Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Collection Card - Premium Obsidian Glassmorphism */
#collections .collection-card {
    position: relative;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease, 
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Hover Lift Effect */
#collections .collection-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(212, 175, 55, 0.18);
}

/* Premium Minimalist Swiss Made Badge */
.luxury-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.35rem 0.75rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

#collections .collection-card:hover .luxury-badge,
#about .product-card:hover .luxury-badge {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Collection Image with Luxury Gold Radial Gradient Backdrop */
#collections .collection-image {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

#collections .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    filter: brightness(0.95);
}

#collections .collection-card:hover .collection-image img {
    transform: scale(1.06);
    filter: brightness(1);
}

/* Collection Content - Sleek Dark Bottom */
#collections .collection-content {
    padding: 1.5rem 1.25rem;
    background: rgba(12, 12, 12, 0.9);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

#collections .collection-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #d4af37;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

#collections .collection-card:hover .collection-content h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#collections .collection-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Pricing Style */
#collections .collection-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0.25rem 0 0 0;
    text-align: center;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

#collections .collection-card:hover .collection-price {
    transform: scale(1.05);
}

/* Tablet Grid Override */
@media (max-width: 968px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

/* About Section Background and spotlight glow */
#about {
    position: relative;
    background: black;
    overflow: hidden;
    padding: 6rem 0;
}

#about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

/* Premium Side-by-Side Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Product Card - Premium Obsidian Glassmorphism */
#about .product-card {
    position: relative;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.4s ease, 
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Hover Lift Effect */
#about .product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(212, 175, 55, 0.18);
}

/* Product Image with Luxury Gold Radial Gradient Backdrop */
#about .product-image {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

#about .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    filter: brightness(0.95);
}

#about .product-card:hover .product-image img {
    transform: scale(1.06);
    filter: brightness(1);
}

/* Product Content - Sleek Dark Bottom */
#about .product-content {
    padding: 1.5rem 1.25rem;
    background: rgba(12, 12, 12, 0.9);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

#about .product-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #d4af37;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

#about .product-card:hover .product-content h3 {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#about .product-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
    transition: transform 0.3s ease;
}

#about .product-card:hover .product-price {
    transform: scale(1.05);
}

/* Tablet Grid Override */
@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

/* Collection Price */
.collection-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
    text-align: center;
    padding: 0.5rem 0;
}

#collections .collection-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0.25rem 0 0 0;
    text-align: center;
}

/* Interactive Elements - Smaller */
.collection-interactive {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
}

.color-dots {
    display: flex;
    gap: 0.4rem;
    background: #1a1a1a;
    padding: 0.4rem;
    border-radius: 6px;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.dot:hover {
    transform: scale(1.2);
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #4ade80; }
.dot-blue { background: #60a5fa; }
.dot-white { background: #ffffff; border: 1px solid #ccc; }

.interactive-buttons {
    display: flex;
    gap: 0.4rem;
    background: #1a1a1a;
    padding: 0.4rem;
    border-radius: 6px;
    justify-content: center;
}

.interactive-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.interactive-btn svg {
    width: 14px;
    height: 14px;
}

/* Navigation Buttons - Highly Refined Gold Gear Style */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.carousel-nav-btn:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.carousel-nav-btn:hover svg {
    stroke: #000;
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.92);
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: #d4af37;
    transition: stroke 0.3s ease;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collections-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    #collections .collection-card, #about .product-card {
        max-width: 100%;
    }
    
    #collections .collection-image, #about .product-image {
        height: 220px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Touch-friendly improvements */
    .carousel-nav-btn {
        width: 44px;
        height: 44px;
        touch-action: manipulation;
    }
    
    .carousel-nav-btn:active {
        transform: translateY(-50%) scale(0.9);
    }
    
    /* Better touch targets */
    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .product-cart-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Prevent text selection on touch */
    .carousel-track,
    .collection-card,
    .product-card {
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}
