    /* Custom styles for Main Street Boutique */

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

    /* Custom selection color */
    ::selection {
        background-color: rgba(26, 92, 63, 0.2);
        color: #1a5c3f;
    }

    /* Hero animations */
    .hero-anim {
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .hero-anim.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Reveal animations */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* Staggered reveal delays */
    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }
    .reveal:nth-child(4) { transition-delay: 0.3s; }

    /* Navbar scroll state */
    #navbar.scrolled {
        background-color: rgba(250, 249, 246, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }

    #navbar.scrolled .font-serif {
        color: #1a5c3f;
    }

    /* Mobile menu */
    #mobileMenu.open {
        transform: translateX(0);
    }

    /* Mobile menu links */
    .mobile-link {
        transition: opacity 0.3s ease;
    }

    .mobile-link:hover {
        opacity: 0.7;
    }

    /* Menu button animation */
    .menu-line:first-child {
        transform-origin: center;
    }

    .menu-line:last-child {
        transform-origin: center;
    }

    body.menu-open .menu-line:first-child {
        transform: rotate(45deg) translateY(4px);
    }

    body.menu-open .menu-line:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .menu-line:last-child {
        transform: rotate(-45deg) translateY(-4px);
        width: 1.5rem;
    }

    /* Focus styles */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
        outline: 2px solid #3d7a3d;
        outline-offset: 2px;
        border-radius: 4px;
    }

    /* Form input transitions */
    input, textarea, select {
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* Image loading placeholder */
    img {
        background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    }

    /* Subtle hover lift for cards */
    .group:hover {
        transform: translateY(-2px);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #faf9f6;
    }

    ::-webkit-scrollbar-thumb {
        background: #b8d1b8;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #8fb88f;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }

        .reveal {
            opacity: 1;
            transform: none;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .font-serif {
            line-height: 1.15;
        }
    }
