    /* Import Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        /* Reset & Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #4CAF50;
            --primary-dark: #3e8e41;
            --primary-light: rgba(76, 175, 80, 0.1);
            --secondary-color: #2d2d2d;
            --background-dark: #111315;
            --background-card: #1a1c1e;
            --text-light: #ffffff;
            --text-muted: rgba(255, 255, 255, 0.7);
            --text-price: #4CAF50;
            --error-color: #f44336;
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 16px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
            --transition-speed: 0.3s;
        }

        body {
            background-color: var(--background-dark);
            color: var(--text-light);
            min-height: 100vh;
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            position: relative;
            overflow-x: hidden;
            padding-top: 80px; /* Space for fixed navbar */
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(76, 175, 80, 0.05), transparent 70%);
            z-index: -1;
        }

        /* Navigation Bar - PRESERVED AS REQUESTED */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            height: 80px;
            background-color: rgba(26, 28, 30, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            height: 70px;
            background-color: rgba(17, 19, 21, 0.98);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .shoe-icon {
            font-size: 24px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .nav-logo:hover .shoe-icon {
            transform: rotate(15deg) translateX(3px);
        }

        .nav-logo-text {
            display: flex;
            font-size: 28px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }
        
        .letter {
            background: linear-gradient(90deg, #4CAF50, #3e8e41);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease, opacity 0.3s ease;
            display: inline-block;
        }
        
        .nav-logo:hover .letter {
            animation: bounce 0.5s ease;
            animation-fill-mode: both;
        }
        
        .nav-logo:hover .letter:nth-child(1) { animation-delay: 0s; }
        .nav-logo:hover .letter:nth-child(2) { animation-delay: 0.1s; }
        .nav-logo:hover .letter:nth-child(3) { animation-delay: 0.2s; }
        .nav-logo:hover .letter:nth-child(4) { animation-delay: 0.3s; }
        .nav-logo:hover .letter:nth-child(5) { animation-delay: 0.4s; }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .nav-btn {
            padding: 10px 20px;
            border-radius: var(--border-radius-sm);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
            border: none;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-signin {
            color: var(--text-light);
            background-color: transparent;
            border: 1px solid var(--primary-color);
        }

        .btn-signin:hover {
            background-color: rgba(76, 175, 80, 0.1);
            transform: translateY(-2px);
        }

        .btn-register {
            color: white;
            background-color: var(--primary-color);
            box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
        }

        .btn-register:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--text-light);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 9px;
        }

        .hamburger span:nth-child(3) {
            top: 18px;
        }

        /* ENHANCED Hero Section */
        .hero {
            position: relative;
            display: flex;
            min-height: 100vh;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(17, 19, 21, 0.9), rgba(17, 19, 21, 0.7)), url('uploads/11.png');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .hero-container {
            display: flex;
            width: 100%;
            padding: 0 5%;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease forwards;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(90deg, #ffffff, #4CAF50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--primary-color);
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        .hero-image-container {
            position: relative;
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            transform: rotate(-15deg) translateY(-20px);
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
            animation: float 6s ease-in-out infinite;
            transition: transform 0.5s ease;
        }

        .hero-image:hover {
            transform: rotate(-10deg) translateY(-30px) scale(1.05);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn {
            padding: 16px 32px;
            border-radius: var(--border-radius-sm);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
            border: none;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            color: white;
            background-color: var(--primary-color);
            box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
        }

        .btn-secondary {
            color: var(--text-light);
            background-color: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            border-color: var(--primary-color);
            background-color: rgba(76, 175, 80, 0.1);
            transform: translateY(-3px);
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .btn:hover::after {
            transform: translateX(0);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .scroll-indicator:hover {
            opacity: 1;
        }

        .scroll-text {
            font-size: 14px;
            font-weight: 500;
        }

        .scroll-icon {
            font-size: 24px;
            animation: bounce 2s infinite;
        }

        /* ENHANCED Featured Products */
        .featured-products {
            padding: 120px 5%;
            text-align: center;
            position: relative;
        }

        .section-title-container {
            margin-bottom: 70px;
            position: relative;
        }

        .section-subtitle {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--primary-color);
            margin-bottom: 16px;
            font-weight: 600;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
            font-family: 'Poppins', sans-serif;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .section-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 18px;
            line-height: 1.6;
        }

        .product-filter {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-muted);
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .product-card {
            background-color: var(--background-card);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .product-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .product-image-container {
            position: relative;
            padding-top: 100%; /* Creates a perfect square */
            background: linear-gradient(145deg, #222, #333);
            overflow: hidden;
        }

        .product-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.08);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-actions {
            position: absolute;
            bottom: -50px; /* Start below the container */
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 15px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .product-card:hover .product-actions {
            bottom: 20px;
            opacity: 1;
        }

        .product-action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--background-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .product-action-btn:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .product-info {
            padding: 25px;
            position: relative;
        }

        .product-category {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-card:hover .product-name {
            color: var(--primary-color);
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
        }

        .rating-stars {
            color: #FFD700;
            font-size: 14px;
        }

        .rating-count {
            font-size: 14px;
            color: var(--text-muted);
        }

        .product-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-price);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-old {
            font-size: 16px;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .product-btn {
            width: 100%;
            padding: 14px;
            border-radius: var(--border-radius-sm);
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--text-light);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .product-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .view-all-btn {
            margin-top: 60px;
            display: inline-block;
            padding: 16px 40px;
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--text-light);
            font-weight: 600;
            border-radius: var(--border-radius-sm);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
        }

        /* NEW Features Section */
        .features-section {
            padding: 120px 5%;
            background-color: rgba(26, 28, 30, 0.5);
            position: relative;
            overflow: hidden;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background-color: var(--background-card);
            border-radius: var(--border-radius-md);
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(76, 175, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background-color: var(--primary-color);
            transform: rotateY(180deg);
        }

        .feature-icon i {
            font-size: 28px;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon i {
            color: white;
            transform: rotateY(180deg);
        }

        .feature-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* NEW Testimonials Section */
        .testimonials-section {
            padding: 120px 5%;
            text-align: center;
            position: relative;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-slider {
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .testimonial-content {
            background-color: var(--background-card);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: left;
        }

        .testimonial-content::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(76, 175, 80, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 18px;
            font-weight: 600;
        }

        .author-title {
            font-size: 14px;
            color: var(--text-muted);
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .testimonial-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--background-card);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .testimonial-btn:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .testimonial-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: var(--primary-color);
            transform: scale(1.3);
        }

        /* NEW Newsletter Section */
        .newsletter-section {
            padding: 80px 5%;
            background: linear-gradient(135deg, rgba(26, 28, 30, 0.9), rgba(17, 19, 21, 0.9)), url('uploads/pattern.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            background-color: var(--background-card);
            border-radius: var(--border-radius-lg);
            padding: 60px 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .newsletter-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(76, 175, 80, 0.1), transparent 70%);
            z-index: 0;
        }

        .newsletter-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .newsletter-description {
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 20px;
            border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
            background-color: rgba(255, 255, 255, 0.1);
            
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            padding: 16px 30px;
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: var(--primary-dark);
            transform: translateX(3px);
        }

        .newsletter-privacy {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        .newsletter-privacy a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .newsletter-privacy a:hover {
            text-decoration: underline;
        }

        /* NEW Brand Showcase Section */
        .brands-section {
            padding: 100px 5%;
            text-align: center;
            background-color: rgba(26, 28, 30, 0.5);
        }

        .brands-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .brands-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin-top: 50px;
        }

        .brand-item {
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            max-width: 120px;
        }

        .brand-item:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .brand-logo {
            max-width: 100%;
            height: auto;
        }

        /* NEW Instagram Feed Section */
        .instagram-section {
            padding: 120px 5% 80px;
            text-align: center;
        }

        .instagram-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .instagram-item {
            position: relative;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            aspect-ratio: 1/1;
        }

        .instagram-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-item:hover .instagram-img {
            transform: scale(1.1);
        }

        .instagram-icon {
            color: white;
            font-size: 30px;
        }

        .instagram-username {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
            padding: 12px 25px;
            background-color: var(--background-card);
            border-radius: 30px;
            color: var(--text-light);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .instagram-username:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .instagram-username i {
            font-size: 20px;
        }

        /* Enhanced Footer */
        .footer {
            background-color: var(--background-card);
            padding: 80px 5% 40px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(90deg, #4CAF50, #3e8e41);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-description {
            color: var(--text-muted);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-link i {
            font-size: 12px;
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(76, 175, 80, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .contact-text {
            color: var(--text-muted);
            line-height: 1.5;
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .copyright {
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-link {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-bottom-link:hover {
            color: var(--primary-color);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: rotate(-15deg) translateY(-20px);
            }
            50% {
                transform: rotate(-12deg) translateY(-30px);
            }
            100% {
                transform: rotate(-15deg) translateY(-20px);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 54px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 36px;
            }
        }

        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
                padding-top: 50px;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 60px;
            }
            
            .hero-image-container {
                width: 80%;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 25px;
            }
            
            .product-info {
                padding: 20px;
            }
            
            .product-name {
                font-size: 16px;
            }
            
            .product-price {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }
            
            .nav-links, .nav-buttons {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero-title {
                font-size: 42px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .btn {
                padding: 14px 28px;
                font-size: 15px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .section-description {
                font-size: 16px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .product-image-container {
                padding-top: 90%; /* Slightly shorter for mobile */
            }
            
            .product-info {
                padding: 15px;
            }
            
            .product-name {
                font-size: 16px;
                margin-bottom: 8px;
            }
            
            .product-rating {
                margin-bottom: 10px;
            }
            
            .product-price {
                font-size: 18px;
                margin-bottom: 15px;
            }
            
            .product-btn {
                padding: 12px;
                font-size: 14px;
            }
            
            .product-action-btn {
                width: 35px;
                height: 35px;
            }
            
            .newsletter-container {
                padding: 40px 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }
            
            .newsletter-input {
                border-radius: var(--border-radius-sm);
            }
            
            .newsletter-btn {
                border-radius: var(--border-radius-sm);
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 36px;
            }
            
            .hero-image-container {
                width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .product-filter {
                flex-direction: column;
                gap: 10px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 15px;
            }
            
            .product-badge {
                top: 10px;
                left: 10px;
                padding: 4px 10px;
                font-size: 10px;
            }
            
            .product-info {
                padding: 12px;
            }
            
            .product-name {
                font-size: 14px;
                margin-bottom: 6px;
            }
            
            .product-price {
                font-size: 16px;
                margin-bottom: 12px;
            }
            
            .price-old {
                font-size: 12px;
            }
            
            .product-btn {
                padding: 10px;
                font-size: 12px;
            }
            
            .product-actions {
                gap: 10px;
            }
            
            .product-action-btn {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-content {
                padding: 30px 20px;
            }
            
            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .view-all-btn {
                padding: 12px 30px;
                font-size: 14px;
                margin-top: 40px;
            }
        }

        /* User Dropdown */
        .user-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background: var(--background-card);
            min-width: 180px;
            box-shadow: var(--shadow-md);
            z-index: 1001;
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            margin-top: 5px;
        }

        .user-dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            color: var(--text-light);
            padding: 12px 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .dropdown-content a:hover {
            background: rgba(76, 175, 80, 0.1);
            padding-left: 20px;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: var(--background-card);
            z-index: 1000;
            padding: 100px 40px 40px;
            transition: right 0.4s ease;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .mobile-nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-nav-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 40px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
