    /* ========================================
       SIP'S & SPURS — Custom Styles
       Premium Dark Luxury Theme
       ======================================== */

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

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(201, 168, 76, 0.3);
        color: #ffffff;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0a0f1e;
    }
    ::-webkit-scrollbar-thumb {
        background: #c9a84c;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #d4b95e;
    }

    /* Navbar */
    #navbar {
        background: transparent;
        backdrop-filter: none;
    }

    #navbar.scrolled {
        background: rgba(10, 15, 30, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Hero Image */
    #hero-img {
        transition: transform 8s ease;
    }

    #hero:hover #hero-img {
        transform: scale(1.05);
    }

    /* Scroll Animation */
    @keyframes scrollDown {
        0% { top: -16px; opacity: 0; }
        50% { opacity: 1; }
        100% { top: 32px; opacity: 0; }
    }

    .animate-scroll-down {
        animation: scrollDown 1.5s ease-in-out infinite;
    }

    /* Reveal Animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Mobile Menu */
    #mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }

    .menu-line {
        display: block;
    }

    /* Hamburger Animation */
    #menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    #menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        width: 24px;
    }

    /* Mobile Links */
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }

    #mobile-menu.active .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

    /* Back to Top */
    #back-to-top.visible {
        opacity: 1;
        pointer-events: all;
    }

    /* Gold shimmer on hover for product cards */
    .group::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid transparent;
        transition: border-color 0.3s ease;
        pointer-events: none;
    }

    .group:hover::after {
        border-color: rgba(201, 168, 76, 0.3);
    }

    /* Form focus styles */
    input:focus, select:focus, textarea:focus {
        box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    }

    /* Selection highlight for gold text */
    .text-gold-500::selection {
        background: rgba(201, 168, 76, 0.4);
    }

    /* Smooth image loading */
    img {
        opacity: 1;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }
        .reveal {
            opacity: 1;
            transform: none;
            transition: none;
        }
        .animate-scroll-down {
            animation: none;
        }
        img {
            transition: none;
        }
        .group:hover img {
            transform: none;
        }
    }

    /* Tablet */
    @media (max-width: 768px) {
        html {
            scroll-padding-top: 70px;
        }
    }

    /* Small phones */
    @media (max-width: 360px) {
        .font-display {
            font-size: 1.1rem;
        }
    }
