/* 
 * ZAPBOOTS - Premium Footwear Store
 * Responsive Stylesheet
 * Mobile-first approach
 */

/* Base styles are in styles.css - this file contains only media queries for responsive design */

/* ===== MOBILE STYLES (Default) ===== */

/* Product Card Styles for Mobile */
@media (max-width: 768px) {
    .product-card {
        min-width: 200px;
        width: 200px;
        margin-right: 10px;
        flex: 0 0 auto;
    }
    
    .product-img {
        height: 150px;
    }
    
    .product-name {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .current-price {
        font-size: 1rem;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    /* Fix container width for mobile */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal scrolling */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure all elements stay within viewport width */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure images are properly sized */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure navbar stays within screen bounds */
    header {
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    header .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Prevent body scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Fix header for mobile */
    header {
        width: 100%;
        /* Removed overflow-x: hidden to allow dropdowns to appear outside header */
        overflow-x: visible;
    }
    
    /* Hide desktop nav links on mobile */
    nav .nav-links {
        display: none !important;
    }
    
    /* Add background blur when mobile menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 999;
        pointer-events: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: var(--primary-color);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-left: 5px; /* Add margin to prevent overlap */
        min-width: 32px;
    }
    
    .mobile-menu-toggle i {
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle:active {
        animation: pulseEffect 0.2s ease-out;
    }
    
    .mobile-menu-toggle:hover {
        background-color: var(--secondary-color);
    }
    
    .mobile-menu-toggle i {
        font-size: 1.2rem;
        color: white;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background-color: var(--white);
        z-index: 9999; /* Increased z-index to ensure it's above all elements including footer */
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.4s ease-in-out;
        overflow-y: auto;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .mobile-menu-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--gray-100);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background-color: var(--gray-200);
    }
    
    .mobile-menu-close i {
        font-size: 1.2rem;
        color: var(--gray-800);
    }
    
    .mobile-nav {
        flex: 1;
        padding: 30px 0;
    }
    
    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-links li {
        margin-bottom: 20px;
    }
    
    .mobile-nav-links li a {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: var(--gray-800);
        text-decoration: none;
        padding: 12px 0;
        transition: color 0.3s ease;
        min-height: 44px;
    }
    
    .mobile-nav-links li a:hover,
    .mobile-nav-links li a.active {
        color: var(--primary-color);
    }
    
    .mobile-menu-footer {
        padding-top: 20px;
        border-top: 1px solid var(--gray-200);
    }
    
    .mobile-menu-footer .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }

    /* Hero Section */
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.01em;
    }
    
    .hero-content h1 span {
        font-size: 2.7rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Categories Section */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .category-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 0.5s ease-out forwards;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .category-img {
        width: 100%;
        height: 250px;
    }
    
    .category-content {
        padding: 20px;
        text-align: center;
        width: 100%;
    }

    /* Products Section */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Advertisement Sections */
    .featured-product-ad {
        grid-column: span 1;
    }
    
    .shop-banner,
    .special-offer,
    .featured-product-section {
        margin: 2rem 0;
    }
    
    .shop-banner img,
    .special-offer img,
    .featured-product-ad img,
    .featured-product-section img {
        border-radius: var(--radius-md);
    }

    /* Testimonials Section */
    .testimonial-slider {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-card {
        min-width: 100%;
    }

    /* About Section */
    .about-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about-text .section-header {
        text-align: center;
    }

    .about-text .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Newsletter Section */
    .newsletter-form {
        flex-direction: column;
    }

    /* Footer */
    /* Footer styles for mobile only - desktop footer is always visible */
    .footer-content {
        grid-template-columns: repeat(4, 300px);
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        opacity: 0;
        visibility: hidden;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .footer-column {
        flex: 0 0 300px;
        white-space: normal;
    }
    
    footer.active .footer-content {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out 0.1s;
        opacity: 0;
        visibility: hidden;
    }
    
    footer.active .footer-bottom {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Improve touch targets for footer links */
    .footer-links li {
        margin-bottom: 1rem;
    }
    
    .footer-links li a {
        padding: 0.5rem 0;
        display: inline-block;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
}

/* ===== SMALL MOBILE DEVICES ===== */
@media (max-width: 576px) {
    /* General */
    .section-header h2 {
        font-size: 1.8rem;
        white-space: normal;
        overflow: visible;
    }
    
    /* Fix nav icons spacing */
    .nav-icons {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-right: 0;
    }
    
    /* Adjust user avatar size for mobile */
    .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        min-width: 28px;
    }
    
    /* Reduce cart icon size */
    .cart-icon i {
        font-size: 0.9rem;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    /* Adjust logo size */
    .logo a {
        font-size: 1rem;
        white-space: nowrap;
    }
    
    /* Ensure logo doesn't overflow */
    .logo {
        max-width: 30%;
        overflow: hidden;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.01em;
        white-space: normal;
        overflow: visible;
    }
    
    .hero-content h1 span {
        font-size: 3rem;
        white-space: normal;
        overflow: visible;
    }
    
    h1 {
        font-size: 2.2rem;
        white-space: normal;
        overflow: visible;
    }
    
    h2 {
        font-size: 2rem;
        white-space: normal;
        overflow: visible;
    }
    
    h3 {
        font-size: 1.8rem;
        white-space: normal;
        overflow: visible;
    }
}

/* ===== EXTRA SMALL MOBILE DEVICES ===== */
@media (max-width: 480px) {
    /* Adjust section spacing for better mobile readability */
    section {
        padding: 30px 0;
        margin-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    /* Fix content width for smallest screens */
    body {
        width: 100%;
        overflow-x: hidden;
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Further reduce header elements for smallest screens */
    header .container {
        padding: 0 5px;
    }
    
    .logo {
        max-width: 25%;
    }
    
    .logo a {
        font-size: 0.9rem;
    }
    
    .nav-icons {
        gap: 3px;
    }
    
    .search-icon i,
    .cart-icon i {
        font-size: 0.8rem;
    }
    
    .user-avatar {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        min-width: 26px;
    }
    
    .mobile-menu-toggle {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .mobile-menu-toggle i {
        font-size: 0.8rem;
    }
    
    /* Mobile-specific animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes pulseEffect {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    /* Ensure all content sections use full width */
    .section-content,
    .hero-content,
    .product-grid,
    .category-grid,
    .about-content,
    .contact-content,
    .footer-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .hero-content h1 {
        font-size: 1rem;
        letter-spacing: 0.01em;
        /* white-space: normal; */
        overflow: visible;
    }
    
    .hero-content span{
        font-size: 1px;
        white-space: nowrap;
        display: inline-block;
        width: auto;
        max-width: none;
        letter-spacing: -0.5px;
    }
    
    h1 {
        font-size: 16px;
        white-space: normal;
        overflow: visible;
    }
    
    h2 {
        font-size: 15px;
        white-space: normal;
        overflow: visible;
    }
    
    h3 {
        font-size: 14px;
        white-space: normal;
        overflow: visible;
    }
    
    h4 {
        font-size: 13px;
        white-space: normal;
        overflow: visible;
    }
    
    h5, h6 {
        font-size: 12px;
        white-space: normal;
        overflow: visible;
    }
    
    .section-header h2 {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        animation: fadeInUp 0.5s ease-out forwards;
        /* white-space: normal; */
        overflow: visible;
    }
    
    .section-header p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 90%;
        margin: 0 auto;
        padding: 0 5px;
        animation: fadeInUp 0.5s ease-out forwards;
        animation-delay: 0.1s;
    }
    
    p, li, span, a, div {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        opacity: 1;
        visibility: visible;
        display: flex;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        opacity: 1;
        visibility: visible;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.7rem 1.2rem;
        font-size: 14px;
        min-height: 44px;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        animation: fadeInUp 0.5s ease-out forwards;
        animation-delay: 0.2s;
    }
    
    .hero-buttons .btn:active {
        animation: pulseEffect 0.3s ease-out;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0.7rem 1.2rem;
        font-size: 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Categories Section */
    .category-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .category-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 0.5s ease-out forwards;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .category-img {
        width: 100%;
        height: 250px;
    }
    
    .category-card:active {
        transform: scale(0.98);
        animation: pulseEffect 0.3s ease-out;
    }
    
    .category-content {
        width: 100%;
        padding: 20px;
    }

    /* Products Section */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Enhance product images on mobile */
    .product-img {
        height: 280px;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .product-img img {
        width: 100%;
        object-fit: contain;
        padding: 10px;
        background-color: var(--gray-100);
        margin: 0;
        display: block;
    }
    
    .product-card {
        width: auto;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background-color: white;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 0.5s ease-out forwards;
    }
    
    .product-card:active {
        transform: scale(0.98);
        animation: pulseEffect 0.3s ease-out;
    }
    
    /* Improve touch targets for product actions */
    .action-btn {
        width: 44px;
        height: 44px;
        margin: 0 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-actions {
        padding: 1rem 0;
        gap: 0.5rem;
        animation: fadeInUp 0.3s ease-out forwards;
        display: flex;
        justify-content: center;
    }
    
    .action-btn:active {
        animation: pulseEffect 0.3s ease-out;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-name {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-price {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .product-category {
        font-size: 14px;
        color: var(--gray-600);
        margin-bottom: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Special Offer Section */
    .offer-content h3 {
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Brands Section */
    .brands-slider {
        justify-content: center;
    }
}

/* ===== TABLET DEVICES ===== */
@media (min-width: 768px) and (max-width: 991px) {
    /* Container */
    .container {
        max-width: 720px;
    }
    
    /* Categories Section */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Tablet and Small Laptop Screens */
    .product-card {
        min-width: 280px;
        width: 280px;
    }
    
    /* Tablet animations - slightly faster than mobile */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes pulseEffect {
        0% { transform: scale(1); }
        50% { transform: scale(1.03); }
        100% { transform: scale(1); }
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        animation: fadeInUp 0.4s ease-out forwards;
    }
    
    .section-header p {
        animation: fadeInUp 0.4s ease-out forwards;
        animation-delay: 0.1s;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 3rem;
    }
    
    /* Button styling for tablets */
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
        padding: 0.85rem 1.5rem;
        animation: fadeInUp 0.4s ease-out forwards;
        animation-delay: 0.15s;
    }
    
    .hero-buttons .btn:nth-child(2) {
        animation-delay: 0.25s;
    }
    
    .hero-buttons .btn:active {
        animation: pulseEffect 0.3s ease-out;
    }

    /* Categories & Products */
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Enhance product images on tablet */
    .product-img {
        height: 220px;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .product-card {
        width: 100%;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        background-color: white;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 0.4s ease-out forwards;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }
    
    .product-card:active {
        animation: pulseEffect 0.3s ease-out;
    }

    /* Testimonials */
    .testimonial-slider {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .testimonial-card {
        min-width: calc(50% - 1rem);
    }
}

/* ===== DESKTOP DEVICES ===== */
@media (min-width: 992px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Hide mobile menu overlay on desktop */
    .mobile-menu-overlay {
        display: none !important;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 3.5rem;
    }

     .hero-content span {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonial-slider {
        overflow-x: visible;
    }

    /* About Section */
    .about-content {
        gap: 6rem;
    }
    
    /* Ensure footer is always visible on desktop */
    footer .footer-content,
    footer .footer-bottom {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        display: grid;
        overflow-x: visible;
        white-space: normal;
    }
    
    footer .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    footer .footer-column {
        flex: initial;
        white-space: normal;
    }
    
    footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===== LARGE DESKTOP DEVICES ===== */
@media (min-width: 1200px) {
    /* Container */
    .container {
        padding: 0 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Ensure header takes full width */
    header {
        width: 100vw;
        max-width: 100%;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 4rem;
    }

    /* Categories & Products */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .product-grid {
        gap: 2.5rem;
    }
    
    .product-card {
        min-width: 300px;
        width: 300px;
    }

    /* About Section */
    .about-content {
        gap: 8rem;
    }
}

/* ===== EXTRA LARGE DESKTOP DEVICES ===== */
@media (min-width: 1400px) {
    /* Container */
    .container {
        max-width: 100%;
    }

    /* Hero Section */
    .hero {
        padding: 180px 0 100px;
    }

    /* Categories & Products */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .product-grid {
        gap: 3rem;
    }
}

/* ===== LANDSCAPE MODE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-links {
        padding: 1rem 0;
        overflow-y: auto;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    /* Responsive Hero Animations */
    .contact-hero .container {
        flex-direction: column;
    }
    
    .contact-hero .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .contact-hero .hero-decoration {
        display: none; /* Hide decorations on mobile for cleaner look */
    }
    
    .contact-hero .image-container {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .contact-hero .floating-element {
        font-size: 1.5rem;
    }
    
    .contact-hero .element-1 {
        top: 10%;
        left: 0;
    }
    
    .contact-hero .element-2 {
        top: 50%;
        right: 0;
    }
    
    .contact-hero .element-3 {
        bottom: 5%;
        left: 10%;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .dark-mode-toggle,
    .nav-icons,
    .mobile-menu-toggle,
    .hero-buttons,
    .product-actions,
    .newsletter,
    .back-to-top {
        display: none !important;
    }

    header {
        position: static;
        box-shadow: none;
    }

    .hero {
        padding: 2rem 0;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    body {
        font-size: 12pt;
        color: #000 !important;
        background: #fff !important;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .social-icons,
    .payment-methods {
        display: none;
    }
}