
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding-top: 80px;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-col h3 {
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-about p {
            color: #aaa;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .footer-contact li {
            margin-bottom: 15px;
            list-style: none;
            display: flex;
            align-items: flex-start;
            color: #aaa;
            font-size: 14px;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--primary);
            font-size: 16px;
            margin-top: 3px;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            list-style: none;
        }
        
        .footer-links a {
            color: #aaa;
            font-size: 14px;
            transition: var(--transition-fast);
            display: block;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-social {
            margin-top: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-newsletter p {
            color: #aaa;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .footer-newsletter form {
            display: flex;
        }
        
        .footer-newsletter input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            outline: none;
            font-size: 14px;
        }
        
        .footer-newsletter button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .footer-bottom {
            background: rgba(0,0,0,0.2);
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            color: #777;
        }
        
        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .payment-methods img {
            height: 25px;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: var(--transition-fast);
        }
        
        .payment-methods img:hover {
            opacity: 1;
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 80px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: var(--shadow-md);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

         @media (max-width: 576px) {
            
            
            .footer-grid {
                grid-template-columns: 1fr;
                            gap: 1px;

            }
            
        
        }

          @media (max-width: 992px) {
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
        }
        
        a,li{
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }