/* Template shoes2 Styles */
:root {
            --shoes2-primary: #2c2c2c;
            --shoes2-secondary: #f5f0eb;
            --shoes2-accent: #c9a87c;
            --shoes2-accent-hover: #b8956a;
            --shoes2-light: #faf8f6;
            --shoes2-gray: #8a8a8a;
            --shoes2-border: #e8e0d8;
            --shoes2-rose: #e8d5c8;
            
            --font-title2: 'Playfair Display', serif;
            --font-body2: 'DM Sans', sans-serif;
        }

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

        body {
            font-family: var(--font-body2);
            background-color: var(--shoes2-light);
            color: var(--shoes2-primary);
            overflow-x: hidden;
            line-height: 1.7;
            font-weight: 400;
        }

        h1, h2, h3, h4, h5, h6, .font-title2 {
            font-family: var(--font-title2);
            font-weight: 600;
            letter-spacing: 0.01em;
        }

        .text-accent2 { color: var(--shoes2-accent) !important; }
        .bg-accent2 { background-color: var(--shoes2-accent) !important; }
        .bg-dark2 { background-color: var(--shoes2-primary) !important; }
        .bg-light2 { background-color: var(--shoes2-secondary) !important; }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: var(--shoes2-light);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease;
        }
        .loader-elegant {
            width: 50px; height: 50px;
            border: 2px solid var(--shoes2-border);
            border-top-color: var(--shoes2-accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Navbar */
        .navbar-shoes2 {
            background-color: rgba(250, 248, 246, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--shoes2-border);
            transition: all 0.4s ease;
            padding: 24px 0;
        }
        .navbar-shoes2.scrolled {
            padding: 16px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }
        .navbar-brand-shoes2 {
            font-family: var(--font-title2);
            font-weight: 600;
            font-size: 1.6rem;
            color: var(--shoes2-primary) !important;
            text-decoration: none !important;
            letter-spacing: 0.05em;
        }
        .navbar-brand-shoes2 span { color: var(--shoes2-accent); font-style: italic; }
        .nav-link-shoes2 {
            font-family: var(--font-body2);
            font-weight: 500;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--shoes2-primary) !important;
            padding: 8px 16px !important;
            transition: color 0.3s;
            text-decoration: none !important;
            position: relative;
        }
        .nav-link-shoes2::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            width: 0; height: 1px;
            background: var(--shoes2-accent);
            transition: all 0.4s ease;
            transform: translateX(-50%);
        }
        .nav-link-shoes2:hover { color: var(--shoes2-accent) !important; }
        .nav-link-shoes2:hover::after { width: 70%; }
        .nav-link-shoes2.active { color: var(--shoes2-accent) !important; }
        .nav-link-shoes2.active::after { width: 70%; }

        /* Buttons */
        .btn-shoes2-primary {
            background-color: var(--shoes2-accent);
            color: #ffffff !important;
            font-family: var(--font-body2);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.7rem;
            border-radius: 0;
            padding: 18px 44px;
            border: none;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .btn-shoes2-primary:hover {
            background-color: var(--shoes2-accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(201, 168, 124, 0.35);
        }
        .btn-shoes2-outline {
            background-color: transparent;
            color: var(--shoes2-primary) !important;
            font-family: var(--font-body2);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.7rem;
            border-radius: 0;
            padding: 18px 44px;
            border: 1px solid var(--shoes2-primary);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .btn-shoes2-outline:hover {
            background-color: var(--shoes2-primary);
            color: #ffffff !important;
        }
        .btn-shoes2-white {
            background-color: var(--shoes2-light);
            color: var(--shoes2-primary) !important;
            font-family: var(--font-body2);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.7rem;
            border-radius: 0;
            padding: 18px 44px;
            border: none;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .btn-shoes2-white:hover {
            background-color: var(--shoes2-accent);
            color: #ffffff !important;
            transform: translateY(-3px);
        }

        /* Section Styles */
        .section-padding2 { padding: 140px 0; }
        .section-subtitle2 {
            font-family: var(--font-body2);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--shoes2-accent);
            display: inline-block;
            margin-bottom: 20px;
            position: relative;
        }
        .section-subtitle2::before,
        .section-subtitle2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background: var(--shoes2-accent);
        }
        .section-subtitle2::before { right: calc(100% + 15px); }
        .section-subtitle2::after { left: calc(100% + 15px); }
        
        .section-title2 {
            font-size: 3.2rem;
            color: var(--shoes2-primary);
            margin-bottom: 24px;
            line-height: 1.15;
        }
        .section-title2.light { color: var(--shoes2-light); }
        .section-title2.accent { color: var(--shoes2-accent); }

        /* Footer */
        .footer-shoes2 {
            background-color: var(--shoes2-primary);
            color: var(--shoes2-light);
            padding: 100px 0 50px;
        }
        .footer-link2 {
            display: block;
            color: rgba(250, 248, 246, 0.6);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.85rem;
            transition: all 0.3s;
        }
        .footer-link2:hover {
            color: var(--shoes2-accent);
            padding-left: 6px;
        }
        .footer-social2 {
            width: 42px; height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(250, 248, 246, 0.2);
            color: var(--shoes2-light);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        .footer-social2:hover {
            background: var(--shoes2-accent);
            border-color: var(--shoes2-accent);
            transform: translateY(-3px);
            color: #ffffff;
        }

        /* Mobile Menu */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--shoes2-light) !important;
                padding: 30px !important;
                margin-top: 15px !important;
                box-shadow: 0 25px 50px rgba(0,0,0,0.1) !important;
                border-top: 2px solid var(--shoes2-accent) !important;
                max-height: 80vh !important;
                overflow-y: auto !important;
            }
            .navbar-nav .nav-link2 {
                color: var(--shoes2-primary) !important;
                padding: 14px 0 !important;
                border-bottom: 1px solid rgba(0,0,0,0.05) !important;
                text-align: center !important;
            }
            .section-title2 { font-size: 2.4rem; }
            .section-padding2 { padding: 90px 0; }
        }

