/* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #004b93 0%, #1b3a61 100%);
            color: white;
            padding: 60px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .footer-logo-group {
            max-width: 300px;
        }

        .footer-logo h3 {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #e30613, #cc1122);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #eaeaea;
            margin-bottom: 25px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-email, .footer-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #eaeaea;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-email:hover, .footer-phone:hover {
            color: #e30613;
        }

        .email-icon, .phone-icon {
            font-size: 1.1rem;
        }

        .footer-nav {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-nav-group {
            min-width: 150px;
        }

        .footer-header {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-header::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(to right, #e30613, #cc1122);
            border-radius: 2px;
        }

        .footer-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav-list li {
            margin-bottom: 12px;
        }

        .footer-link {
            color: #eaeaea;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-link:hover {
            color: #e30613;
            transform: translateX(5px);
        }

        .footer-social {
            max-width: 250px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #eaeaea;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .social-icon.facebook:hover {
            background: #1877f2;
            color: white;
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }

        .social-icon.linkedin:hover {
            background: #0077b5;
            color: white;
        }

        .social-icon.twitter:hover {
            background: #1da1f2;
            color: white;
        }

        .social-icon.youtube:hover {
            background: #ff0000;
            color: white;
        }

        .footer-newsletter {
            margin-top: 20px;
        }

        .newsletter-title {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .newsletter-text {
            font-size: 0.85rem;
            color: #eaeaea;
            margin-bottom: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.85rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-input:focus {
            border-color: #e30613;
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-button {
            padding: 12px 20px;
            background: #e30613;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-button:hover {
            background: #cc1122;
            transform: translateY(-2px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            color: #eaeaea;
            font-size: 0.9rem;
        }

        .company-name {
            color: #e30613;
            font-weight: 600;
        }

        .footer-legal {
            display: flex;
            gap: 25px;
        }

        .footer-legal-link {
            color: #eaeaea;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal-link:hover {
            color: #e30613;
        }

        .footer-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(227, 6, 19, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .decoration-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .decoration-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 5%;
            animation-delay: 2s;
        }

        .decoration-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 8%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .new-products-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            
            .divider-title {
                font-size: 2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-nav {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-nav {
                grid-template-columns: 1fr;
            }
            
            .social-icons {
                gap: 10px;
            }
        }