/* ARABIC SEO - ZERO VISUAL CHANGES VERSION */
/* ✅ Your store will look EXACTLY THE SAME as it does now */
/* ✅ No changes to colors, fonts, layout, or design */
/* ✅ Only adds optional Arabic support when YOU choose to use it */

/* 1. Import Arabic Fonts (Only when needed) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* 2. Optional Arabic Font Support (Only applied when you add .arabic-text class) */
.arabic-text {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

/* 3. Optional Arabic Product Titles (Only when you add .arabic-title class) */
.arabic-title {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    font-weight: 600;
}

/* 4. Optional Arabic Descriptions (Only when you add .arabic-desc class) */
.arabic-desc {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.7;
}

/* 5. Arabic Search Support (Only affects search when typing Arabic) */
input[type="search"]:lang(ar),
input[type="text"]:lang(ar) {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

/* 6. Optional RTL Layout (Only when you add [dir="rtl"] to HTML elements) */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] * {
    direction: rtl;
}

/* 7. Optional Trust Badges (Hidden by default - show when you add .show-badges class) */
.arabic-trust-badges {
    display: none; /* Hidden by default */
    gap: 10px;
    margin: 20px 0;
    direction: rtl;
    justify-content: flex-start;
}

.arabic-trust-badges.show-badges {
    display: flex;
}

.arabic-badge {
    background: transparent;
    color: inherit;
    border: 1px solid currentColor;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

/* 8. Arabic Currency (Only when you add .arabic-price class) */
.arabic-price::after {
    content: " ر.س";
    font-size: 0.9em;
    color: inherit;
    opacity: 0.7;
}

/* 9. Arabic Platform Labels (Only when you add specific classes) */
.tiktok-ar::after { content: " - تيك توك"; font-size: 0.9em; color: inherit; opacity: 0.7; }
.instagram-ar::after { content: " - إنستجرام"; font-size: 0.9em; color: inherit; opacity: 0.7; }
.twitter-ar::after { content: " - تويتر"; font-size: 0.9em; color: inherit; opacity: 0.7; }
.snapchat-ar::after { content: " - سناب شات"; font-size: 0.9em; color: inherit; opacity: 0.7; }
.gmail-ar::after { content: " - جيميل"; font-size: 0.9em; color: inherit; opacity: 0.7; }

/* 10. Mobile Arabic Support (Only for Arabic content) */
@media (max-width: 768px) {
    .arabic-text, .arabic-title, .arabic-desc {
        font-size: inherit; /* Keeps your existing font sizes */
        line-height: inherit; /* Keeps your existing line heights */
    }
    
    .arabic-trust-badges.show-badges {
        justify-content: center;
    }
}

/* 11. SEO Meta Support (Hidden elements for search engines) */
.seo-arabic-meta {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 12. Logo Rounded Edges */
.f_logo {
    border-radius: 30px; /* Thicker rounded edges for logo */
    overflow: hidden; /* Ensures content respects rounded corners */
    background-color: #1d9bf0; /* Blue background color */
    padding: 20px; /* Adds space around logo to make it bigger */
    display: inline-block; /* Allows padding to work properly */
    text-align: center; /* Centers the logo horizontally */
    line-height: 1; /* Prevents extra vertical spacing */
}

/* Social Icons Colorful Styles */
.tiktok-ar-icon { color: #010101; background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%); border-radius: 50%; }
.instagram-ar-icon { color: #fff; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-radius: 50%; }
.twitter-ar-icon { color: #fff; background: #1da1f2; border-radius: 50%; }
.snapchat-ar-icon { color: #000; background: #fffc00; border-radius: 50%; }
.gmail-ar-icon { color: #fff; background: #d93025; border-radius: 50%; }

/* Example usage: <i class="tiktok-ar-icon"></i> <i class="instagram-ar-icon"></i> ... */

/* Optional: Add some padding and size for icons */
.tiktok-ar-icon, .instagram-ar-icon, .twitter-ar-icon, .snapchat-ar-icon, .gmail-ar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  margin: 0 6px;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tiktok-ar-icon:hover, .instagram-ar-icon:hover, .twitter-ar-icon:hover, .snapchat-ar-icon:hover, .gmail-ar-icon:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* USAGE INSTRUCTIONS:
   
   This CSS preserves your existing design completely.
   To use Arabic features, add these classes manually:
   
   - .arabic-text - for Arabic text
   - .arabic-title - for Arabic product titles  
   - .arabic-desc - for Arabic descriptions
   - .arabic-price - for prices in Arabic
   - .show-badges - to show trust badges
   - .tiktok-ar, .instagram-ar, etc. - for platform labels
   - .f_logo - for rounded logo edges with blue background
   
   Example:
   <h2 class="arabic-title">عنوان المنتج</h2>
   <p class="arabic-desc">وصف المنتج باللغة العربية</p>
   <span class="arabic-price">١٠٠</span>
   <img src="logo.png" class="f_logo" alt="Logo">
   
   Your existing design remains 100% unchanged!
*/


/* ARABIC SEO - ZERO VISUAL CHANGES VERSION */
/* ✅ Your store will look EXACTLY THE SAME as it does now */
/* ✅ No changes to colors, fonts, layout, or design */
/* ✅ Only adds optional Arabic support when YOU choose to use it */

/* 1. Import Arabic Fonts (Only when needed) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* 2. Optional Arabic Font Support (Only applied when you add .arabic-text class) */
.arabic-text {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

/* 3. Optional Arabic Product Titles (Only when you add .arabic-title class) */
.arabic-title {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    font-weight: 600;
}

/* 4. Optional Arabic Descriptions (Only when you add .arabic-desc class) */
.arabic-desc {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    line-height: 1.7;
}

/* 5. Arabic Search Support (Only affects search when typing Arabic) */
input[type="search"]:lang(ar),
input[type="text"]:lang(ar) {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

/* 6. Optional RTL Layout (Only when you add [dir="rtl"] to HTML elements) */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] * {
    direction: rtl;
}

/* 7. Optional Trust Badges (Hidden by default - show when you add .show-badges class) */
.arabic-trust-badges {
    display: none; /* Hidden by default */
    gap: 10px;
    margin: 20px 0;
    direction: rtl;
    justify-content: flex-start;
}

.arabic-trust-badges.show-badges {
    display: flex;
}

.arabic-badge {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

/* 8. Arabic Currency (Only when you add .arabic-price class) */
.arabic-price::after {
    content: " ر.س";
    font-size: 0.9em;
    color: #6c757d;
}

/* 9. Arabic Platform Labels (Only when you add specific classes) */
.tiktok-ar::after { content: " - تيك توك"; font-size: 0.9em; color: #6c757d; }
.instagram-ar::after { content: " - إنستجرام"; font-size: 0.9em; color: #6c757d; }
.twitter-ar::after { content: " - تويتر"; font-size: 0.9em; color: #6c757d; }
.snapchat-ar::after { content: " - سناب شات"; font-size: 0.9em; color: #6c757d; }
.gmail-ar::after { content: " - جيميل"; font-size: 0.9em; color: #6c757d; }

/* 10. Mobile Arabic Support (Only for Arabic content) */
@media (max-width: 768px) {
    .arabic-text, .arabic-title, .arabic-desc {
        font-size: inherit; /* Keeps your existing font sizes */
        line-height: inherit; /* Keeps your existing line heights */
    }
    
    .arabic-trust-badges.show-badges {
        justify-content: center;
    }
}

/* 11. Logo Arabic Support (Only when you add .arabic-logo class) */
.arabic-logo {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    direction: rtl;
    text-align: right;
}

/* Logo Color Options */
.logo-blue { color: #3498db; }
.logo-dark { color: #2c3e50; }
.logo-green { color: #27ae60; }
.logo-red { color: #e74c3c; }
.logo-purple { color: #9b59b6; }
.logo-orange { color: #f39c12; }
.logo-gray { color: #95a5a6; }
.logo-black { color: #000000; }
.logo-white { color: #ffffff; }

/* 12. SEO Meta Support (Hidden elements for search engines) */
.seo-arabic-meta {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 13. FOOTER EDGE-TO-EDGE FIX FOR BIGGER SCREENS */
/* Makes footer background extend like header shadow - content stays normal width */

/* Store Footer Bottom - True Edge-to-Edge Solution */
.store-footer__bottom {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    transform: none !important;
    -webkit-transform: none !important;
    will-change: auto;
}

/* Main Footer Container - Header-Style Shadow */
footer,
.footer,
.site-footer,
[class*="footer"] {
    position: relative;
    /* Don't change width - only background extends */
}

/* Reset Other Footer Elements - Not store-footer__bottom */
footer:not(.store-footer__bottom),
.footer:not(.store-footer__bottom),
.site-footer:not(.store-footer__bottom) {
    /* Keep original layout for other footers */
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Store Footer Bottom Content Container */
.store-footer__bottom .container,
.store-footer__bottom > div {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Don't Force Footer Width - Keep Container Structure Like Header */
/* Remove width forcing - let content stay normal, only background extends */

/* Footer Content Container */
footer .container,
.footer .container,
.site-footer .container,
footer > div,
.footer > div {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Remove Container Constraints */
footer .row,
.footer .row,
footer .col,
.footer .col,
footer [class*="col-"],
.footer [class*="col-"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
}

/* Other Footer Background Extension (Not store-footer__bottom) */
footer:not(.store-footer__bottom)::before,
.footer:not(.store-footer__bottom)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: inherit;
    background-image: inherit;
    background: inherit;
    z-index: -2;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-shadow: inherit;
    pointer-events: none;
}

/* Ensure Footer Position - Force Edge-to-Edge */
.store-footer__bottom {
    position: relative !important;
    overflow: visible !important;
    display: block !important;
    min-height: 1px;
}

footer:not(.store-footer__bottom),
.footer:not(.store-footer__bottom),
.site-footer:not(.store-footer__bottom) {
    position: relative;
    overflow-x: hidden;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* Desktop Specific (Larger Screens) */
@media (min-width: 768px) {
    /* Store Footer Bottom - Larger Rounded Corners */
    .store-footer__bottom {
        border-top-left-radius: 30px !important;
        border-top-right-radius: 30px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        position: relative !important;
    }
    
    /* Other Footer Background Extension - Larger Rounded Corners */
    footer:not(.store-footer__bottom)::before,
    .footer:not(.store-footer__bottom)::before {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    /* Store Footer Bottom Content Padding */
    .store-footer__bottom .container,
    .store-footer__bottom > div {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    /* Store Footer Bottom - Largest Rounded Corners */
    .store-footer__bottom {
        border-top-left-radius: 40px !important;
        border-top-right-radius: 40px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        position: relative !important;
    }
    
    /* Chrome Large Desktop Fix */
    @supports (-webkit-appearance: none) {
        .store-footer__bottom {
            margin-left: calc(-50vw + 50%) !important;
            margin-right: calc(-50vw + 50%) !important;
            transform: translateX(0) !important;
            -webkit-transform: translateX(0) !important;
        }
    }
}
    
    /* Other Footer Background - Larger Rounded Corners */
    footer:not(.store-footer__bottom)::before,
    .footer:not(.store-footer__bottom)::before {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    
    /* Store Footer Bottom Content - Enhanced Padding */
    .store-footer__bottom .container,
    .store-footer__bottom > div {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* Override Common Container Classes */
.container-fluid,
.full-width,
.w-100 {
    width: 100% !important;
    max-width: 100% !important;
}

/* Fix for Bootstrap/Framework Containers */
footer .container-fluid,
.footer .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
}

/* Salla Specific Footer Fix */
.salla-footer,
#footer,
[id*="footer"] {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Fix for Salla Main Container Structure */
.main-nav-container ~ * footer,
.main-nav-container.shadow-default ~ * footer,
.main-nav-container.fixed-pinned ~ * footer,
.main-nav-animated ~ * footer,
.fixed-header ~ * footer {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative;
}

/* Override Container Constraints in Salla Structure */
.main-nav-container ~ .container footer,
.main-nav-container ~ main footer,
.main-nav-container ~ .content footer {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Large Screens - Force True Full Width */
@media (min-width: 992px) {
    /* Store Footer Bottom - Maintain Full Width */
    .store-footer__bottom {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        position: relative !important;
        overflow: visible !important;
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
    }
    
    /* Chrome Large Screen Fix */
    @supports (-webkit-appearance: none) {
        .store-footer__bottom {
            margin-left: calc(-50vw + 50%) !important;
            margin-right: calc(-50vw + 50%) !important;
        }
    }
    
    /* Other Footer Elements - Keep Header-Style Behavior */
    footer:not(.store-footer__bottom),
    .footer:not(.store-footer__bottom),
    .site-footer:not(.store-footer__bottom) {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Ensure No Horizontal Scroll - Browser Compatibility */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Chrome Viewport Fix - All Screens */
@supports (-webkit-appearance: none) {
    html {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Ultra-Wide Chrome Viewport Fix */
    @media (min-width: 1920px) {
        html {
            width: 100vw !important;
            max-width: 100vw !important;
            overflow-x: hidden !important;
        }
        
        body {
            width: 100% !important;
            max-width: 100% !important;
            overflow-x: hidden !important;
            position: relative !important;
        }
    }
}

/* Browser Compatibility - Force Full Width */
* {
    box-sizing: border-box;
}

.store-footer__bottom {
    box-sizing: border-box !important;
}

.store-footer__bottom * {
    box-sizing: border-box;
}

/* Chrome/Blink Engine Specific Fixes */
@supports (-webkit-appearance: none) {
    .store-footer__bottom {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        left: 0 !important;
        right: 0 !important;
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
    }
}

/* Ultra-Wide Screens (32-inch and larger) - Chrome Compatibility */
@media (min-width: 1920px) {
    .store-footer__bottom {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        overflow: hidden;
    }
    
    /* Chrome Ultra-Wide Fix */
    @supports (-webkit-appearance: none) {
        .store-footer__bottom {
            margin-left: calc(-50vw + 50%) !important;
            margin-right: calc(-50vw + 50%) !important;
            transform: translateX(0) !important;
            -webkit-transform: translateX(0) !important;
            will-change: auto;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
    }
}

/* 4K Screens (2560px+) - Chrome Compatibility */
@media (min-width: 2560px) {
    .store-footer__bottom {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        border-top-left-radius: 50px !important;
        border-top-right-radius: 50px !important;
    }
    
    /* Chrome 4K Fix */
    @supports (-webkit-appearance: none) {
        .store-footer__bottom {
            margin-left: calc(-50vw + 50%) !important;
            margin-right: calc(-50vw + 50%) !important;
            transform: translateX(0) !important;
            -webkit-transform: translateX(0) !important;
            border-top-left-radius: 50px !important;
            border-top-right-radius: 50px !important;
            -webkit-border-top-left-radius: 50px !important;
            -webkit-border-top-right-radius: 50px !important;
        }
    }
}

/* 32-inch Displays (3840px+) - Chrome Compatibility */
@media (min-width: 3840px) {
    .store-footer__bottom {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        border-top-left-radius: 60px !important;
        border-top-right-radius: 60px !important;
        overflow: hidden;
    }
    
    /* Chrome 32-inch Fix */
    @supports (-webkit-appearance: none) {
        .store-footer__bottom {
            margin-left: calc(-50vw + 50%) !important;
            margin-right: calc(-50vw + 50%) !important;
            transform: translateX(0) translateY(0) !important;
            -webkit-transform: translateX(0) translateY(0) !important;
            border-top-left-radius: 60px !important;
            border-top-right-radius: 60px !important;
            -webkit-border-top-left-radius: 60px !important;
            -webkit-border-top-right-radius: 60px !important;
            will-change: auto;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            contain: layout style paint;
        }
    }
    
    /* 32-inch Content Container */
    .store-footer__bottom .container,
    .store-footer__bottom > div {
        max-width: 1400px;
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Webkit/Chrome Border Radius Fix */
@supports (-webkit-appearance: none) {
    .store-footer__bottom {
        border-top-left-radius: 25px !important;
        border-top-right-radius: 25px !important;
        -webkit-border-top-left-radius: 25px !important;
        -webkit-border-top-right-radius: 25px !important;
    }
    
    @media (min-width: 768px) {
        .store-footer__bottom {
            border-top-left-radius: 30px !important;
            border-top-right-radius: 30px !important;
            -webkit-border-top-left-radius: 30px !important;
            -webkit-border-top-right-radius: 30px !important;
        }
    }
    
    @media (min-width: 1200px) {
        .store-footer__bottom {
            border-top-left-radius: 40px !important;
            border-top-right-radius: 40px !important;
            -webkit-border-top-left-radius: 40px !important;
            -webkit-border-top-right-radius: 40px !important;
        }
    }
}
/* Override any parent container constraints */
body .store-footer__bottom,
main .store-footer__bottom,
.container .store-footer__bottom,
.content .store-footer__bottom {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    left: 0 !important;
    right: 0 !important;
}

/* Chrome Layout Fix */
@supports (-webkit-appearance: none) {
    body .store-footer__bottom,
    main .store-footer__bottom,
    .container .store-footer__bottom,
    .content .store-footer__bottom {
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
}

/* Additional Salla Structure Overrides */
.main-nav-container.shadow-default.fixed-pinned.main-nav-animated.fixed-header {
    z-index: 1000;
}

.main-nav-container ~ .container,
.main-nav-container ~ main,
.main-nav-container ~ .content {
    position: relative;
    overflow-x: visible;
}

/* Force Footer to Break Out of Container */
.container footer::before,
main footer::before,
.content footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    background: inherit;
    z-index: -1;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

/* Footer Links and Content Spacing */
footer a,
.footer a {
    display: inline-block;
    padding: 5px 0;
}

footer ul,
.footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

footer li,
.footer li {
    margin-bottom: 8px;
}

/* Footer Columns Equal Width */
@media (min-width: 768px) {
    footer .row > div,
    .footer .row > div {
        flex: 1;
        min-width: 250px;
    }
}

/* Mobile Compatibility (Keep existing mobile behavior) */
@media (max-width: 767px) {
    footer,
    .footer,
    .site-footer {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.bg-inherit.grid.grid-cols-3.items-center {
    height: 56px !important;
    min-height: 56px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    box-sizing: border-box;
    transition: height 0.3s cubic-bezier(.4,0,.2,1), padding 0.3s cubic-bezier(.4,0,.2,1);
}

/* USAGE INSTRUCTIONS:
   
   This CSS preserves your existing design completely and fixes footer display.
   To use Arabic features, add these classes manually:
   
   - .arabic-text - for Arabic text
   - .arabic-title - for Arabic product titles  
   - .arabic-desc - for Arabic descriptions
   - .arabic-price - for prices in Arabic
   - .show-badges - to show trust badges
   - .tiktok-ar, .instagram-ar, etc. - for platform labels
   - .arabic-logo - for Arabic logo text
   - .logo-blue, .logo-dark, etc. - for logo colors
   
   Example:
   <h1 class="arabic-logo logo-blue">متجر كي دبليو دي</h1>
   <h2 class="arabic-title">عنوان المنتج</h2>
   <p class="arabic-desc">وصف المنتج باللغة العربية</p>
   <span class="arabic-price">١٠٠</span>
   
   Footer will now display edge-to-edge on bigger screens!
   Your existing design remains 100% unchanged!
*/