/*
Theme Name: Arbitrage Ecommerce Store - UAE Edition
Author: AK
Description: Specialized WooCommerce Arbitrage & Display Monetization theme built specifically for UAE and GCC markets. Features native Arabic (RTL) & English toggle, AED currency support, Tabby/Tamara/Apple Pay badges, high-converting product showcase layout, and strategic GAM/AdSense ad slots.
Version: 1.3.2
License: GNU General Public License v2 or later
Text Domain: arbitrage-ecommerce-store
Tags: e-commerce, woocommerce, custom-theme, responsive-layout, uae, arabic, rtl, adsense
*/

/* -------------------------------------------------------------------------- */
/* 1. CORE DESIGN TOKENS & DUBAI LUXURY COLOR PALETTE                         */
/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --brand-ink: #0F172A;
    --brand-midnight: #0A1128;
    --brand-dark: #1E293B;
    --brand-gold: #C5A880;
    --brand-gold-hover: #B08D55;
    --brand-gold-light: #FBF7F0;
    --brand-gold-glow: rgba(197, 168, 128, 0.25);
    --brand-emerald: #00897B;
    --brand-red: #E11D48;
    --brand-surface: #FFFFFF;
    --brand-bg: #F8F9FB;
    --brand-card-bg: #FFFFFF;
    --brand-line: #E2E8F0;
    --brand-line-subtle: #F1F5F9;
    --brand-text-muted: #64748B;
    --brand-text-subtle: #94A3B8;
    --brand-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --brand-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --brand-shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.10);
    --brand-radius-sm: 8px;
    --brand-radius-md: 14px;
    --brand-radius-lg: 20px;
    --brand-radius-full: 9999px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--brand-ink);
    background-color: var(--brand-bg);
    overflow-x: hidden;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

/* Arabic RTL Mode Typography */
html[dir="rtl"] body,
body.rtl-mode {
    font-family: 'Cairo', 'Tajawal', 'Plus Jakarta Sans', sans-serif !important;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--brand-midnight);
    letter-spacing: -0.02em;
    font-weight: 700;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
body.rtl-mode h1,
body.rtl-mode h2,
body.rtl-mode h3,
body.rtl-mode h4,
body.rtl-mode h5,
body.rtl-mode h6 {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Logo Display with Strict Size Cap */
.custom-logo-link img,
.site-logo-img,
.site-brand img,
.custom-logo {
    max-height: 50px !important;
    height: 50px !important;
    width: auto !important;
    max-width: 240px !important;
    object-fit: contain !important;
    display: block !important;
}

/* -------------------------------------------------------------------------- */
/* 2. FULL WIDTH CONTAINER (DESKTOP EDGE-TO-EDGE) */
/* -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 100%; /* Full Width Layout */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
}

/* Kicker Badge */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-midnight);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 1.08;
    color: var(--brand-ink);
    font-weight: 800;
}

.section-copy {
    color: #475569;
    line-height: 1.8;
}

/* -------------------------------------------------------------------------- */
/* 3. BUTTONS & INTERACTIVE ELEMENTS */
/* -------------------------------------------------------------------------- */
.lux-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    border: 1px solid var(--brand-midnight);
    background: var(--brand-midnight);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(122,102,130,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.lux-button-primary:hover {
    background: var(--brand-dark-blue);
    border-color: var(--brand-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(2,80,124,0.3);
    color: #ffffff;
}

.lux-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.65rem;
    border-radius: 999px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-midnight);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.lux-button-secondary:hover {
    background: var(--brand-midnight);
    border-color: var(--brand-midnight);
    color: #ffffff;
}

.lux-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-midnight);
    box-shadow: 0 4px 14px rgba(122,102,130,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.lux-icon-button:hover {
    background: var(--brand-midnight);
    color: #ffffff;
    border-color: var(--brand-midnight);
    transform: translateY(-1px);
}

.lux-icon-button:hover svg {
    stroke: #ffffff;
}

.lux-input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--brand-line);
    background: #ffffff;
    color: var(--brand-ink);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lux-input:focus {
    outline: none;
    border-color: var(--brand-midnight);
    box-shadow: 0 0 0 4px rgba(122,102,130,0.15);
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* 4. DUBAI LUXURY TICKER, HEADER & CATEGORY RIBBON                           */
/* -------------------------------------------------------------------------- */
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.85); }
}

.top-ticker-bar {
    background: var(--brand-midnight);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-ticker-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ticker-item-group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.ticker-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(197, 168, 128, 0.18);
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    padding: 0.18rem 0.6rem;
    border-radius: var(--brand-radius-full);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ticker-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 8px #22C55E;
    animation: pulseDot 1.5s infinite;
}

.ticker-trust-links {
    display: none;
    align-items: center;
    gap: 1.1rem;
    font-size: 0.72rem;
    color: #CBD5E1;
    font-weight: 600;
}

@media (min-width: 768px) {
    .ticker-trust-links {
        display: flex;
    }
}

.site-main-header {
    position: sticky;
    top: 0;
    z-index: 990;
    background: #FFFFFF;
    border-bottom: 1px solid var(--brand-line);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
}

.site-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-badge-emblem {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0A1128 0%, #1E293B 100%);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10, 17, 40, 0.2);
    flex-shrink: 0;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

html[dir="rtl"] .brand-text-block,
body.rtl-mode .brand-text-block {
    text-align: right;
}

.brand-text-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-midnight);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.brand-text-sub {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.header-search-wrap {
    flex: 1;
    max-width: 460px;
    margin: 0 1.25rem;
    display: none;
}

@media (min-width: 640px) {
    .header-search-wrap {
        display: block;
    }
}

.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.header-search-input {
    width: 100%;
    padding: 0.65rem 2.85rem 0.65rem 1.15rem;
    border-radius: var(--brand-radius-full);
    border: 1.5px solid var(--brand-line);
    background: #F8F9FB;
    font-size: 0.85rem;
    color: var(--brand-ink);
    outline: none;
    transition: all 0.25s ease;
}

.header-search-input:focus {
    border-color: var(--brand-gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
}

html[dir="rtl"] .header-search-input,
body.rtl-mode .header-search-input {
    padding: 0.65rem 1.15rem 0.65rem 2.85rem;
    text-align: right;
}

.header-search-btn {
    position: absolute;
    right: 7px;
    background: var(--brand-midnight);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.header-search-btn:hover {
    background: var(--brand-gold);
}

html[dir="rtl"] .header-search-btn,
body.rtl-mode .header-search-btn {
    right: auto;
    left: 7px;
}

.header-actions-group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.header-action-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-line);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-midnight);
    transition: all 0.2s;
    text-decoration: none;
}

.header-action-btn:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    transform: translateY(-1px);
}

.header-badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E11D48;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

.mobile-menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-line);
    background: #FFFFFF;
    color: var(--brand-midnight);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-trigger {
        display: none;
    }
}

.category-ribbon-bar {
    background: #FFFFFF;
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
    overflow-x: auto;
    scrollbar-width: none;
}

.category-ribbon-bar::-webkit-scrollbar {
    display: none;
}

.category-ribbon-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.6rem 0;
    white-space: nowrap;
}

.ribbon-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.ribbon-link:hover {
    color: var(--brand-gold);
}

.ribbon-link.is-hot {
    color: #E11D48;
    font-weight: 800;
}

.ribbon-link.is-gold {
    color: #B08D55;
    font-weight: 800;
}

/* -------------------------------------------------------------------------- */
/* 5. MOBILE DRAWER SIDEBAR */
/* -------------------------------------------------------------------------- */
.sidebar-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(88vw, 360px);
    background: #ffffff;
    border-left: 1px solid var(--brand-line);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -20px 0 50px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-drawer.open,
.sidebar-drawer.active {
    transform: translateX(0) !important;
}

.overlay-backdrop {
    position: fixed;
    inset: 0;
    background: var(--brand-bg-overlay, rgba(15,23,42,0.4));
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    backdrop-filter: blur(4px);
}

.overlay-backdrop.open,
.overlay-backdrop.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Custom Scrollbar for Drawer & Menus */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 999px;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 999px;
}

/* -------------------------------------------------------------------------- */
/* 6. DUBAI LUXURY HERO SHOWCASE BANNER                                       */
/* -------------------------------------------------------------------------- */
.dubai-hero-section {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.dubai-hero-card {
    position: relative;
    border-radius: var(--brand-radius-lg);
    background: linear-gradient(135deg, #0A1128 0%, #152244 50%, #0D1730 100%);
    color: #FFFFFF;
    overflow: hidden;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 20px 40px rgba(10, 17, 40, 0.18);
}

@media (min-width: 768px) {
    .dubai-hero-card {
        padding: 3.5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .dubai-hero-card {
        padding: 4rem 3.5rem;
    }
}

.hero-glow-gold {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.28) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-glow-navy {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 137, 123, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.hero-content-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content-grid {
        grid-template-columns: 1.2fr 0.9fr;
    }
}

.hero-kicker-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 0.45rem 1rem;
    border-radius: var(--brand-radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-gold);
}

.hero-main-title {
    margin-top: 1.25rem;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero-main-desc {
    margin-top: 1.25rem;
    font-size: 1.05rem;
    color: #CBD5E1;
    line-height: 1.7;
    max-width: 36rem;
}

/* Flash Countdown Timer Widget inside Hero */
.hero-countdown-box {
    margin-top: 1.75rem;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--brand-radius-md);
    padding: 1rem 1.25rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.65rem;
}

.countdown-header-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-gold);
}

.countdown-timer-units {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.countdown-unit-box {
    background: #0A1128;
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: var(--brand-radius-sm);
    padding: 0.4rem 0.75rem;
    text-align: center;
    min-width: 52px;
}

.countdown-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    font-family: monospace, sans-serif;
    line-height: 1;
}

.countdown-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #94A3B8;
    margin-top: 0.2rem;
}

.hero-cta-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #C5A880 0%, #D4AF37 100%);
    color: #0A1128;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.95rem 1.85rem;
    border-radius: var(--brand-radius-full);
    border: none;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    color: #0A1128;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.75rem;
    border-radius: var(--brand-radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hero-card-display {
    position: relative;
    border-radius: var(--brand-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-display-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.hero-floating-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(10, 17, 40, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: var(--brand-radius-md);
    padding: 1rem 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* 7. SNAPCHAT / INSTAGRAM CATEGORY STORY CIRCLES                             */
/* -------------------------------------------------------------------------- */
.stories-section {
    padding: 1.25rem 0 2rem;
}

.stories-scroll-container {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scrollbar-width: none;
}

.stories-scroll-container::-webkit-scrollbar {
    display: none;
}

.story-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
    width: 78px;
}

.story-ring-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(135deg, #C5A880 0%, #E11D48 50%, #D4AF37 100%);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
    transition: transform 0.25s ease;
}

.story-circle-item:hover .story-ring-wrap {
    transform: scale(1.08);
}

.story-inner-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    overflow: hidden;
}

.story-inner-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-title-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--brand-midnight);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* -------------------------------------------------------------------------- */
/* 8. UAE TRUST & VALUE PROPOSITIONS GRID                                     */
/* -------------------------------------------------------------------------- */
.trust-propositions-section {
    padding-bottom: 2.5rem;
}

.trust-propositions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .trust-propositions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-propositions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    background: #FFFFFF;
    border: 1px solid var(--brand-line);
    border-radius: var(--brand-radius-md);
    padding: 1.35rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--brand-shadow-sm);
    transition: all 0.25s ease;
}

.trust-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: var(--brand-shadow-md);
}

.trust-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-gold-light);
    color: #9A7B4F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-card-body h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-midnight);
}

.trust-card-body p {
    font-size: 0.8rem;
    color: var(--brand-text-muted);
    margin-top: 0.2rem;
    line-height: 1.4;
}

/* -------------------------------------------------------------------------- */
/* 9. HIGH-CONVERTING UAE PRODUCT CARDS & GRID                                */
/* -------------------------------------------------------------------------- */
.products-section-wrap {
    padding-bottom: 4.5rem;
}

.section-head-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .section-head-row {
        flex-direction: row;
        align-items: flex-end;
    }
}

.section-subtitle-kicker {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-gold);
}

.section-main-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--brand-midnight);
    line-height: 1.15;
    margin-top: 0.35rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.product-card {
    background: #FFFFFF;
    border: 1px solid var(--brand-line);
    border-radius: var(--brand-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--brand-shadow-sm);
    position: relative;
}

.product-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-4px);
    box-shadow: var(--brand-shadow-md);
}

.product-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    background: #F8F9FB;
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img-wrap img {
    transform: scale(1.05);
}

.badge-discount-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.65rem;
    border-radius: var(--brand-radius-full);
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.35);
    z-index: 5;
    letter-spacing: 0.02em;
}

html[dir="rtl"] .badge-discount-tag,
body.rtl-mode .badge-discount-tag {
    left: auto;
    right: 0.75rem;
}

.badge-express-delivery {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(10, 17, 40, 0.8);
    backdrop-filter: blur(6px);
    color: #F8FAFC;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--brand-radius-full);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

html[dir="rtl"] .badge-express-delivery,
body.rtl-mode .badge-express-delivery {
    left: auto;
    right: 0.75rem;
}

.product-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-gold);
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-midnight);
    margin-top: 0.35rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.product-card-title a:hover {
    color: var(--brand-gold);
}

.product-card-stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: #F59E0B;
}

.product-card-stars .review-count {
    color: var(--brand-text-muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.price-row-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.current-price-aed {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-midnight);
}

.strikethrough-price {
    font-size: 0.82rem;
    color: #94A3B8;
    text-decoration: line-through;
}

.savings-pill {
    font-size: 0.68rem;
    font-weight: 700;
    background: #ECFDF5;
    color: var(--brand-emerald);
    padding: 0.15rem 0.45rem;
    border-radius: var(--brand-radius-full);
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--brand-midnight);
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.6rem 1rem;
    border-radius: var(--brand-radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.btn-card-action:hover {
    background: var(--brand-gold);
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* -------------------------------------------------------------------------- */
/* 10. IN-GRID SPONSORED AD SLOT (ARBITRAGE BOOSTER)                          */
/* -------------------------------------------------------------------------- */
.in-grid-ad-card {
    background: #FFFFFF;
    border: 1.5px dashed #CBD5E1;
    border-radius: var(--brand-radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    box-shadow: var(--brand-shadow-sm);
}

.ad-label-pill {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #F1F5F9;
    color: #64748B;
    padding: 0.2rem 0.6rem;
    border-radius: var(--brand-radius-full);
    border: 1px solid #E2E8F0;
}

html[dir="rtl"] .ad-label-pill,
body.rtl-mode .ad-label-pill {
    left: auto;
    right: 0.65rem;
}

/* -------------------------------------------------------------------------- */
/* 11. SOCIAL PROOF / VERIFIED UAE CUSTOMER REVIEWS                           */
/* -------------------------------------------------------------------------- */
.reviews-section-wrap {
    padding: 3rem 0;
    background: #FFFFFF;
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
    margin-bottom: 3.5rem;
}

.reviews-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

@media (min-width: 768px) {
    .reviews-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.customer-review-card {
    background: #F8F9FB;
    border: 1px solid var(--brand-line);
    border-radius: var(--brand-radius-md);
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-stars-row {
    color: #F59E0B;
    font-size: 0.9rem;
}

.review-text-quote {
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.6;
    font-style: italic;
}

.reviewer-profile-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.reviewer-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-midnight);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-meta-col h5 {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-midnight);
}

.reviewer-meta-col span {
    font-size: 0.72rem;
    color: var(--brand-emerald);
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* 8. WOOCOMMERCE DEFAULT LOOP OVERRIDES (FORCING ROUNDED 28px LUXURY CARDS) */
/* -------------------------------------------------------------------------- */
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce .related ul.products,
.woocommerce-page .related ul.products {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.5rem !important;
    padding: 0 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce .related ul.products,
    .woocommerce-page .related ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1280px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce .related ul.products,
    .woocommerce-page .related ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (min-width: 1600px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    .woocommerce .related ul.products,
    .woocommerce-page .related ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce .related ul.products li.product {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    border: 1px solid var(--brand-line) !important;
    background-color: #ffffff !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
    text-align: left !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,0.1) !important;
    border-color: var(--brand-midnight) !important;
}

.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    border-radius: 28px 28px 0 0 !important;
    height: 20rem !important;
    width: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    padding: 1rem 1.5rem 0.25rem 1.5rem !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    line-height: 1.35 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product span.price {
    padding: 0.5rem 1.5rem !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--brand-midnight) !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    margin: 0.75rem 1.5rem 1.5rem 1.5rem !important;
    border-radius: 999px !important;
    background-color: var(--brand-midnight) !important;
    border: 1px solid var(--brand-midnight) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    padding: 0.75rem 1.25rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--brand-dark-blue) !important;
    border-color: var(--brand-dark-blue) !important;
    transform: translateY(-2px) !important;
}

/* -------------------------------------------------------------------------- */
/* 9. PAGINATION STYLING (v1.0.6 CLEAN ROUNDED PILLS) */
/* -------------------------------------------------------------------------- */
.pagination-container,
.woocommerce-pagination {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
}

.pagination-container ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.pagination-container a,
.pagination-container span,
.pagination-container .page-numbers a,
.pagination-container .page-numbers span,
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
    border-radius: 9999px !important;
    border: 1px solid var(--brand-line) !important;
    background-color: #ffffff !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pagination-container a:hover,
.pagination-container .page-numbers a:hover,
.woocommerce-pagination .page-numbers a:hover {
    border-color: var(--brand-dark-blue) !important;
    color: #ffffff !important;
    background-color: var(--brand-dark-blue) !important;
}

.pagination-container .current,
.pagination-container .page-numbers .current,
.woocommerce-pagination .page-numbers .current {
    border-color: var(--brand-midnight) !important;
    background-color: var(--brand-midnight) !important;
    color: #ffffff !important;
}

/* -------------------------------------------------------------------------- */
/* 10. WOOCOMMERCE PRODUCT SINGLE & GALLERY */
/* -------------------------------------------------------------------------- */
.product-single-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .product-single-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-gallery-main {
    border-radius: 28px;
    border: 1px solid var(--brand-line);
    overflow: hidden;
    background: #ffffff;
}

.product-gallery-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover {
    border-color: var(--brand-midnight);
}

/* Product Info Box */
.product-info-box {
    background: #ffffff;
    border: 1px solid var(--brand-line);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}

.product-title-single {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.product-sku-single {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748B;
    margin-top: 0.5rem;
}

.product-price-single {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-midnight);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.discount-badge {
    font-size: 0.8rem;
    background: #DC2626;
    color: #ffffff;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-weight: 700;
}

/* PLAIN TEXT SHORT DESCRIPTION (ABSOLUTELY NO CONTAINER BOX) */
.product-short-description-plain {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    color: #334155 !important;
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
}

.product-short-description-plain p {
    margin-bottom: 1rem !important;
}

.product-short-description-plain ul,
.product-short-description-plain ol {
    margin-bottom: 1rem !important;
    padding-left: 1.25rem !important;
}

.product-short-description-plain li {
    margin-bottom: 0.4rem !important;
}

/* -------------------------------------------------------------------------- */
/* 11. FOOTER STYLING (DUBAI LUXURY CLEAN CARDS) */
/* -------------------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--brand-line);
    background-color: #F8F9FB;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.35fr 0.95fr 1fr;
    }
}

.footer-panel {
    border-radius: var(--brand-radius-md);
    border: 1px solid var(--brand-line);
    background-color: #FFFFFF;
    padding: 2rem;
    box-shadow: var(--brand-shadow-sm);
    transition: all 0.25s ease;
}

.footer-panel:hover {
    border-color: var(--brand-gold);
    box-shadow: var(--brand-shadow-md);
}

.footer-links {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-midnight);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 2.5rem;
    border-top: 1px solid var(--brand-line);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* -------------------------------------------------------------------------- */
/* 12. ADVERTISEMENT PLACEHOLDER CONTAINER & IN-GRID SLOTS */
/* -------------------------------------------------------------------------- */
.ad-slot-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 90px;
    background: transparent;
}

.in-grid-ad-card {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid var(--brand-line, #d8cebe);
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

@media (min-width: 768px) {
    .in-grid-ad-card {
        grid-column: span 2;
    }
}

.ad-label-pill {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94A3B8;
    margin-bottom: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/* 13. UAE TRUST BAR & ANNOUNCEMENT BAR */
/* -------------------------------------------------------------------------- */
.uae-trust-strip {
    background: #FFFFFF;
    border-bottom: 1px solid var(--brand-line, #d8cebe);
    padding: 0.55rem 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-midnight, #1B2A4A);
}

.uae-trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    text-align: center;
}

.uae-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.uae-trust-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--brand-champagne, #C5A880);
    flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/* 14. LUXURY UAE LANGUAGE SELECTOR (Dubai Mall / Ounass Aesthetic) */
/* -------------------------------------------------------------------------- */
.luxury-lang-switch {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 999px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.luxury-lang-switch:hover {
    border-color: var(--brand-champagne, #C5A880);
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.22);
}

.luxury-lang-opt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748B;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
    white-space: nowrap;
}

.luxury-lang-opt .flag-icon {
    font-size: 0.95rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s ease;
}

.luxury-lang-opt:hover .flag-icon {
    transform: scale(1.15);
}

.luxury-lang-opt .lang-name {
    letter-spacing: 0.02em;
}

.luxury-lang-opt:hover:not(.is-active) {
    color: #0F172A;
    background: #F8FAFC;
}

.luxury-lang-opt.is-active {
    background: linear-gradient(135deg, #1B2A4A 0%, #0F172A 100%);
    color: #FFFFFF !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.28);
}

.luxury-lang-opt.is-active .lang-name {
    color: #FFFFFF !important;
    font-weight: 800;
}

.luxury-lang-switch.mobile-wide {
    width: 100%;
    display: flex;
    justify-content: stretch;
    padding: 4px;
    background: #F8FAFC;
    border-color: #E2E8F0;
}

.luxury-lang-switch.mobile-wide .luxury-lang-opt {
    flex: 1;
    justify-content: center;
    padding: 9px 16px;
    font-size: 0.88rem;
}

/* Hide Google Translate Banner, Toolbars & Popups Cleanly */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

.skiptranslate:not(.lang-switch-group):not(.lang-switch-group *) {
    display: none !important;
}


/* -------------------------------------------------------------------------- */
/* 15. PAYMENT ICONS ROW (TABBY, TAMARA, APPLE PAY, COD) */
/* -------------------------------------------------------------------------- */
.uae-payments-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.uae-payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #1E293B;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.uae-payment-badge.tabby {
    color: #059669;
    border-color: #A7F3D0;
    background: #ECFDF5;
}

.uae-payment-badge.tamara {
    color: #D97706;
    border-color: #FDE68A;
    background: #FFFBEB;
}

.uae-payment-badge.applepay {
    color: #000000;
    background: #F8FAFC;
}

.uae-payment-badge.cod {
    color: #2563EB;
    border-color: #BFDBFE;
    background: #EFF6FF;
}

/* -------------------------------------------------------------------------- */
/* 16. FLOATING CONTACT US BUTTON & EMAIL CONTACT MODAL                      */
/* -------------------------------------------------------------------------- */
.floating-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    border: 1.5px solid #C5A880;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: inherit;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.floating-contact-btn:hover {
    transform: translateY(-2px);
    background: #0F172A;
    border-color: #DFBD88;
    box-shadow: 0 12px 28px rgba(197, 168, 128, 0.35);
    color: #FFFFFF;
}

.floating-contact-btn svg {
    width: 20px;
    height: 20px;
    color: #C5A880;
    flex-shrink: 0;
}

html[dir="rtl"] .floating-contact-btn {
    right: auto;
    left: 20px;
}

/* Contact Modal Backdrop */
.contact-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    box-sizing: border-box;
}

.contact-modal-backdrop.is-visible {
    display: flex !important;
    opacity: 1;
}

.contact-modal-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 1.25rem;
    box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.4);
    max-width: 480px;
    width: 100%;
    padding: 2rem 1.75rem;
    border: 1px solid #E2E8F0;
    transform: translateY(15px) scale(0.98);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.contact-modal-backdrop.is-visible .contact-modal-card {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #F1F5F9;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
    transform: rotate(90deg);
}

html[dir="rtl"] .contact-modal-close {
    right: auto;
    left: 1.25rem;
}

.contact-input-field {
    width: 100%;
    padding: 0.75rem 0.95rem;
    font-size: 0.9rem;
    color: #0F172A;
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-input-field:focus {
    outline: none;
    border-color: #C5A880;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

/* -------------------------------------------------------------------------- */
/* 17. ARABIC RIGHT-TO-LEFT (RTL) STYLING SUPPORT */
/* -------------------------------------------------------------------------- */
html[dir="rtl"],
body.rtl-mode {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', 'Cairo', sans-serif !important;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .font-display,
html[dir="rtl"] .brand-title,
html[dir="rtl"] .section-title {
    font-family: 'Tajawal', 'Cairo', sans-serif !important;
    text-align: right;
}

html[dir="rtl"] .desktop-nav {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .nav-dropdown-panel {
    right: auto;
    left: 0;
    text-align: right;
}

html[dir="rtl"] .product-card-footer {
    flex-direction: row;
}

html[dir="rtl"] .sidebar-drawer {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

html[dir="rtl"] .sidebar-drawer.open {
    transform: translateX(0);
}

html[dir="rtl"] .hero-floating-card {
    text-align: right;
}

html[dir="rtl"] .product-price-single del {
    margin-right: 0;
    margin-left: 0.5rem;
}

html[dir="rtl"] .price-currency,
html[dir="rtl"] .product-card-price {
    direction: ltr;
    display: inline-block;
}


