/* ===============================================
   HEADER & MOBILE MENU STYLING
   =============================================== */

/* Main Header Bar */
.site-header {
    background-color: #1ccfd5 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 9999 !important;
}

/* Branding Logo Text */
.site-branding h1 a {
    color: #ffffff !important;
    font-weight: 800 !important;
}

/* Hide Hamburger Toggle on PC / Desktop */
.mobile-menu-toggle {
    display: none !important;
}

/* Desktop Menu Layout */
.site-navigation ul,
.site-navigation ul.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.site-navigation li {
    position: relative !important;
    list-style: none !important;
}

.site-navigation a {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 10px 0 !important;
    display: block !important;
}

/* ===============================================
   MOBILE PHONE / TABLET BREAKPOINT (MAX 768px)
   =============================================== */
@media screen and (max-width: 768px) {

    /* Show 3-Line Hamburger Button on Mobile */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 28px !important;
        height: 20px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        z-index: 100001 !important;
    }

    .mobile-menu-toggle span {
        width: 100% !important;
        height: 3px !important;
        background-color: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s ease-in-out !important;
    }

    /* Transform Hamburger into 'X' when open */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg) !important;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg) !important;
    }

    /* Mobile Dropdown Menu Drawer */
    .site-navigation {
        display: none !important; /* Hidden until toggled */
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #1ccfd5 !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
        padding: 10px 0 !important;
        z-index: 100000 !important;
    }

    .site-navigation.active {
        display: block !important; /* Shows menu when button clicked */
    }

    /* Vertical Mobile Links Stack */
    .site-navigation ul,
    .site-navigation ul.nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .site-navigation li {
        width: 100% !important;
    }

    .site-navigation a {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    /* Mobile Sub-menu Indentation */
    .site-navigation ul.sub-menu {
        position: static !important;
        display: block !important;
        background-color: rgba(0, 0, 0, 0.08) !important;
        box-shadow: none !important;
    }

    .site-navigation ul.sub-menu a {
        padding-left: 35px !important;
        font-weight: 500 !important;
        text-transform: none !important;
    }
}
/*
Theme Name: Ironmart WooCommerce Theme
Theme URI: https://example.com
Author: You
Description: A custom premium-styled WooCommerce theme matching the Ironmart design.
Version: 1.0
Text Domain: ironmart-theme
*/

/* Global Reset & Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: #0284c7;
}

/* Header & Navigation Styling */
.top-bar {
    background-color: #004b9a;
    color: #fff;
    font-size: 12px;
    padding: 8px 5%;
}
.top-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.top-bar-links a { color: #fff; margin-left: 15px; text-decoration: none; }

.iron-header {
    background-color: #0066cc;
    padding: 20px 5% 10px;
    color: #fff;
}
.header-main {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.site-logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-logo .logo-icon { color: #ccff00; }
.header-search {
    display: flex;
    width: 40%;
}
.header-search input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}
.header-search button {
    padding: 10px 15px;
    border: none;
    background: #fff;
    color: #0066cc;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.header-nav-area {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.iron-nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 500;
}
.header-actions a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: bold;}

/* Hero Section */
.hero-section {
    position: relative;
    max-width: 1300px;
    margin: 20px auto;
    display: flex;
    min-height: 500px;
    background-color: #e6ecef;
    border-radius: 8px;
    overflow: hidden;
}
.hero-image-bg {
    width: 60%;
    background-color: #e2e8f0;
    background-size: cover;
    background-position: center;
}
.hero-content-box {
    width: 40%;
    background: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo-ipsum { font-weight: bold; margin-bottom: 20px; color: #333; }
.hero-content-box h1 { font-size: 42px; line-height: 1.1; margin-bottom: 20px; color: #1a1a1a; }
.hero-content-box p { color: #666; margin-bottom: 30px; line-height: 1.6; }
.btn-shop-now {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    width: max-content;
}

/* Features Bar */
.features-bar {
    max-width: 1300px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.feature { display: flex; align-items: center; gap: 15px; width: 23%; }
.feature .icon { font-size: 24px; color: #0066cc; }
.feature strong { display: block; font-size: 14px; color: #333; }
.feature p { margin: 0; font-size: 12px; color: #777; }

/* Category Grid */
.home-categories { max-width: 1300px; margin: 60px auto; }
.home-categories h2 { text-align: left; margin-bottom: 30px; color: #333; }
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.category-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}
.category-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.category-card img { width: 120px; height: 120px; object-fit: contain; margin-bottom: 15px; }
.category-card h3 { font-size: 14px; margin: 0 0 5px; text-transform: uppercase; color: #333; }
.category-card p { font-size: 11px; color: #999; margin: 0; }

/* Promo Banners */
.promo-banners {
    max-width: 1300px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.promo {
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 50px;
}
.promo-dark { background: #111; color: #fff; }
.promo-blue { background: #001f5c; color: #fff; }
.promo h2 { font-size: 32px; margin-bottom: 20px; }
.promo a { color: #fff; text-decoration: underline; font-weight: bold; }

/* Product Sections Generic */
.product-section { max-width: 1300px; margin: 60px auto; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.section-header h2 { margin: 0; color: #333; font-size: 20px; }
.see-more { color: #0066cc; font-weight: bold; }

/* Mini 3 Banners (Wireless, Upcoming, Gaming) */
.mini-banners {
    max-width: 1300px; margin: 60px auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px;
}
.mini-banner { background: #e2e8f0; padding: 30px; border-radius: 8px; height: 200px; display: flex; align-items: center;}
.mini-banner h3 { font-size: 22px; margin-bottom: 10px; }
.mini-banner-yellow { background: #facc15; }

/* Wide Banner */
.wide-banner {
    max-width: 1300px; margin: 60px auto; background: #0ea5e9;
    color: white; padding: 40px; border-radius: 8px; text-align: center;
}

/* Latest Articles */
.article-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.article-card { background: #fff; padding: 20px; border-radius: 8px; }
.article-card h4 { color: #0066cc; font-size: 14px; margin-bottom: 10px;}
.article-card p { font-size: 12px; color: #666; }

/* Newsletter Section */
.newsletter-section {
    max-width: 1300px; margin: 60px auto; background: #fff; padding: 60px;
    display: flex; justify-content: space-between; align-items: center; border-radius: 8px;
}
.newsletter-content h2 { font-size: 28px; margin-bottom: 10px; }
.newsletter-form { display: flex; width: 50%; }
.newsletter-form input { flex: 1; padding: 15px; border: 1px solid #ddd; border-radius: 4px 0 0 4px; }
.newsletter-form button { background: #0066cc; color: #fff; border: none; padding: 15px 30px; border-radius: 0 4px 4px 0; font-weight: bold;}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: #fff; padding: 30px; border-radius: 8px; text-align: center;}
.stars { color: #facc15; margin-bottom: 15px; }

/* Modernized WooCommerce Product Grid */
ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
    gap: 24px !important;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
ul.products::before, ul.products::after { display: none !important; }
ul.products li.product {
    background: #ffffff; padding: 20px; border-radius: 12px;
    border: 1px solid #e2e8f0; text-align: center; position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; justify-content: space-between;
}
ul.products li.product:hover {
    transform: translateY(-6px); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08); border-color: #cbd5e1;
}
ul.products li.product img {
    width: 100%; height: 180px; object-fit: contain;
    background: #f8fafc; border-radius: 8px; padding: 15px; box-sizing: border-box; margin-bottom: 15px;
}
span.price { color: #0f172a !important; font-weight: 700; font-size: 18px; margin-bottom: 15px; display: block; }
span.price del { color: #94a3b8; font-size: 14px; font-weight: 400; margin-right: 6px; }
span.price ins { text-decoration: none; color: #ef4444; }
ul.products li.product .button {
    background-color: #0066cc !important; color: #ffffff !important;
    padding: 12px 20px !important; border-radius: 8px !important; font-weight: 600 !important;
    font-size: 14px !important; border: none !important; display: block; width: 100%; box-sizing: border-box; margin-top: auto;
}
ul.products li.product .button:hover { background-color: #004b9a !important; }

/* Full Footer Layout */
.site-footer { margin-top: 60px; }
.footer-top { background: #0066cc; color: white; padding: 40px 5%; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom { background: #1e293b; color: #94a3b8; padding: 60px 5% 20px; }
.footer-columns { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;}
.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #94a3b8; text-decoration: none; }
.footer-col ul li a:hover { color: #fff; }
.footer-copyright { max-width: 1300px; margin: 0 auto; border-top: 1px solid #334155; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px;}

/* =========================================
   FIX 1: WOOCOMMERCE PRODUCT CARD SQUISH
   ========================================= */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
    gap: 24px !important;
}

/* Force override WooCommerce default 22% widths and floats */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*=columns-] li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    display: flex !important;
    flex-direction: column;
}

/* =========================================
   FIX 2: HEADER & MENU COLORS
   ========================================= */
.site-header {
    background-color: #0066cc !important; /* Blue Header Background */
    padding: 20px 5%;
    border-bottom: none;
}

.site-branding h1 a {
    color: #ffffff !important; /* White Site Title */
}

.site-navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.site-navigation a {
    color: #ffffff !important; /* White Menu Links */
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

.site-navigation a:hover {
    color: #ccff00 !important; /* Neon green on hover */
}

/* =========================================
   FIX 3: SINGLE PRODUCT PAGE LAYOUT & COLORS
   ========================================= */

/* Constrain Single Product Page Width */
.single-product .site-content,
.single-product .woocommerce-product-gallery,
.single-product .summary,
.single-product .related {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    float: none !important; /* Forces it to stop stretching full-width */
}

/* Ensure the main WooCommerce container behaves correctly */
.single-product .woocommerce {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

/* Fix "Related Products" Squishing on Single Product Page */
.woocommerce .related ul.products li.product, 
.woocommerce .upsells ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* Add Background Color to PageLayer Row */
/* Note: Change #f4f7f6 to any color hex code you prefer */
.p-dgy5639.pagelayer-row {
    background-color: #0274be !important; 
    padding-top: 20px;
    padding-bottom: 20px;
}
/* --- MOBILE RESPONSIVENESS FIXES --- */

/* 1. Prevent all horizontal scrolling */
body, html {
    overflow-x: hidden;
    max-width: 100%;
}

/* 2. Target screens smaller than 768px (Tablets & Phones) */
@media screen and (max-width: 768px) {
    
    /* Stack the Header vertically */
    .header-main, .header-nav-area, .top-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .header-search {
        width: 100%;
    }
    .iron-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .iron-nav a {
        margin-right: 0;
    }
    .header-actions {
        margin-top: 10px;
    }

    /* Stack the Hero Banner */
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }
    .hero-image-bg {
        width: 100%;
        height: 250px; /* Gives the image some height on mobile */
    }
    .hero-content-box {
        width: 100%;
        padding: 30px 20px;
        box-sizing: border-box; /* Keeps padding inside the screen width */
    }
    .hero-content-box h1 {
        font-size: 32px;
    }

    /* Stack the Features Bar */
    .features-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .feature {
        width: 100%;
    }

    /* Adjust Categories to 2 columns on mobile */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .category-card {
        padding: 15px;
    }

    /* Stack Promo Banners */
    .promo-banners {
        grid-template-columns: 1fr;
    }
    .promo {
        height: auto;
        padding: 30px 20px;
        text-align: center;
    }
    
    /* Adjust WooCommerce Product Grid for Mobile */
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* 3. Extra fix for very small phones */
@media screen and (max-width: 480px) {
    .category-grid, ul.products {
        grid-template-columns: 1fr !important; /* 1 column on very small screens */
    }
}
/* Add 20px spacing to the sides of all front-page sections */
.hero-section, 
.features-bar, 
.home-categories, 
.promo-banners, 
.todays-deals {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
/* --- SHOP BY CATEGORY RESPONSIVE GRID FIX --- */

/* 1. Wrapper Container Safety */
.home-categories {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* 2. Base Grid Structure */
.category-grid {
    display: grid !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 3. Category Card Design */
.category-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: inherit !important;
    box-sizing: border-box !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card img {
    object-fit: contain !important;
}

/* --- 4x4 GRID FOR DESKTOP (4 Columns) --- */
@media screen and (min-width: 769px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr) !important; /* 4 items per row */
        gap: 20px !important;
    }

    .category-card {
        padding: 20px 15px !important;
    }

    .category-card img {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 12px !important;
    }

    .category-card h3 {
        font-size: 16px !important;
        font-weight: 700 !important;
        margin: 0 0 6px 0 !important;
        color: #0f172a !important;
    }

    .category-card p {
        font-size: 12px !important;
        color: #64748b !important;
        margin: 0 !important;
    }
}

/* --- 2x2 GRID FOR MOBILE (2 Columns) --- */
@media screen and (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 items per row */
        gap: 12px !important;
    }

    .category-card {
        padding: 14px 10px !important;
    }

    .category-card img {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 8px !important;
    }

    .category-card h3 {
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin: 0 0 4px 0 !important;
        color: #0f172a !important;
    }

    .category-card p {
        font-size: 11px !important;
        color: #64748b !important;
        margin: 0 !important;
    }
}

/* --- SITE FOOTER & MENUS --- */
.site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 50px 20px 20px;
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact, 
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li, 
.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact a, 
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover, 
.footer-links a:hover {
    color: #38bdf8;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.footer-socials a {
    display: inline-block;
    padding: 6px 12px;
    background: #1e293b;
    color: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #0ea5e9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 13px;
}

/* Footer Mobile Grid Fix */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* ===============================================
   4-CARD GRID FOOTER (#1ccfd5 BACKGROUND)
   =============================================== */

/* Main Cyan Footer Area */
footer.site-footer,
.site-footer {
    background-color: #1ccfd5 !important;
    padding: 40px 15px 25px 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* 4-Card Grid Row for PC */
.footer-cards-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Explicit 4-column layout on PC */
    gap: 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* White Card Box Styling */
.footer-card {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    padding: 25px 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

/* Card Headings */
.footer-logo {
    color: #0f172a !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin: 0 0 12px 0 !important;
}

.footer-heading {
    color: #0f172a !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

.footer-desc {
    color: #475569 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Clear Bullet Points */
.footer-card ul,
.footer-card ol,
.footer-links-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links-list li {
    list-style: none !important;
    margin-bottom: 8px !important;
}

.footer-links-list a {
    color: #0284c7 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-links-list a:hover {
    color: #0369a1 !important;
    text-decoration: underline !important;
}

/* Contact Details */
.footer-contact-info p {
    color: #334155 !important;
    font-size: 13px !important;
    margin: 0 0 8px 0 !important;
}

.footer-contact-info a {
    color: #0284c7 !important;
    text-decoration: none !important;
}

/* Social Link Buttons */
.footer-social-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 12px !important;
}

.footer-social-links a {
    display: inline-block !important;
    padding: 6px 12px !important;
    background-color: #0f172a !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.2s ease !important;
}

.footer-social-links a:hover {
    background-color: #0284c7 !important;
}

/* Copyright Section Below Cards */
.footer-bottom-bar {
    max-width: 1200px !important;
    margin: 30px auto 0 auto !important;
    text-align: center !important;
}

.footer-bottom-bar p {
    color: #0f172a !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

/* ===============================================
   RESPONSIVE DESIGN (TABLET & PHONE)
   =============================================== */

/* Tablet View: 2x2 Grid */
@media screen and (max-width: 992px) {
    .footer-cards-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Phone View: Stacked 4 Cards Vertically */
@media screen and (max-width: 600px) {
    .footer-cards-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .footer-card {
        padding: 20px 15px !important;
    }
}
