/* ========================================
   NON-CRITICAL STYLES - Load Async
   ========================================== */

/* Custom Colors */
.text-gold-light { color: var(--gold-light); }
.bg-gold-dark { background-color: var(--gold-dark); }
.border-gold-light { border-color: var(--gold-light); }

/* Hover Effects */
.hover\:text-gold:hover { color: var(--gold); }
.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:border-gold:hover { border-color: var(--gold); }

/* Gradient Text */
.gradient-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Section Header Premium */
.section-header {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Glass Card Premium */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.glass-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Button Luxury Premium */
.btn-luxury {
    border: 1px solid var(--gold);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-block;
    text-align: center;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-luxury:hover::before {
    left: 0;
}

.btn-luxury:hover {
    color: black;
    box-shadow: 0 10px 30px rgba(184, 145, 70, 0.3);
}

/* Stock Badge */
.stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

/* Custom Scrollbar Premium */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Selection Color */
::selection {
    background: var(--gold);
    color: black;
}

/* Loading Animation */
.loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(184, 145, 70, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .section-header {
        padding-left: 12px;
        margin-bottom: 24px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .btn-luxury {
        padding: 10px 20px;
        font-size: 9px;
    }
}

/* Animation Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Utility Classes */
.bg-gradient-premium {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.text-shadow-gold {
    text-shadow: 0 0 10px rgba(184, 145, 70, 0.3);
}

/* Smooth Transition for all interactive elements */
a, button, .btn-luxury, .glass-card {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Disable pull-to-refresh on mobile */
body {
    overscroll-behavior: none;
}

/* Prevent layout shift */
img, video {
    max-width: 100%;
    height: auto;
}