/* Template shoes Styles */
:root {
            --shoes-primary: #0a0a0a;
            --shoes-secondary: #ffffff;
            --shoes-accent: #ff5722;
            --shoes-accent-hover: #e64a19;
            --shoes-gray: #6b6b6b;
            --shoes-gray-light: #f5f5f5;
            --shoes-gray-border: #e0e0e0;
            
            --font-title: 'Outfit', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
        }

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

        body {
            font-family: var(--font-body);
            background-color: var(--shoes-secondary);
            color: var(--shoes-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6, .font-title {
            font-family: var(--font-title);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .text-accent { color: var(--shoes-accent) !important; }
        .bg-accent { background-color: var(--shoes-accent) !important; }
        .bg-dark-shoes { background-color: var(--shoes-primary) !important; }
        .bg-light-shoes { background-color: var(--shoes-gray-light) !important; }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: var(--shoes-primary);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
        }
        .loader-stripe {
            width: 60px; height: 4px;
            background: var(--shoes-accent);
            animation: loader-pulse 1s ease-in-out infinite;
        }
        @keyframes loader-pulse {
            0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
            50% { transform: scaleX(1); opacity: 1; }
        }

        /* Navbar */
        .navbar-shoes {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--shoes-gray-border);
            transition: all 0.4s ease;
            padding: 20px 0;
        }
        .navbar-shoes.scrolled {
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }
        .navbar-brand-shoes {
            font-family: var(--font-title);
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--shoes-primary) !important;
            text-decoration: none !important;
            letter-spacing: -0.03em;
        }
        .navbar-brand-shoes span { color: var(--shoes-accent); }
        .nav-link-shoes {
            font-family: var(--font-title);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--shoes-primary) !important;
            padding: 8px 18px !important;
            transition: color 0.3s;
            text-decoration: none !important;
            position: relative;
        }
        .nav-link-shoes::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            width: 0; height: 2px;
            background: var(--shoes-accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link-shoes:hover { color: var(--shoes-accent) !important; }
        .nav-link-shoes:hover::after { width: 60%; }
        .nav-link-shoes.active { color: var(--shoes-accent) !important; }
        .nav-link-shoes.active::after { width: 60%; }

        /* Buttons */
        .btn-shoes-primary {
            background-color: var(--shoes-accent);
            color: #ffffff !important;
            font-family: var(--font-title);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 0.8rem;
            border-radius: 0;
            padding: 16px 40px;
            border: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .btn-shoes-primary:hover {
            background-color: var(--shoes-accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
        }
        .btn-shoes-outline {
            background-color: transparent;
            color: var(--shoes-primary) !important;
            font-family: var(--font-title);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 0.8rem;
            border-radius: 0;
            padding: 16px 40px;
            border: 2px solid var(--shoes-primary);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .btn-shoes-outline:hover {
            background-color: var(--shoes-primary);
            color: #ffffff !important;
        }
        .btn-shoes-white {
            background-color: var(--shoes-secondary);
            color: var(--shoes-primary) !important;
            font-family: var(--font-title);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-size: 0.8rem;
            border-radius: 0;
            padding: 16px 40px;
            border: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .btn-shoes-white:hover {
            background-color: var(--shoes-accent);
            color: #ffffff !important;
            transform: translateY(-2px);
        }

        /* Section Styles */
        .section-padding-shoes { padding: 120px 0; }
        .section-subtitle-shoes {
            font-family: var(--font-title);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--shoes-accent);
            display: inline-block;
            margin-bottom: 16px;
        }
        .section-title-shoes {
            font-size: 3rem;
            color: var(--shoes-primary);
            margin-bottom: 20px;
            line-height: 1.1;
        }
        .section-title-shoes.light { color: var(--shoes-secondary); }

        /* Footer */
        .footer-shoes {
            background-color: var(--shoes-primary);
            color: var(--shoes-secondary);
            padding: 80px 0 40px;
        }
        .footer-link-shoes {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .footer-link-shoes:hover {
            color: var(--shoes-accent);
            padding-left: 8px;
        }
        .footer-social-shoes {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .footer-social-shoes:hover {
            background: var(--shoes-accent);
            transform: translateY(-4px);
            color: #ffffff;
        }

        /* Mobile Menu */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: white !important;
                padding: 30px !important;
                margin-top: 15px !important;
                box-shadow: 0 30px 60px rgba(0,0,0,0.15) !important;
                border-top: 3px solid var(--shoes-accent) !important;
                max-height: 80vh !important;
                overflow-y: auto !important;
            }
            .navbar-nav .nav-link-shoes {
                color: var(--shoes-primary) !important;
                padding: 12px 0 !important;
                border-bottom: 1px solid rgba(0,0,0,0.05) !important;
                text-align: center !important;
            }
            .section-title-shoes { font-size: 2.2rem; }
            .section-padding-shoes { padding: 80px 0; }
        }

