    /* Custom styles for Treasure Seekers Thrift Store */

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #050d1a;
    }
    ::-webkit-scrollbar-thumb {
        background: #c9a84c30;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #c9a84c50;
    }

    /* Selection color */
    ::selection {
        background: #c9a84c40;
        color: #fff;
    }

    /* Scroll line animation */
    @keyframes scrollLine {
        0% { top: -16px; opacity: 0; }
        50% { opacity: 1; }
        100% { top: 48px; opacity: 0; }
    }
    .animate-scroll-line {
        animation: scrollLine 1.5s ease-in-out infinite;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(5, 13, 26, 0.95);
        backdrop-blur-xl;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    /* Nav links */
    .nav-link {
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: #c9a84c;
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }

    /* Mobile menu */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }
    #mobileMenu .mobile-link {
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    #mobileMenu.open .mobile-link {
        transform: translateY(0);
        opacity: 1;
    }
    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.3s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.4s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.5s; }

    /* Menu button animation */
    #menuBtn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    #menuBtn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menuBtn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        width: 1.5rem;
    }

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

    /* Image hover effects */
    img {
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Gold shimmer effect on hover for cards */
    .gold-shimmer:hover {
        box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
    }

    /* Input autofill styling */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #0a1628 inset !important;
        -webkit-text-fill-color: #fff !important;
    }
