/* Site footer rendered on every page via base.html: headings, social
   icons, link lists, the newsletter subscribe form, payment-method row
   and the mobile-centred layout. Dark/neon storefront aesthetic. */
        /* Enhanced Footer Styles */
        .footer-section {
            background: linear-gradient(180deg, rgba(20, 0, 30, 0.9) 0%, rgba(40, 0, 60, 0.95) 100%);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 40px;
            /* Increased bottom padding */
            margin-top: 100px;
            /* Space above footer */
            border-top: 1px solid rgba(255, 0, 255, 0.3);
            box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 10;
        }

        /* Add a subtle glow to the top border */
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.8), transparent);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
        }

        .footer-heading {
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 20px;
            font-size: 1.4rem;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.4);
            letter-spacing: 1px;
        }

        .footer-text {
            opacity: 0.9;
            font-size: 0.95rem;
            line-height: 1.6;
            font-family: Arial, sans-serif;
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(30, 0, 50, 0.5);
            border-radius: 50%;
            color: #fff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .social-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, rgba(255, 0, 255, 0.5) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
            color: #fff;
            border-color: rgba(255, 0, 255, 0.7);
        }

        .social-icon:hover::after {
            opacity: 1;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
            display: inline-block;
        }

        .footer-links a:before {
            content: '›';
            position: absolute;
            left: 0;
            top: 0;
            color: #ff00ff;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #ff00ff;
            text-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
            transform: translateX(5px);
        }

        .footer-links a:hover::before {
            text-shadow: 0 0 8px rgba(255, 0, 255, 0.8);
        }

        .newsletter-form .form-control {
            background-color: rgba(20, 0, 30, 0.4);
            border: 1px solid rgba(255, 0, 255, 0.5);
            color: #fff;
            padding: 12px 15px;
            border-radius: 5px 0 0 5px;
            height: auto;
            font-family: Arial, sans-serif;
        }

        .newsletter-form .form-control:focus {
            background-color: rgba(30, 0, 50, 0.6);
            border-color: #ff00ff;
            box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
            outline: none;
        }

        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
            opacity: 1;
        }

        .newsletter-form .btn-subscribe {
            background: linear-gradient(45deg, #ff00ff, #9900ff);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 15px;
            transition: all 0.3s ease;
        }

        .newsletter-form .btn-subscribe:hover {
            background: linear-gradient(45deg, #9900ff, #ff00ff);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
        }

        .payment-methods {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            gap: 12px;
            justify-content: flex-start;
            align-items: center;
            margin-top: 15px;
        }

        .payment-methods i {
            transition: all 0.3s ease;
        }

        .payment-methods i:hover,
        .payment-methods .klarna-icon:hover {
            color: #ff00ff;
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
            transform: scale(1.1);
        }

        .footer-divider {
            border-color: rgba(255, 0, 255, 0.3);
            margin: 30px 0 20px;
            box-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
        }

        .footer-bottom {
            padding: 10px 0 30px;
            /* Added more bottom padding */
        }

        .copyright,
        .footer-contact {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            font-family: Arial, sans-serif;
        }

        .footer-contact i {
            color: #ff00ff;
            margin-right: 5px;
        }

        @media (max-width: 767px) {
            .footer-section {
                padding: 40px 0 50px;
                /* More bottom space on mobile */
                text-align: center;
            }

            .social-links,
            .payment-methods {
                justify-content: center;
            }

            .footer-contact,
            .copyright {
                text-align: center;
            }

            .text-md-end {
                text-align: center !important;
                margin-top: 15px;
            }

            .footer-links a:hover {
                transform: translateX(0);
            }
        }
