@import url('https://fonts.googleapis.com/css2?family=Amiri+Quran&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,700&display=swap');

:root {
    --emox-navy: #0b3b60;
    --emox-navy-dark: #072640;
    --emox-blue: #0284c7;
    --emox-blue-light: #e0f2fe;
    --emox-bg-soft: #f0f7ff;
    --emox-bg-page: #f8fafc;
    --emox-white: #ffffff;
    --emox-text-dark: #0f172a;
    --emox-text-body: #334155;
    --emox-text-muted: #64748b;
    --emox-text-light: #94a3b8;
    --emox-border: #e2e8f0;
    --emox-border-light: #f1f5f9;
    --emox-eco-green: #05c46b;
    --emox-ramadan-green: #043c2e;
    --emox-amber: #f59e0b;
    --emox-red: #dc2626;
    --emox-plum: #831843;
    --emox-yellow: #facc15;
    --emox-whatsapp: #25D366;
    --emox-whatsapp-dark: #1eb856;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-pill: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    display: none !important;
    box-shadow: none;
}

body {
    background-color: #FAFAFB;
    color: var(--emox-text-body);
    font-family: 'IBM Plex Sans Arabic', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    min-height: 100vh;
    padding-top: 110px;
    /* Locked fixed header offset */
}

/* ==========================================================================
   TOP COLORED ATMOSPHERE BACKGROUND FADE (#83d5fc SKY BLUE)
   - 0% to ~15%: strong/full color (#83d5fc)
   - ~15% to ~30%: slightly fading
   - ~30% to ~45%: noticeably more transparent
   - ~45% to ~55%: very subtle
   - Around middle: completely blended into the normal page background
   ========================================================================== */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(620px, 55vh, 860px);
    background: linear-gradient(180deg,
            rgba(131, 213, 252, 1.00) 0%,
            rgba(131, 213, 252, 1.00) 15%,
            rgba(131, 213, 252, 0.82) 22%,
            rgba(131, 213, 252, 0.55) 30%,
            rgba(131, 213, 252, 0.30) 38%,
            rgba(131, 213, 252, 0.14) 45%,
            rgba(131, 213, 252, 0.05) 50%,
            rgba(131, 213, 252, 0.01) 54%,
            rgba(131, 213, 252, 0.00) 58%);
    pointer-events: none;
    z-index: 0;
}

/* Reset for Admin Panel Pages */
body.admin-body,
body.admin-page {
    padding-top: 0 !important;
    background-color: #f8fafc !important;
}

body.admin-body::before,
body.admin-page::before {
    display: none !important;
    content: none !important;
}

header,
main,
footer,
#footer-container {
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   1. HEADER COMPONENT (EMOX TOP BAR & SUBNAV) - ROCK-SOLID FIXED
   ========================================================================== */
.emox-header {
    background: rgba(131, 213, 252, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(7, 38, 64, 0.08);
}

.emox-header.is-scrolled {
    background: rgba(131, 213, 252, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 22px rgba(7, 38, 64, 0.12);
}

.emox-header-top {
    padding: 12px 0;
    position: relative;
    z-index: 50;
}

.emox-header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Modela Boutique Logo */
.emox-logo,
.modela-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.modela-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.modela-brand-title {
    font-size: 20px;
    font-weight: 800;
    color: #072640;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.modela-logo-footer {
    filter: brightness(0) invert(1);
    height: 36px;
}

/* Pill Search Bar */
.emox-search-bar {
    flex: 1;
    max-width: 620px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--emox-bg-page);
    border: 1px solid var(--emox-border);
    border-radius: var(--radius-pill);
    padding: 3px 4px 3px 16px;
    transition: all 0.2s ease;
}

[dir="rtl"] .emox-search-bar {
    padding: 3px 16px 3px 4px;
}

.emox-search-bar:focus-within {
    border-color: var(--emox-blue);
    background: var(--emox-white);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.emox-search-icon-left {
    color: var(--emox-blue);
    margin-right: 10px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

[dir="rtl"] .emox-search-icon-left {
    margin-right: 0;
    margin-left: 10px;
}

.emox-search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--emox-text-dark);
    min-width: 0;
}

.emox-search-input::placeholder {
    color: var(--emox-text-light);
}

.emox-search-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    background: var(--emox-navy);
    color: var(--emox-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.emox-search-btn:hover {
    background: var(--emox-navy-dark);
    transform: scale(1.04);
}

/* Header Actions */
.emox-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.emox-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #072640;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.emox-action-item svg {
    color: #072640;
}

.emox-action-item:hover {
    color: #034870;
    opacity: 0.9;
}

.emox-location-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.emox-location-sub {
    font-size: 11px;
    color: #1e3a5f;
}

.emox-location-main {
    font-weight: 700;
    color: #072640;
}

.emox-flag-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(7, 38, 64, 0.25);
}

/* 4-Language Dropdown */
.lang-dropdown-wrapper {
    position: relative;
    cursor: pointer;
    user-select: none;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    color: #072640;
    font-weight: 700;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(7, 38, 64, 0.05);
}

.lang-dropdown-wrapper:hover {
    background: #ffffff;
}

/* Invisible bridge so mouse moving from button to menu never breaks hover */
.lang-dropdown-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #ffffff !important;
    border: 1px solid rgba(7, 38, 64, 0.14) !important;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(7, 38, 64, 0.22) !important;
    min-width: 185px;
    display: none;
    flex-direction: column;
    padding: 6px 0;
    z-index: 9999 !important;
    overflow: hidden;
}

[dir="rtl"] .lang-dropdown-menu {
    right: auto;
    left: 0;
}

.lang-dropdown-wrapper:hover .lang-dropdown-menu,
.lang-dropdown-wrapper:focus-within .lang-dropdown-menu,
.lang-dropdown-wrapper.is-open .lang-dropdown-menu {
    display: flex;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--emox-text-dark);
    transition: background 0.15s ease;
}

.lang-dropdown-item:hover {
    background: var(--emox-bg-soft);
    color: var(--emox-blue);
}

.lang-dropdown-item.active {
    background: var(--emox-blue-light);
    color: var(--emox-navy);
}

.emox-cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    color: #072640;
    font-weight: 700;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(7, 38, 64, 0.05);
}

.emox-cart-wrapper svg {
    color: #072640;
}

.emox-cart-wrapper:hover {
    background: #ffffff;
}

.emox-cart-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    background: #FACC15;
    color: #072640;
    font-size: 10.5px;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    border: 2px solid #ffffff;
    transition: transform 0.2s ease;
}

[dir="rtl"] .emox-cart-badge {
    right: auto;
    left: -4px;
}

/* Sub Navigation Bar */
.emox-subnav {
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(7, 38, 64, 0.08);
    padding: 8px 0;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.emox-subnav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.emox-subnav a,
.emox-all-categories-btn,
.emox-category-links a {
    color: #072640;
}

.emox-subnav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    flex: 1;
}

.emox-all-categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--emox-text-dark);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: transparent;
    border: none;
    flex-shrink: 0;
}

.emox-all-categories-btn:hover {
    background: var(--emox-bg-page);
}

.emox-nav-divider {
    width: 1px;
    height: 18px;
    background: var(--emox-border);
    flex-shrink: 0;
}

.emox-category-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.emox-category-links::-webkit-scrollbar {
    display: none;
}

.emox-category-links a {
    color: var(--emox-text-body);
    font-weight: 500;
    transition: color 0.2s ease;
}

.emox-category-links a:hover,
.emox-category-links a.active {
    color: var(--emox-blue);
}

.emox-subnav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.emox-deals-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--emox-blue);
}

.emox-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--emox-navy);
}

.emox-live-dot {
    width: 8px;
    height: 8px;
    background: var(--emox-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* ==========================================================================
   2. HERO BENTO GRID COMPONENT (SCREENSHOT 1)
   ========================================================================== */
.hero-bento-section {
    padding: 35px 0 36px 0;
    margin-bottom: -21px;
}

.hero-bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 20px;
}

/* Left Card: Samsung Home Appliances / Main Hero Promo */
.bento-card-samsung {
    background: radial-gradient(circle at 75% 50%, #e0f2fe 0%, #bae6fd 60%, #7dd3fc 100%);
    border-radius: var(--radius-2xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 440px;
}

.bento-samsung-header {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 58%;
    position: relative;
}

[dir="rtl"] .bento-samsung-header {
    align-items: flex-start;
    text-align: right;
}

.bento-brand-badge {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--emox-navy-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bento-sub-title {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--emox-navy-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bento-main-title {
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 800;
    color: var(--emox-navy-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.bento-discount-tag {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    color: var(--emox-navy-dark);
    margin-bottom: 22px;
}

.bento-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--emox-navy-dark);
    color: var(--emox-white);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
    align-self: flex-start;
    box-shadow: 0 4px 14px rgba(7, 38, 64, 0.22);
}

.bento-pill-btn:hover {
    transform: translateY(-2px);
    background: #000000;
    color: #ffffff !important;
}

/* Bento Auto Slideshow (Transparent background, Centered, 17px border radius, no buttons) */
.bento-slideshow-container {
    position: absolute;
    inset-inline-end: 25px;
    bottom: 20px;
    width: 50%;
    max-width: 330px;
    height: 330px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.bento-slideshow-track {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.bento-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: transparent !important;
}

.bento-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.bento-slide-img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    border-radius: 17px;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(7, 38, 64, 0.22));
    transition: transform 0.4s ease;
}

.bento-samsung-img {
    border-radius: 17px;
    max-height: 340px;
    object-fit: contain;
}

/* Middle Column: Two Stacked Cards */
.bento-col-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-card-persil {
    background: linear-gradient(135deg, #701a75 0%, #4a044e 100%);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    color: var(--emox-white);
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-persil-content {
    max-width: 55%;
    z-index: 2;
}

.bento-persil-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.bento-persil-desc {
    font-size: 12px;
    color: #e9d5ff;
    line-height: 1.4;
    margin-bottom: 12px;
}

.bento-card-persil .bento-pill-btn,
.bento-card-saudia .bento-pill-btn {
    background: #ffffff !important;
    color: #072640 !important;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-pill);
    text-decoration: none !important;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.bento-card-persil .bento-pill-btn svg,
.bento-card-saudia .bento-pill-btn svg {
    color: #072640 !important;
}

.bento-card-persil .bento-pill-btn:hover,
.bento-card-saudia .bento-pill-btn:hover {
    background: #f1f5f9 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.bento-link-underline {
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    color: var(--emox-white);
    display: inline-block;
}

.bento-persil-img {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42%;
    max-height: 179px;
    object-fit: contain;
    z-index: 1;
}

[dir="rtl"] .bento-persil-img {
    right: auto;
    left: 12px;
}

.bento-card-saudia {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    color: var(--emox-white);
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-saudia-content {
    max-width: 55%;
    z-index: 2;
}

.bento-saudia-title {
    font-size: clamp(16px, 1.25vw, 19px);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
}

.bento-saudia-img {
    position: absolute;
    right: 10px;
    bottom: 0px;
    width: 51%;
    max-height: 208px;
    object-fit: contain;
    z-index: 1;
}

[dir="rtl"] .bento-saudia-img {
    right: auto;
    left: 10px;
}

/* Right Card: Custom Bundle (Chic Pink Luxury) */
.bento-card-bundle {
    background: linear-gradient(145deg, #fff1f2 0%, #fce7f3 45%, #fbcfe8 100%);
    border-radius: var(--radius-2xl);
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.15);
    border: 1px solid rgba(244, 114, 182, 0.2);
}

.bento-bundle-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bento-bundle-title {
    font-size: 22px;
    font-weight: 800;
    color: #831843;
    line-height: 1.25;
    margin-bottom: 10px;
    font-family: inherit;
}

.bento-bundle-sub {
    font-size: 13px;
    font-weight: 800;
    color: #9d174d;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 114, 182, 0.4);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    display: inline-block;
    box-shadow: 0 2px 10px rgba(219, 39, 119, 0.1);
}

.bento-bundle-img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(131, 24, 67, 0.12);
    margin: 14px 0;
    transition: transform 0.3s ease;
}

.bento-card-bundle:hover .bento-bundle-img {
    transform: scale(1.03);
}

.bento-card-bundle .bento-pill-btn {
    align-self: center;
    background: #831843;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(131, 24, 67, 0.28);
}

.bento-card-bundle .bento-pill-btn:hover {
    background: #9d174d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 24, 67, 0.4);
}

/* ==========================================================================
   3. SECTION HEADINGS & PRODUCT CARDS (SCREENSHOT 1 & 2)
   ========================================================================== */
.section-wrapper {
    margin-bottom: 40px;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--emox-text-dark);
}

.section-view-all {
    font-size: 14px;
    font-weight: 700;
    color: var(--emox-blue);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s ease;
}

[dir="rtl"] .section-view-all svg,
[dir="rtl"] .bento-pill-btn svg {
    transform: rotate(180deg);
}

.section-view-all:hover {
    transform: translateX(3px);
}

[dir="rtl"] .section-view-all:hover {
    transform: translateX(-3px);
}

/* Product Cards Grid (4-column desktop) */
.emox-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ==========================================================================
   SKELETON SHIMMER PLACEHOLDER ANIMATION
   ========================================================================== */
@keyframes emox-skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Full-Bleed Product Card with Built-in Skeleton Shimmer */
.emox-product-card {
    background: #0f172a linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.98) 25%,
        rgba(51, 65, 85, 0.95) 50%,
        rgba(30, 41, 59, 0.98) 75%,
        rgba(15, 23, 42, 0.95) 100%
    );
    background-size: 200% 100%;
    animation: emox-skeleton-shimmer 1.8s infinite ease-in-out;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4.2;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    border: none;
}

.emox-product-card.img-loaded {
    animation: none;
    background: #0f172a;
}

.emox-product-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

/* Full Bleed Background Image with Smooth Fade-In from Skeleton */
.product-card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s ease;
}

.product-card-bg-img.loaded,
.emox-product-card.img-loaded .product-card-bg-img {
    opacity: 1;
}

.emox-product-card:hover .product-card-bg-img {
    transform: scale(1.06);
}

/* Top-Left Discount Pill Badge (%5) */
.product-card-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ff4425;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    padding: 5px 13px;
    border-radius: 9999px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(255, 68, 37, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

/* Top-Right Circular Favorite Heart Button (White Background, Black Icon, Red Filled when Active) */
.product-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: #ffffff;
    /* White background as requested */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    color: #111111;
    /* Black icon */
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-wishlist-btn svg {
    width: 21px;
    height: 21px;
    color: #111111;
    fill: currentColor;
    stroke: none;
    transition: transform 0.25s ease, fill 0.25s ease, color 0.25s ease;
}

[dir="rtl"] .product-wishlist-btn {
    right: 16px;
    left: auto;
}

[dir="rtl"] .product-card-discount-badge {
    left: 16px;
    right: auto;
}

.product-wishlist-btn:hover {
    transform: scale(1.12);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.product-wishlist-btn:hover svg {
    transform: scale(1.1);
    color: #ef4444;
}

/* When favorited: Background stays white, heart is red */
.product-wishlist-btn.active,
.product-wishlist-btn.is-favorite {
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.product-wishlist-btn.active svg,
.product-wishlist-btn.is-favorite svg {
    fill: #ef4444 !important;
    color: #ef4444 !important;
}

/* Bottom Dark Gradient Overlay */
.product-card-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 34px 18px 16px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    z-index: 4;
    transition: all 0.25s ease;
}

/* Product Card Title (Bold White) */
.product-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    text-decoration: none;
}

.product-card-title:hover {
    color: #facc15 !important;
}

/* Pricing Section */
.product-card-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.product-price-main {
    font-size: 21px;
    font-weight: 900;
    color: #FACC15;
    line-height: 1.15;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.2px;
}

.product-price-old {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: line-through;
    font-weight: 500;
}

/* Card Action Buttons (WhatsApp & Map Pin) */
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.btn-card-wa {
    flex: 1;
    background: #ffffff;
    color: #192226;
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgb(255 255 255 / 35%);
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-card-wa:hover {
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(255, 255, 255, 0.5);
}

.btn-card-cart {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-card-cart:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   4. RAMADAN SPECIAL OFFER FULL-WIDTH BANNER (SCREENSHOT 2)
   ========================================================================== */
.ramadan-banner-section {
    margin: 40px 0;
}

.ramadan-banner-container {
    background: radial-gradient(circle at 80% 50%, #064e3b 0%, #043c2e 60%, #022c22 100%);
    border-radius: var(--radius-2xl);
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    color: var(--emox-white);
}

.ramadan-banner-container::before {
    content: '';
    position: absolute;
    top: -50px;
    inset-inline-end: 18%;
    width: 320px;
    height: 450px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 150' fill='none' stroke='rgba(16, 185, 129, 0.25)' stroke-width='3'%3E%3Cpath d='M10 150 V60 Q10 10 50 10 Q90 10 90 60 V150'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.ramadan-basket-img {
    width: 44%;
    max-height: 320px;
    object-fit: cover;
    z-index: 2;
    border-radius: 18px;
}

.ramadan-content-right {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 52%;
}

[dir="rtl"] .ramadan-content-right {
    align-items: flex-start;
    text-align: right;
}

.ramadan-arabic-headline {
    font-size: 44px;
    font-weight: 800;
    color: var(--emox-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.ramadan-discount-ribbon {
    background: #059669;
    color: var(--emox-white);
    padding: 8px 32px;
    border-radius: var(--radius-sm);
    font-size: 28px;
    font-weight: 800;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    margin-bottom: 24px;
    display: inline-block;
}

.ramadan-order-btn {
    background: var(--emox-yellow);
    color: var(--emox-text-dark);
    padding: 12px 36px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-bottom: 20px;
    display: inline-block;
}

.ramadan-order-btn:hover {
    transform: scale(1.05);
}

.ramadan-footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #a7f3d0;
    flex-wrap: wrap;
}

.partner-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

/* ==========================================================================
   5. CATEGORY SECTION IN SOFT BLUE CONTAINER (SCREENSHOT 2)
   ========================================================================== */
.emox-category-box-section {
    background: var(--emox-bg-soft);
    border-radius: var(--radius-2xl);
    padding: 28px 32px;
    margin-bottom: 40px;
}

.emox-cat-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.emox-cat-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.emox-cat-card-white {
    background: #f8fafc;
    border-radius: 22px;
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.18;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.emox-cat-card-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.emox-cat-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
}

.emox-cat-img-wrap img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.emox-cat-card-white:hover .emox-cat-img-wrap img {
    transform: scale(1.08);
}

.emox-cat-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 800;
    color: #072640;
    text-align: center;
    transition: all 0.25s ease;
    z-index: 2;
    display: block;
}

.emox-cat-card-white:hover .emox-cat-card-label {
    background: rgba(255, 255, 255, 0.85);
    color: #0070f3;
}

/* ==========================================================================
   6. ECO-FRIENDLY SECTION WITH OVERLAPPING CARDS (SCREENSHOT 3)
   ========================================================================== */
.eco-section-wrapper {
    margin: 50px 0 90px 0;
    position: relative;
}

.eco-banner-card {
    background: var(--emox-eco-green);
    border-radius: var(--radius-2xl);
    padding: 44px 48px 100px 48px;
    color: var(--emox-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.eco-banner-card::after {
    content: '';
    position: absolute;
    right: 25%;
    top: 10px;
    width: 260px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 21c.5 -4.5 2.5 -8 7 -10' /%3E%3Cpath d='M9 18c6.218 0 10.5 -3.288 11 -12v-2h-4.014c-9 0 -11.986 4 -12 9c0 2.5 1 4.5 2.5 6z' /%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.eco-headline-group {
    max-width: 600px;
    z-index: 2;
}

.eco-main-title {
    font-size: 40px;
    font-weight: 800;
    color: #064e3b;
    line-height: 1.15;
    margin-bottom: 12px;
}

.eco-sub-title {
    font-size: 16px;
    font-weight: 500;
    color: #064e3b;
}

.eco-buy-btn {
    background: #000000;
    color: var(--emox-white);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    z-index: 2;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.eco-buy-btn:hover {
    background: #262626;
}

.eco-overlapping-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: -65px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.eco-card-white {
    background: #0f172a linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.98) 25%,
        rgba(51, 65, 85, 0.95) 50%,
        rgba(30, 41, 59, 0.98) 75%,
        rgba(15, 23, 42, 0.95) 100%
    );
    background-size: 200% 100%;
    animation: emox-skeleton-shimmer 1.8s infinite ease-in-out;
    border-radius: 24px;
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.15;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.eco-card-white.img-loaded {
    animation: none;
    background: #0f172a;
}

.eco-card-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 192, 104, 0.28);
    border-color: #00c068;
}

.eco-card-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin-bottom: 0;
}

.eco-card-img-wrap img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-card-img-wrap img.loaded,
.eco-card-white.img-loaded .eco-card-img-wrap img {
    opacity: 1;
}

.eco-card-white:hover .eco-card-img-wrap img {
    transform: scale(1.08);
}

.eco-card-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(7, 38, 64, 0.72);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-card-white:hover .eco-card-title {
    background: rgba(0, 192, 104, 0.9);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 28px rgba(0, 192, 104, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ==========================================================================
   7. TRIO PROMO BANNERS (SCREENSHOT 4)
   ========================================================================== */
.trio-promo-section {
    margin-bottom: 50px;
}

.trio-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trio-card {
    border-radius: var(--radius-2xl);
    padding: 32px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.trio-card-veg {
    background: #5f17d2;
    color: var(--emox-white);
}

.trio-veg-tag {
    font-size: 14px;
    font-weight: 800;
    color: var(--emox-yellow);
    letter-spacing: 1px;
}

.trio-veg-title {
    font-size: 34px;
    font-weight: 900;
    color: var(--emox-yellow);
    line-height: 1.05;
    margin-bottom: 12px;
}

.trio-veg-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.badge-free-del {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
}

.badge-star-save {
    background: var(--emox-yellow);
    color: var(--emox-text-dark);
    font-weight: 900;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.trio-card-veg-img {
    width: 90%;
    max-height: 245px;
    object-fit: contain;
    margin: auto 0;
}

.trio-btn-burgundy {
    background: #4c0519;
    color: var(--emox-white);
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
}

.trio-card-samsung {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--emox-navy-dark);
    text-align: center;
    align-items: center;
}

.trio-samsung-brand {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.trio-samsung-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 4px;
}

.trio-samsung-ai {
    font-size: 16px;
    font-weight: 700;
    color: var(--emox-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.trio-card-samsung-img {
    width: 85%;
    max-height: 200px;
    object-fit: contain;
    margin: auto 0;
}

.trio-btn-navy {
    background: var(--emox-navy-dark);
    color: var(--emox-white);
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.trio-card-arabic {
    background: var(--emox-red);
    color: var(--emox-white);
    text-align: center;
    align-items: center;
}

.trio-badge-emox {
    background: var(--emox-yellow);
    color: var(--emox-text-dark);
    font-size: 20px;
    font-weight: 900;
    padding: 6px 28px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

.trio-arabic-text-main {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.trio-arabic-text-sub {
    font-size: 13px;
    color: #fecaca;
    margin-bottom: 14px;
}

.trio-card-arabic-img {
    width: 90%;
    max-height: 190px;
    object-fit: contain;
    margin: auto 0;
}

.trio-btn-yellow {
    background: var(--emox-yellow);
    color: var(--emox-text-dark);
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

/* ==========================================================================
   8. BRUTALIST EDITORIAL FOOTER (PRIXA / MODELA BOUTIQUE SPECIFICATION)
   ========================================================================== */
#footer-container,
.bg-neutral-800 {
    background-color: #0c0d0e;
    color: #f3f4f6;
    padding: 72px 0 20px 0;
    overflow: hidden;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.footer-section-stack {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.font-anton {
    font-family: 'Anton', Impact, 'Arial Black', sans-serif !important;
}

.text-d1-desktop {
    font-size: clamp(58px, 12vw, 175px) !important;
    line-height: 0.85 !important;
    letter-spacing: -0.02em !important;
    color: #f3f4f6 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    font-weight: 900 !important;
    user-select: none;
    display: block;
}

/* Row 1: Brand Word 1 (MODELA) + Video/Media Banner + Nav Links */
.footer-row-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.footer-media-wrapper {
    flex: 1;
    max-width: 537px;
    height: 262px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000000;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.footer-media-wrapper video,
.footer-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-self: flex-end;
    padding-bottom: 24px;
    list-style: none;
    margin: 0;
    padding-inline-start: 0;
}

.footer-nav-column a {
    text-decoration: none !important;
    color: #d1d5db;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

[dir="rtl"] .footer-nav-column a:hover {
    transform: translateX(-4px);
}

/* Row 2: Middle Information Bar */
.footer-middle-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 15px;
    gap: 20px;
}

.footer-middle-tagline {
    max-width: 240px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #9ca3af;
    margin: 0;
}

.footer-middle-tagline span {
    color: #f3f4f6;
    font-weight: 600;
}

.footer-middle-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.footer-middle-contact a {
    color: #d1d5db;
    text-decoration: none !important;
    transition: color 0.2s;
}

.footer-middle-contact a:hover {
    color: #ffffff;
}

.footer-middle-contact .footer-phone-bold {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.footer-middle-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #f3f4f6 !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.25s ease;
    text-decoration: none !important;
    box-shadow: none !important;
}

.footer-social-icon-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    color: #f3f4f6;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-social-icon-btn:hover {
    background: #83d5fc;
    border-color: #83d5fc;
    color: #072640 !important;
    transform: translateY(-3px);
    box-shadow: none !important;
}

.footer-social-icon-btn:hover svg {
    color: #072640 !important;
    transform: scale(1.12);
}

/* Row 3: Action Row - Big Blue Button + Brand Word 2 (BOUTIQUE) */
.footer-row-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.footer-cta-btn {
    flex: 1;
    max-width: 537px;
    height: 262px;
    background: linear-gradient(135deg, #1681ff 0%, #83d3f8 100%);
    color: #ffffff !important;
    border: 1px solid #0070f3 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: clamp(23px, 8.5vw, 53px) !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    border-radius: 42px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: none !important;
}

.footer-cta-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-4px);
    box-shadow: none !important;
}

.footer-cta-btn svg {
    width: clamp(24px, 6vw, 53px);
    height: clamp(24px, 6vw, 53px);
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover svg {
    transform: translate(4px, -4px);
}

[dir="rtl"] .footer-cta-btn svg {
    transform: scaleX(-1);
}

[dir="rtl"] .footer-cta-btn:hover svg {
    transform: scaleX(-1) translate(-4px, -4px);
}

/* Row 4: Copyright & Developer Credit Bar (Centered, No Shadow) */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center !important;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.dev-credit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    -webkit-backdrop-filter: blur(8px);
    border-radius: 9999px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all 0.25s ease;
    box-shadow: none !important;
    text-shadow: none !important;
    margin: 0 auto !important;
    cursor: pointer;
}

.dev-credit-badge:hover {
    transform: translateY(-2px);
    box-shadow: none !important;
    text-shadow: none !important;
}

.dev-credit-title {
    font-size: 19px;
    font-weight: 700;
    color: #f3f4f6;
    text-shadow: none !important;
}

.dev-credit-name {
    color: #38bdf8 !important;
    font-weight: 800;
    text-shadow: none !important;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.dev-credit-badge:hover .dev-credit-name {
    color: #7dd3fc !important;
    text-decoration: underline;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none !important;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   9. CATEGORIES & DETAIL PAGES STYLES (SECONDARY PAGES)
   ========================================================================== */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--emox-text-muted);
    margin: 20px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumb-nav a:hover {
    color: var(--emox-blue);
}

.breadcrumb-sep {
    color: var(--emox-text-light);
}

/* Modern Full-Width Catalog & Horizontal Filter System */
.modern-catalog-controls {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Category Quick Pills Row */
.catalog-category-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 8px 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.catalog-category-pills::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: var(--emox-white);
    border: 1px solid var(--emox-border);
    color: var(--emox-text-dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cat-pill:hover {
    border-color: var(--emox-blue);
    color: var(--emox-blue);
    transform: translateY(-1px);
}

.cat-pill.active {
    background: var(--emox-navy);
    color: #ffffff;
    border-color: var(--emox-navy);
    box-shadow: 0 4px 12px rgba(11, 59, 96, 0.25);
}

/* Filter Chips Toolbar */
.catalog-filter-chips-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--emox-white);
    border: 1px solid var(--emox-border-light);
    border-radius: var(--radius-xl);
    padding: 12px 18px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 14px;
}

.chips-left-group,
.chips-right-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.chip-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--emox-bg-page) url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding: 7px 28px 7px 14px;
    border: 1px solid var(--emox-border);
    border-radius: var(--radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--emox-text-dark);
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

[dir="rtl"] .chip-select {
    background-position: left 10px center;
    padding: 7px 14px 7px 28px;
}

.chip-select:hover,
.chip-select:focus {
    border-color: var(--emox-blue);
    background-color: var(--emox-white);
}

.chip-select.active {
    background-color: #e0f2fe;
    border-color: var(--emox-blue);
    color: var(--emox-blue);
    font-weight: 700;
}

.chip-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    border: 1px dashed var(--emox-border);
    background: transparent;
    color: var(--emox-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip-clear-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

/* Results Count Badge */
.catalog-results-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--emox-bg-soft);
    border: 1px solid rgba(2, 132, 199, 0.1);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--emox-text-muted);
    font-weight: 600;
}

.sort-selector-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 13px;
    color: var(--emox-text-muted);
    font-weight: 600;
}

/* Full Width Catalog Products Grid (Matches Homepage 4-column Grid) */
.catalog-products-fullwidth,
.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 50px;
    width: 100%;
    box-sizing: border-box;
}

.category-page-grid {
    display: block;
    margin-bottom: 50px;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--emox-border);
    background: var(--emox-white);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn.active,
.pagination-btn:hover {
    background: var(--emox-navy);
    color: var(--emox-white);
    border-color: var(--emox-navy);
}

/* Product Details Page Layout */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--emox-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--emox-border-light);
    padding: 40px;
    margin-top: 24px;
    margin-bottom: 50px;
}

.gallery-main-img {
    width: 100%;
    aspect-ratio: 3 / 3.8;
    border-radius: var(--radius-xl);
    border: 1px solid var(--emox-border-light);
    display: block;
    padding: 0;
    overflow: hidden;
    background: #f1f5f9 linear-gradient(
        90deg,
        #f1f5f9 0%,
        #e2e8f0 25%,
        #cbd5e1 50%,
        #e2e8f0 75%,
        #f1f5f9 100%
    );
    background-size: 200% 100%;
    animation: emox-skeleton-shimmer 1.8s infinite ease-in-out;
    margin-bottom: 16px;
    position: relative;
}

.gallery-main-img.img-loaded {
    animation: none;
    background: #f8fafc;
}

.gallery-main-img img {
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: none;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s ease;
}

.gallery-main-img.img-loaded img,
.gallery-main-img img.loaded {
    opacity: 1;
}

.gallery-main-img:hover img {
    transform: scale(1.03);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-thumb-item {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    border: 2px solid var(--emox-border-light);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.gallery-thumb-item.active,
.gallery-thumb-item:hover {
    border-color: var(--emox-blue);
    transform: translateY(-2px);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-brand-badge {
    color: var(--emox-blue);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.detail-product-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--emox-text-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.detail-price-box {
    background: var(--emox-bg-page);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.detail-price-current {
    font-size: 32px;
    font-weight: 900;
    color: var(--emox-text-dark);
}

.detail-price-old {
    font-size: 18px;
    color: var(--emox-text-light);
    text-decoration: line-through;
}

.detail-discount-chip {
    background: var(--emox-red);
    color: var(--emox-white);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 12px;
}

.detail-delivery-widget {
    border: 1px solid var(--emox-border);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 24px;
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

.delivery-row:last-child {
    margin-bottom: 0;
}

/* Dual Ordering Buttons (Direct WhatsApp & Location Details) */
.detail-ordering-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn-order-wa {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: #ffffff !important;
    padding: 16px 28px !important;
    border-radius: var(--radius-pill) !important;
    border: none !important;
    font-size: 16.5px !important;
    font-weight: 800 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.30) !important;
}

.btn-order-wa:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.40) !important;
}

.btn-order-map {
    background: var(--emox-navy);
    color: var(--emox-white);
    padding: 15px 24px;
    border-radius: var(--radius-pill);
    border: none;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-order-map:hover {
    background: var(--emox-navy-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   10. OPENSTREETMAP ORDER MODAL COMPONENT
   ========================================================================== */
.order-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
}

.order-modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.order-modal-wrapper.active,
.order-modal-backdrop.active {
    display: flex;
}

.order-modal-card {
    background: #ffffff;
    border-radius: 28px;
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 30px;
    position: relative;
}

.modal-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-close-modal {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
}

.btn-close-modal:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
    transform: rotate(90deg);
}

.modal-form-group {
    margin-bottom: 18px;
}

.modal-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.modal-input {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    background: #f8fafc;
    color: #0f172a;
}

.modal-input:focus {
    border-color: #0070f3;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.12);
}

.modal-map-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

.modal-map-header .modal-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    line-height: 1.4;
}

.btn-locate-gps {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 500;
    background: #ffffff;
    color: #0284c7;
    border: 1.5px solid #e0f2fe;
    border-radius: var(--radius-pill);
    padding: 7px 15px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.btn-locate-gps:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.btn-locate-gps svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

[dir="rtl"] .btn-locate-gps {
    right: 12px;
    left: auto;
}

.map-box-container {
    position: relative;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

#osm-map {
    width: 100%;
    height: 240px;
    background: #f1f5f9;
}

.map-control-bar {
    display: none !important;
}

.coord-indicator {
    display: none !important;
}

/* Leaflet UI Controls & Attribution Cleanup */
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar,
.leaflet-control-attribution,
.leaflet-control-zoom {
    display: none !important;
    box-shadow: none !important;
}

/* Premium Map Pin Marker */
.custom-map-pin-wrapper {
    background: transparent !important;
    border: none !important;
}

.custom-map-marker {
    position: relative;
    width: 38px;
    height: 48px;
    cursor: grab;
    display: flex;
    justify-content: center;
}

.custom-map-marker:active {
    cursor: grabbing;
}

.marker-pin {
    width: 38px;
    height: 38px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, #0284c7 0%, #82d3fc 100%);
    position: absolute;
    transform: rotate(-45deg);
    top: 0;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-map-marker:hover .marker-pin {
    transform: rotate(-45deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.55);
}

.marker-pin svg {
    transform: rotate(45deg);
    width: 19px;
    height: 19px;
    stroke: #ffffff;
    stroke-width: 2.2;
}

.marker-pulse {
    background: rgba(2, 132, 199, 0.35);
    border-radius: 50%;
    height: 12px;
    width: 12px;
    position: absolute;
    bottom: 2px;
    transform: rotateX(60deg);
    z-index: -1;
    animation: markerPulse 1.8s infinite ease-out;
}

@keyframes markerPulse {
    0% {
        transform: rotateX(60deg) scale(0.6);
        opacity: 1;
    }

    100% {
        transform: rotateX(60deg) scale(2.8);
        opacity: 0;
    }
}

/* ==========================================================================
   11. COMPREHENSIVE MOBILE RESPONSIVE OVERHAUL
   Preserves desktop 100%, optimizes mobile layouts to be clean, fluid, and robust
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px !important;
    }

    .hero-bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-card-bundle {
        grid-column: span 2;
    }

    .emox-products-grid,
    .catalog-products-fullwidth,
    .catalog-products-grid,
    .emox-cat-grid-5,
    .emox-cat-grid-8,
    .eco-overlapping-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px !important;
        row-gap: 16px !important;
        column-gap: 16px !important;
        width: 100% !important;
    }

    .emox-product-card {
        aspect-ratio: 3 / 4.1 !important;
        min-height: auto !important;
        height: auto !important;
        border-radius: 20px !important;
    }

    .trio-promo-grid {
        grid-template-columns: 1fr;
    }

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

/* Tablet & Mobile Breakpoint (<= 768px) */
@media (max-width: 768px) {
    html {
        overflow-x: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        padding-top: 132px !important;
        /* Offset for locked fixed mobile header */
    }

    .container {
        padding: 0 14px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    section,
    .section-wrapper,
    .hero-bento-section,
    .stories-rail-section,
    #footer-container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    body::before {
        height: clamp(520px, 58vh, 720px);
        background: linear-gradient(180deg,
                rgba(131, 213, 252, 1.00) 0%,
                rgba(131, 213, 252, 1.00) 15%,
                rgba(131, 213, 252, 0.82) 24%,
                rgba(131, 213, 252, 0.52) 32%,
                rgba(131, 213, 252, 0.28) 40%,
                rgba(131, 213, 252, 0.12) 46%,
                rgba(131, 213, 252, 0.03) 51%,
                rgba(131, 213, 252, 0.00) 58%);
    }

    /* Fixed Header on Mobile: ROCK-SOLID STUCK, NEVER MOVES 1MM */
    .emox-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: visible !important;
        background: rgba(131, 213, 252, 0.96) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        z-index: 1000 !important;
        box-shadow: 0 4px 18px rgba(7, 38, 64, 0.08) !important;
    }

    .emox-header-top {
        padding: 7px 0 4px 0;
        position: relative !important;
        z-index: 50 !important;
    }

    .emox-header-top .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .modela-brand-logo {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-width: 0;
        flex-shrink: 1;
    }

    .modela-logo-img {
        height: 28px;
        width: auto;
        flex-shrink: 0;
    }

    .modela-brand-title {
        font-size: 15px !important;
        font-weight: 800;
        color: #072640 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .emox-header-actions {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    .lang-dropdown-wrapper {
        position: relative !important;
        z-index: 200 !important;
        padding: 4px 8px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.95) !important;
        color: #072640 !important;
    }

    .lang-dropdown-wrapper span {
        font-size: 11px !important;
        font-weight: 700;
        color: #072640 !important;
    }

    .lang-dropdown-menu {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        background: #ffffff !important;
        border: 1px solid rgba(7, 38, 64, 0.18) !important;
        border-radius: 14px !important;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25) !important;
        min-width: 175px !important;
        z-index: 9999 !important;
        overflow: hidden !important;
    }

    [dir="rtl"] .lang-dropdown-menu {
        left: 0 !important;
        right: auto !important;
    }

    [dir="ltr"] .lang-dropdown-menu {
        right: 0 !important;
        left: auto !important;
    }

    .lang-dropdown-item {
        padding: 10px 14px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #072640 !important;
        background: #ffffff !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }

    .lang-dropdown-item:last-child {
        border-bottom: none !important;
    }

    .lang-dropdown-item:hover,
    .lang-dropdown-item:active {
        background: #f0f7ff !important;
        color: #0284c7 !important;
    }

    .lang-dropdown-item.active {
        background: #e0f2fe !important;
        color: #0369a1 !important;
    }

    .emox-flag-avatar {
        width: 16px;
        height: 16px;
    }

    .emox-cart-wrapper {
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.95) !important;
        position: relative;
    }

    .emox-cart-wrapper svg {
        width: 18px;
        height: 18px;
        color: #072640 !important;
    }

    .emox-cart-text {
        display: none !important;
    }

    /* Fixed: Cart badge strictly stays inside screen bounds */
    .emox-cart-badge {
        top: -3px !important;
        inset-inline-end: 0px !important;
        width: 16px !important;
        height: 16px !important;
        font-size: 9.5px !important;
        background: #FACC15 !important;
        color: #072640 !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
    }

    .emox-search-bar {
        order: 3;
        width: 100% !important;
        max-width: 100% !important;
        margin: 4px 0 3px 0px !important;
        height: 40px;
        background: #ffffff;
        border-radius: var(--radius-pill);
        box-shadow: 0 3px 10px rgba(7, 38, 64, 0.08);
        box-sizing: border-box !important;
    }

    [dir="rtl"] .emox-search-bar {
        padding: 3px 16px 3px 1px !important;
    }

    .emox-location-text,
    .emox-action-item[title="Delivery Location"] {
        display: none !important;
    }

    /* Mobile Sub-Navigation */
    .emox-subnav {
        padding: 5px 0;
        background: rgba(255, 255, 255, 0.4) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.5) !important;
        border-bottom: 1px solid rgba(7, 38, 64, 0.08) !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    .emox-subnav .container {
        padding: 0 12px;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 10px;
        scrollbar-width: none !important;
        /* Hide horizontal scrollbar */
        -ms-overflow-style: none !important;
    }

    .emox-subnav .container::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .emox-all-categories-btn,
    .emox-category-links a {
        color: #072640 !important;
    }

    /* Mobile Smaller Story Cards */
    .story-preview-card {
        width: 105px !important;
        height: 165px !important;
        border-radius: 15px !important;
    }

    .story-author-avatar-wrap {
        width: 26px !important;
        height: 26px !important;
        padding: 2px !important;
    }

    .story-author-name-line {
        font-size: 10px !important;
    }

    .story-author-sub-line {
        font-size: 9.5px !important;
    }

    .story-card-prod-title {
        font-size: 10px !important;
    }

    .story-card-prod-price {
        font-size: 11.5px !important;
    }

    /* Mobile Hero Bento Grid */
    .hero-bento-section {
        padding: 28px 0 24px 0;
    }

    .hero-bento-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bento-card-samsung {
        padding: 24px 20px;
        min-height: auto;
    }

    .bento-samsung-header {
        max-width: 100% !important;
        width: 100% !important;
        align-items: flex-start !important;
    }

    .bento-main-title {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: 8px;
    }

    .bento-discount-tag {
        font-size: 19px;
        margin-bottom: 14px;
    }

    .bento-pill-btn {
        padding: 10px 22px;
        font-size: 13px;
        align-self: flex-start !important;
    }

    .bento-slideshow-container {
        position: relative !important;
        inset-inline-end: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 260px !important;
        height: 220px !important;
        margin: -63px auto -17px -23px !important;
        border-radius: 17px !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .bento-slide {
        background: transparent !important;
        border-radius: 17px !important;
    }

    .bento-slide-img {
        max-width: 90% !important;
        max-height: 90% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 17px !important;
        filter: drop-shadow(0 10px 20px rgba(7, 38, 64, 0.20)) !important;
    }

    .bento-col-middle {
        gap: 14px;
    }

    .bento-card-persil,
    .bento-card-saudia {
        padding: 20px 18px;
        min-height: 180px;
    }

    .bento-persil-content,
    .bento-saudia-content {
        max-width: 65%;
    }

    .bento-persil-img {
        max-height: 150px;
        width: 40%;
    }

    .bento-saudia-img {
        max-height: 181px;
        width: 44%;
    }

    .bento-card-bundle {
        grid-column: span 1;
        padding: 24px 18px 18px 18px;
    }

    .bento-card-bundle .bento-pill-btn {
        display: none !important;
    }

    .bento-card-bundle .bento-bundle-img {
        margin-bottom: -6px !important;
    }

    /* Mobile & Tablet Product Grids: Small Even Gutters (14px on all sides), Fluid Viewport Sizing */
    .emox-products-grid,
    .catalog-products-fullwidth,
    .catalog-products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        row-gap: 14px !important;
        column-gap: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Mobile: Exactly 6 products shown per section on index homepage only */
    .section-wrapper .emox-products-grid:not(.catalog-products-grid) .emox-product-card:nth-child(n+7) {
        display: none !important;
    }
    .catalog-products-grid .emox-product-card:nth-child(n+7),
    .catalog-products-fullwidth .emox-product-card:nth-child(n+7) {
        display: flex !important;
    }

    .emox-product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        aspect-ratio: 3 / 4.15 !important;
        min-height: auto !important;
        height: auto !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
        border: none !important;
        background: #0f172a !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .product-card-discount-badge {
        top: 10px;
        left: 10px;
        padding: 3px 8px;
        font-size: 11px;
    }

    .product-wishlist-btn {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16) !important;
    }

    .product-wishlist-btn svg {
        width: 18px;
        height: 18px;
        color: #111111 !important;
        fill: currentColor !important;
        stroke: none !important;
    }

    .product-wishlist-btn.active svg,
    .product-wishlist-btn.is-favorite svg {
        fill: #ef4444 !important;
        color: #ef4444 !important;
    }

    [dir="rtl"] .product-wishlist-btn {
        right: 10px;
        left: auto;
    }

    [dir="rtl"] .product-card-discount-badge {
        left: 10px;
        right: auto;
    }

    .product-card-gradient-overlay {
        padding: 20px 8px 10px 8px;
    }

    .product-card-title {
        font-size: 12.5px;
        line-height: 1.25;
        margin-bottom: 3px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price-main {
        font-size: 14.5px;
        font-weight: 800;
    }

    .product-price-old {
        font-size: 10.5px;
    }

    .product-card-actions {
        gap: 5px;
        display: flex;
        align-items: center;
        margin-top: 4px;
    }

    .btn-card-wa {
        padding: 6px 8px;
        font-size: 11px;
        font-weight: 700;
        border-radius: 9px;
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    .btn-card-wa span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-card-cart {
        display: inline-flex;
        width: 30px;
        height: 30px;
        padding: 0;
        border-radius: 9px;
        flex-shrink: 0;
    }

    /* Mobile Ramadan Banner */
    .ramadan-banner-section {
        margin: 24px 0;
    }

    .ramadan-banner-container {
        flex-direction: column;
        padding: 24px 16px;
        min-height: auto;
        text-align: center;
    }

    .ramadan-content-right {
        margin: 0 auto;
        text-align: center;
        align-items: center;
        max-width: 100%;
        order: 1;
    }

    [dir="rtl"] .ramadan-content-right {
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .ramadan-basket-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        margin: 20px auto -10px auto !important;
        order: 2;
        border-radius: 18px !important;
    }

    .ramadan-arabic-headline {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .ramadan-discount-ribbon {
        font-size: 20px;
        padding: 6px 22px;
        margin-bottom: 18px;
    }

    .ramadan-order-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 15px;
    }

    /* Mobile Category Soft-Blue Boxes (Laptops & Fashion) */
    .emox-category-box-section {
        padding: 20px 14px;
        border-radius: var(--radius-xl);
        margin-bottom: 24px;
    }

    .emox-cat-grid-5,
    .emox-cat-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .emox-cat-card-white {
        padding: 0 !important;
        border-radius: 18px !important;
        aspect-ratio: 1 / 1.18 !important;
    }

    .emox-cat-img-wrap {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin-bottom: 0 !important;
    }

    .emox-cat-card-label {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 10px 8px !important;
        font-size: 13px !important;
        border-radius: 0 0 18px 18px !important;
    }

    /* Mobile Eco-Friendly Section */
    .eco-section-wrapper {
        margin: 30px 0 60px 0;
    }

    .eco-banner-card {
        padding: 24px 18px 70px 18px;
        border-radius: var(--radius-xl);
        flex-direction: column;
        gap: 14px;
    }

    .eco-main-title {
        font-size: 26px;
    }

    .eco-sub-title {
        font-size: 14px;
    }

    .eco-buy-btn {
        width: 100%;
        text-align: center;
    }

    .eco-overlapping-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: -45px;
        padding: 0 4px !important;
    }

    .eco-card-white {
        padding: 0 !important;
        border-radius: 14px !important;
        aspect-ratio: 1 / 1.15 !important;
    }

    .eco-card-img-wrap {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin-bottom: 0 !important;
    }

    .eco-card-title {
        position: absolute !important;
        bottom: 5px !important;
        left: 3px !important;
        right: 3px !important;
        padding: 4px 6px !important;
        font-size: 10.5px !important;
        font-weight: 700 !important;
        border-radius: 9999px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    /* Mobile Trio Promo Banners */
    .trio-promo-section {
        margin-bottom: 30px;
    }

    .trio-promo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trio-card {
        padding: 24px 20px;
        min-height: auto;
    }

    .trio-veg-title,
    .trio-samsung-title {
        font-size: 26px;
    }

    .trio-card-veg-img,
    .trio-card-samsung-img,
    .trio-card-arabic-img {
        max-height: 160px;
        margin: 14px auto;
    }

    .trio-btn-burgundy,
    .trio-btn-navy,
    .trio-btn-yellow {
        width: 100%;
        text-align: center;
    }

    /* Categories Catalog Page on Mobile */
    .category-page-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .filter-sidebar {
        display: none;
        /* Collapsible on mobile */
    }

    .filter-sidebar.mobile-open {
        display: block;
        margin-bottom: 20px;
    }

    .btn-mobile-filter {
        display: inline-flex;
    }

    /* Product Details Page on Mobile */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 16px;
        border-radius: var(--radius-xl);
        margin-bottom: 30px;
    }

    .gallery-main-img {
        border-radius: 16px !important;
        aspect-ratio: 3 / 3.8 !important;
        margin-bottom: 12px !important;
    }

    .detail-product-title {
        font-size: 20px;
    }

    .detail-price-current {
        font-size: 26px;
    }

    .detail-btn-group {
        flex-direction: column;
    }

    /* Modal on Mobile */
    .order-modal-card {
        padding: 20px 16px;
        border-radius: var(--radius-xl);
    }

    #osm-map {
        height: 200px;
    }

    /* Footer on Mobile */
    #footer-container,
    .bg-neutral-800 {
        padding: 44px 0 11px 0;
        margin-top: 40px;
    }

    .footer-inner-wrap {
        padding: 0 16px;
    }

    .footer-row-1 {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .text-d1-desktop {
        font-size: clamp(52px, 14vw, 76px) !important;
        line-height: 0.9 !important;
    }

    .footer-media-wrapper {
        max-width: 100%;
        height: 200px;
    }

    .footer-nav-column {
        align-self: center;
        flex-direction: row;
        gap: 16px;
        padding-bottom: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-middle-bar {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-row-action {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-cta-btn {
        border-radius: 20px;
        padding: 12px 20px;
        max-width: 100%;
        height: 72px;
        font-size: 20px !important;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .dev-credit-title {
        font-size: 15px !important;
        font-weight: 700;
        color: #f3f4f6;
        text-shadow: none !important;
    }
}

/* ==========================================================================
   10. INSTAGRAM STORIES RAIL & FULLSCREEN STORY VIEWER (SCREENSHOT 1 & 2)
   ========================================================================== */
.stories-rail-section {
    background: #eedc2f;
    padding: 20px 24px;
    border-radius: var(--radius-2xl);
    margin: 22px 0;
    box-shadow: 0 10px 30px rgba(238, 220, 47, 0.25);
    overflow: hidden;
    max-width: 100%;
}

.stories-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stories-section-title {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.stories-cards-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 4px 12px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    /* Hide horizontal scrollbar Firefox */
    -ms-overflow-style: none !important;
    /* IE/Edge */
}

.stories-cards-track::-webkit-scrollbar {
    display: none !important;
    /* Hide horizontal scrollbar Chrome/Safari/Opera */
    width: 0 !important;
    height: 0 !important;
}

/* Compact, elegant Story Cards */
.story-preview-card {
    width: 140px;
    height: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #0f172a linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.98) 25%,
        rgba(51, 65, 85, 0.95) 50%,
        rgba(30, 41, 59, 0.98) 75%,
        rgba(15, 23, 42, 0.95) 100%
    );
    background-size: 200% 100%;
    animation: emox-skeleton-shimmer 1.8s infinite ease-in-out;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    user-select: none;
}

.story-preview-card.img-loaded {
    animation: none;
    background: #111111;
}

.story-preview-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.story-card-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
}

.story-card-bg-media.loaded,
.story-preview-card.img-loaded .story-card-bg-media {
    opacity: 1;
}

.story-preview-card:hover .story-card-bg-media {
    transform: scale(1.05);
}

.story-card-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

/* Card Header: Brand/Author Badge */
.story-card-author-header {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    inset-inline-end: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
}

[dir="rtl"] .story-card-author-header {
    flex-direction: row;
    /* In RTL, Avatar on RIGHT, Text on LEFT */
}

[dir="ltr"] .story-card-author-header {
    flex-direction: row;
    /* In LTR, Avatar on LEFT, Text on RIGHT */
}

.story-author-avatar-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5px;
}

.story-author-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.story-author-info-box {
    display: flex;
    flex-direction: column;
}

[dir="rtl"] .story-author-info-box {
    align-items: flex-start;
    text-align: right;
    direction: rtl;
}

[dir="ltr"] .story-author-info-box {
    align-items: flex-start;
    text-align: left;
    direction: ltr;
}

.story-author-name-line {
    font-size: 11.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.story-author-sub-line {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.story-verified-icon {
    width: 13px;
    height: 13px;
    color: #ffffff;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

/* Card Bottom Info */
.story-card-bottom-info {
    position: absolute;
    bottom: 10px;
    inset-inline: 10px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.story-card-prod-title {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.story-card-prod-price {
    font-size: 12.5px;
    font-weight: 900;
    color: #FACC15;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   INSTAGRAM STORY FULLSCREEN MODAL VIEWER (SCREENSHOT 2)
   ========================================================================== */
#instagram-story-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

#instagram-story-modal.is-active {
    display: flex;
    opacity: 1;
}

.story-modal-phone-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 92vh;
    max-height: 880px;
    background: #000000;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
}

/* Top Progress Bars */
.story-progress-bar-container {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 30;
    display: flex;
    gap: 4px;
}

.story-progress-segment {
    flex: 1;
    min-width: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.story-progress-fill {
    height: 100%;
    background: #ffffff;
    width: 0%;
    border-radius: 4px;
}

/* Top Header */
.story-modal-header {
    position: absolute;
    top: 30px;
    left: 16px;
    right: 16px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.story-modal-header>* {
    pointer-events: auto;
}

.story-close-button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.story-close-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

.story-modal-author-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

[dir="rtl"] .story-modal-author-badge {
    flex-direction: row;
}

[dir="ltr"] .story-modal-author-badge {
    flex-direction: row;
}

.story-modal-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    padding: 3px;
    object-fit: contain;
}

.story-modal-author-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Main Media */
.story-active-media-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #000;
}

.story-active-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Touch / Click Navigation Zones */
.story-touch-nav-zone {
    position: absolute;
    top: 80px;
    bottom: 140px;
    z-index: 25;
    cursor: pointer;
}

.story-touch-prev {
    left: 0;
    width: 35%;
}

.story-touch-next {
    right: 0;
    width: 65%;
}

/* Bottom Product Bar (Screenshot 2) */
.story-bottom-product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 40px 20px 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.story-bottom-title {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    text-align: right;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

[dir="ltr"] .story-bottom-title {
    text-align: left;
}

.story-bottom-pricing {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 12px;
    direction: ltr;
}

[dir="rtl"] .story-bottom-pricing {
    direction: rtl;
    justify-content: flex-start;
}

.story-bottom-price-old {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.story-bottom-price-main {
    font-size: 26px;
    font-weight: 900;
    color: #FACC15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Bright Yellow CTA Button (Screenshot 2) */
.story-view-product-btn {
    width: 100%;
    background: #FACC15 !important;
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    padding: 16px 20px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none !important;
    display: block;
    margin-top: 6px;
    box-shadow: 0 4px 20px rgba(250, 204, 21, 0.45);
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.story-view-product-btn:hover {
    background: #eab308 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(250, 204, 21, 0.6);
}

@media (max-width: 768px) {
    .stories-rail-section {
        padding: 9px 14px;
        border-radius: var(--radius-xl);
    }

    .story-preview-card {
        width: 110px;
        height: 190px;
        border-radius: 15px;
    }

    .story-modal-phone-frame {
        max-width: 100%;
        height: 100vh;
        max-height: 100%;
        border-radius: 0;
    }

    .story-bottom-product-overlay {
        padding: 30px 16px 28px 16px;
    }
}

/* Small Mobile Phones (<= 480px): Consistent 12px Gutters On All Sides */
@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }

    .emox-products-grid,
    .catalog-products-fullwidth,
    .catalog-products-grid {
        gap: 12px !important;
        row-gap: 12px !important;
        column-gap: 12px !important;
    }

    .emox-product-card {
        border-radius: 16px !important;
        aspect-ratio: 3 / 4.2 !important;
    }

    .product-card-gradient-overlay {
        padding: 16px 6px 8px 6px !important;
    }

    .product-card-title {
        font-size: 11.5px !important;
        line-height: 1.25 !important;
        margin-bottom: 2px !important;
    }

    .product-price-main {
        font-size: 13.5px !important;
    }

    .product-price-old {
        font-size: 10px !important;
    }

    .btn-card-wa {
        padding: 5px 6px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
    }

    .btn-card-cart {
        width: 28px !important;
        height: 28px !important;
        border-radius: 8px !important;
    }

    .product-card-discount-badge {
        top: 8px !important;
        left: 8px !important;
        padding: 2px 7px !important;
        font-size: 10.5px !important;
    }

    .product-wishlist-btn {
        top: 8px !important;
        right: 8px !important;
        width: 32px !important;
        height: 32px !important;
    }

    [dir="rtl"] .product-wishlist-btn {
        right: 8px !important;
        left: auto !important;
    }

    [dir="rtl"] .product-card-discount-badge {
        left: 8px !important;
        right: auto !important;
    }
}

/* ==========================================================================
   HEADER DELIVERY LOCATION MAP MODAL
   ========================================================================== */
.header-delivery-location-widget {
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.header-delivery-location-widget:hover {
    background: rgba(2, 132, 199, 0.08);
    border-radius: 8px;
}

.delivery-map-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.delivery-map-backdrop.active {
    opacity: 1;
    visibility: visible;
}
.delivery-map-modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.delivery-map-modal-wrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.delivery-map-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.delivery-map-modal-wrapper.active .delivery-map-card {
    transform: scale(1) translateY(0);
}
.delivery-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}
.delivery-map-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.delivery-map-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.delivery-map-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}
.delivery-map-subtitle {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748b;
}
.btn-close-delivery-map {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-close-delivery-map:hover {
    background: #fee2e2;
    color: #e11d48;
    border-color: #fca5a5;
}
.kurdistan-city-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.kurdistan-city-pills::-webkit-scrollbar {
    display: none;
}
.city-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.city-pill-btn:hover {
    border-color: #0284c7;
    color: #0284c7;
    background: #f0f9ff;
}
.city-pill-btn.active {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}
.delivery-map-container {
    position: relative;
    width: 100%;
    height: 320px;
    background: #f1f5f9;
}
#delivery-header-map {
    width: 100%;
    height: 100%;
}
.btn-delivery-gps {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #0284c7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
[dir="rtl"] .btn-delivery-gps {
    right: auto;
    left: 14px;
}
.btn-delivery-gps:hover {
    background: #f0f9ff;
    border-color: #0284c7;
    transform: translateY(-1px);
}
.delivery-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
    gap: 12px;
}
.delivery-selected-info {
    display: flex;
    flex-direction: column;
}
.delivery-selected-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}
.delivery-selected-name {
    font-size: 14px;
    color: #0f172a;
    font-weight: 800;
}
.btn-save-delivery-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #0284c7;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.btn-save-delivery-location:hover {
    background: #0369a1;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* =========================================================================
   LIVE BROADCAST (پەخشی راستەوخۆ) COMING SOON PAGE - LUXURY GLASSMORPHISM
   ========================================================================= */
.live-stream-page-wrapper {
    position: relative;
    padding: 60px 20px 80px;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fbf9f5;
}

.live-stream-page-wrapper .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

/* Atmospheric Ambient Glowing Orbs behind glass */
.live-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.65;
    pointer-events: none;
    z-index: 1;
    animation: floatOrb 12s ease-in-out infinite alternate;
}
.live-orb-1 {
    width: 480px;
    height: 480px;
    top: -80px;
    right: 5%;
    background: radial-gradient(circle, rgba(255, 99, 132, 0.35) 0%, rgba(255, 205, 86, 0.15) 70%, transparent 100%);
}
.live-orb-2 {
    width: 520px;
    height: 520px;
    bottom: -100px;
    left: 8%;
    background: radial-gradient(circle, rgba(0, 192, 104, 0.28) 0%, rgba(56, 189, 248, 0.18) 70%, transparent 100%);
    animation-delay: -6s;
}
.live-orb-3 {
    width: 320px;
    height: 320px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, rgba(168, 85, 247, 0.12) 60%, transparent 100%);
}

@keyframes floatOrb {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-40px) scale(1.08); }
}

/* Luxury Frosted Glass Master Container */
.live-glass-master-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(32px) saturate(190%);
    -webkit-backdrop-filter: blur(32px) saturate(190%);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 36px;
    padding: 60px 48px;
    box-shadow: 
        0 30px 80px rgba(15, 23, 42, 0.08),
        0 1px 3px rgba(15, 23, 42, 0.03),
        inset 0 1px 2px rgba(255, 255, 255, 0.95);
    text-align: center;
}

/* Pulsing Badge */
.live-status-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(254, 226, 226, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(252, 165, 165, 0.7);
    border-radius: 9999px;
    margin-bottom: 26px;
    color: #b91c1c;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.15);
}

.live-radar-dot {
    position: relative;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
}
.live-radar-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #ef4444;
    animation: radarPulse 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}
@keyframes radarPulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Titles */
.live-hero-headline {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.live-hero-headline .gradient-accent {
    background: linear-gradient(135deg, #e11d48 0%, #db2777 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.live-hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 500;
}

/* Glass Feature Cards Grid */
.live-features-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
    text-align: center;
}

.live-feature-item {
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 26px 22px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.live-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.live-feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.icon-box-rose {
    background: rgba(244, 63, 94, 0.12);
    color: #e11d48;
}
.icon-box-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}
.icon-box-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.live-feature-title {
    font-size: 17px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.live-feature-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
}

/* Call To Action Box */
.live-cta-glass-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.65) 100%);
    border: 1.5px dashed rgba(203, 213, 225, 0.9);
    border-radius: 28px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: right;
}

.live-cta-text h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}
.live-cta-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.live-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-live-notify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #25d366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
    transition: all 0.25s ease;
}
.btn-live-notify:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.38);
    color: #ffffff;
}

.btn-live-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}
.btn-live-back:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .live-glass-master-card {
        padding: 40px 20px;
        border-radius: 28px;
    }
    .live-hero-headline {
        font-size: 28px;
    }
    .live-hero-desc {
        font-size: 15px;
    }
    .live-features-glass-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .live-cta-glass-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
    }
    .live-cta-actions {
        width: 100%;
        flex-direction: column;
    }
    .btn-live-notify, .btn-live-back {
        width: 100%;
        justify-content: center;
    }
}

/* Product Detail Page - Size Selection Buttons */
.size-select-btn {
    min-width: 44px;
    height: 38px;
    padding: 0 14px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.size-select-btn:hover {
    border-color: #0284c7;
    background: #f0f9ff;
    color: #0284c7;
    transform: translateY(-1px);
}

.size-select-btn.active {
    background: #0284c7 !important;
    border-color: #0284c7 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25) !important;
    transform: translateY(-1px);
}