/* Glow Cart Mall - Premium Brand Style Sheet */

/* -------------------------------------------------------------
   1. RESET & VARIABLE TOKENS
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary: #000000;
    --primary-light: #1A1A1A;
    --accent: #C8A063;
    --accent-light: #EADBC8;
    --bg-alabaster: #FAF7F2;
    --bg-beige: #F2E7D7;
    --bg-white: #ffffff;
    --text-dark: #1A1A1A;
    --text-muted: #777777;
    --border-color: rgba(200, 160, 99, 0.2);
    --border-color-solid: #C8A063;
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-out;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 10px 30px rgba(200, 160, 99, 0.08);
    --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.05);
    
    --header-height: 125px;
    --bg-card: #F8F5F0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-alabaster);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-alabaster);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   2. TOP BAR & STICKY HEADER
   ------------------------------------------------------------- */
.top-bar {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 11px;
    padding: 8px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span {
    letter-spacing: 0.5px;
    font-weight: 400;
}

.bar-separator {
    margin: 0 10px;
    opacity: 0.3;
}

.top-bar-settings {
    display: flex;
    align-items: center;
}

.lang-toggle {
    font-family: var(--font-body);
    font-weight: 500;
}
.lang-toggle:hover {
    color: var(--accent);
}

.currency-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.flag-icon {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

/* Sticky Double Navbar */
header {
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 31px; /* Height of top bar */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Generic section wrapper */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
@media (max-width: 768px) {
    .section-container { padding: 0 20px; }
}
/* Brand Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

.nav-lang-toggle {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.nav-lang-toggle:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.brand-emblem {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-subtle);
    letter-spacing: -1px;
}

.brand-meta {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1;
}

.brand-tagline {
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 4px;
    font-weight: 700;
}

/* Search Bar */
.search-wrapper {
    flex-grow: 1;
    max-width: 500px;
    position: relative;
}

.search-bar-container {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 4px 15px;
    transition: var(--transition-smooth);
}

.search-bar-container:focus-within {
    border-color: var(--accent-light);
    box-shadow: 0 0 10px rgba(200, 160, 99, 0.1);
}

.search-bar-container input {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    padding: 8px 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dark);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-btn svg {
    stroke: var(--text-muted);
    stroke-width: 2;
    fill: none;
}

.search-btn:hover svg {
    stroke: var(--accent);
}

/* Search Auto-suggest */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow-lux);
    z-index: 1002;
    max-height: 350px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.search-suggestions.active {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
}

.suggest-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(200, 160, 99, 0.08);
    transition: var(--transition-fast);
}

.suggest-item:hover {
    background-color: var(--bg-alabaster);
}

.suggest-item img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
}

.suggest-info {
    display: flex;
    flex-direction: column;
}

.suggest-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.suggest-brand {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
}

.suggest-empty {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}

/* Action Icons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon-btn, .cart-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--primary);
}

.nav-icon-btn svg, .cart-icon-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: var(--transition-smooth);
}

.nav-icon-btn:hover, .cart-icon-btn:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-alabaster);
}

/* Double Level Subnav */
.sub-nav {
    border-top: 1px solid rgba(200, 160, 99, 0.1);
    background-color: var(--bg-white);
}

.sub-nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.categories-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    padding: 5px 0;
}

.categories-dropdown svg {
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lux);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1002;
}

.categories-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cat-drop-link {
    display: block;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(200, 160, 99, 0.05);
}

.cat-drop-link:last-child {
    border: none;
}

.cat-drop-link:hover {
    background-color: var(--bg-alabaster);
    color: var(--accent);
}

.sub-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.sub-nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.sub-nav-links a:hover {
    color: var(--accent);
}

/* -------------------------------------------------------------
   3. HERO BANNER SHOWCASE (Background mockups with HTML overlay)
   ------------------------------------------------------------- */
.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 8%;
    background-image: url('../images/desktop_landing.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0;
}

.hero-content {
    max-width: 580px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 4px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 15px;
}

.hero-btn {
    display: inline-block;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 35px;
    cursor: pointer;
    text-align: center;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.hero-btn.btn-dark {
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
}

.hero-btn.btn-dark:hover {
    background-color: transparent;
    color: var(--primary);
}

.hero-btn.btn-light {
    background-color: transparent;
    color: var(--accent-light-color, #8c6730);
    border: 1px solid var(--accent);
}

.hero-btn.btn-light:hover {
    background-color: var(--accent);
    color: #ffffff;
}

/* Inline Hero Trust Badges */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 45px;
    border-top: 1px solid rgba(200, 160, 99, 0.1);
    padding-top: 25px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.hero-trust-text {
    display: flex;
    flex-direction: column;
}

.hero-trust-text strong {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.hero-trust-text span {
    font-size: 9px;
    color: var(--text-muted);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero {
        background-image: url('../images/mobile_hero_landing.png');
        background-size: cover;
        background-position: center;
        min-height: 520px;
        padding: 40px 20px;
        align-items: flex-start;
        padding-top: 60px;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 1;
    }
    
    .hero-content {
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        font-size: 34px;
        margin-bottom: 12px;
    }
    
    .hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hero-ctas {
        gap: 10px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 10px;
    }
    
    .hero-trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 35px;
        padding-top: 20px;
    }
}

/* -------------------------------------------------------------
   5. SHOP BY CATEGORY CIRCLES
   ------------------------------------------------------------- */
.categories-section {
    padding: 80px 30px 40px;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 40px;
}

.section-title.centered {
    text-align: center;
}

/* Categories Header Row & Controls */
.categories-header-row.centered-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.categories-header-row.centered-title .section-title {
    margin-bottom: 0;
}

/* Carousel Wrapper & Track */
.categories-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    /* Soft fade overlays at the edges for luxury styling */
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.categories-carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
    padding-bottom: 15px;
}

/* Pause animation on hover */
.categories-carousel-wrapper:hover .categories-carousel-track {
    animation-play-state: paused;
}

/* Scroll Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* RTL Layout Anim for Arabic */
html[dir="rtl"] .categories-carousel-wrapper {
    mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to left, transparent, #000 8%, #000 92%, transparent);
}

html[dir="rtl"] .categories-carousel-track {
    animation: marquee-scroll-rtl 45s linear infinite;
}

/* Pause on hover for RTL too */
html[dir="rtl"] .categories-carousel-wrapper:hover .categories-carousel-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(50% + 12px));
    }
}

/* Premium Category Card */
.category-premium-card-link {
    flex-shrink: 0;
    display: block;
    width: 240px; /* Fixed width for uniform look in infinite marquee */
}

@media (max-width: 480px) {
    .category-premium-card-link {
        width: 200px; /* Slightly narrower on mobile */
    }
}

.category-premium-card {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.03));
}

.card-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(200, 160, 99, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

/* Glassmorphic Banner */
.card-glass-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 160, 99, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.category-card-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
    transition: var(--transition-smooth);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-card-action {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    opacity: 0.8;
    transition: var(--transition-smooth);
    transform: translateY(2px);
}

/* Hover effects */
.category-premium-card-link:hover .category-premium-card {
    border-color: var(--accent);
    box-shadow: var(--shadow-lux);
    transform: translateY(-5px);
}

.category-premium-card-link:hover .category-card-img {
    transform: scale(1.06);
}

.category-premium-card-link:hover .card-glow-overlay {
    opacity: 1;
}

.category-premium-card-link:hover .card-glass-banner {
    background: var(--primary);
    border-top-color: var(--accent);
}

.category-premium-card-link:hover .category-card-name {
    color: var(--bg-beige);
}

.category-premium-card-link:hover .category-card-action {
    color: var(--accent-light);
    transform: translateY(0);
}

/* -------------------------------------------------------------
   6. PROMOTION CARD GRIDS
   ------------------------------------------------------------- */
.promo-banners-section {
    padding: 40px 30px;
}

.promo-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.promo-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    transition: var(--transition-smooth);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.promo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.promo-tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.promo-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 5px;
}

.promo-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 400;
}

.promo-link-btn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

.promo-link-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Specific Promos styling */
.promo-card.flash-sale {
    background: linear-gradient(135deg, #151515, #000000);
    border-color: #333;
}
.promo-card.flash-sale h3, .promo-card.flash-sale p, .promo-card.flash-sale .promo-link-btn {
    color: #ffffff;
    border-color: #ffffff;
}
.promo-card.flash-sale .promo-link-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.promo-icon-element {
    font-size: 70px;
    opacity: 0.15;
    position: absolute;
    right: 20px;
    color: var(--accent);
    animation: flashPulse 2s infinite alternate;
}

.promo-products-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.promo-products-row img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255,255,255,0.8);
}

.promo-truck-element {
    opacity: 0.08;
    position: absolute;
    right: 25px;
}

.promo-icon-element svg, .promo-truck-element svg {
    width: 64px;
    height: 64px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
    display: block;
}

/* -------------------------------------------------------------
   7. KUWAIT WEATHER & CONCERNS
   ------------------------------------------------------------- */
.weather-concern-section {
    padding: 60px 30px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.wc-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

/* Weather Widget */
.weather-widget-card {
    background: linear-gradient(145deg, #2a231b, #000000);
    border-radius: 12px;
    padding: 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    margin-top: 15px;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.weather-brand {
    font-family: var(--font-title);
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
}

.weather-tag {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.weather-temp-block {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.weather-temp {
    font-family: var(--font-title);
    font-size: 46px;
    font-weight: 400;
    color: var(--accent);
}

.weather-meta {
    display: flex;
    align-items: center;
    gap: 6px;
}

.weather-cond-icon {
    font-size: 20px;
}

.weather-condition {
    font-size: 13px;
    font-weight: 500;
}

.weather-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.weather-rec-title {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.weather-rec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.rec-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
}

.rec-check-label input {
    display: none;
}

.check-box-custom {
    width: 16px;
    height: 16px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.rec-check-label input:checked + .check-box-custom::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.weather-rec-image {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 140px;
    height: 160px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.weather-rec-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Concern Card layout */
.concern-col {
    display: flex;
    flex-direction: column;
}

.concern-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}

.view-all-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.concern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.concern-card {
    background-color: var(--bg-alabaster);
    border: 1px solid var(--border-color);
    padding: 20px 10px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.concern-card:hover, .concern-card.active {
    border-color: var(--accent);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-medium);
}

.concern-icon-holder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

.concern-icon-holder svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 1.25;
    fill: none;
}

.concern-card:hover .concern-icon-holder {
    background-color: var(--bg-beige);
    border-color: var(--accent);
}

.concern-card span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
}

/* -------------------------------------------------------------
   8. PRODUCT CATALOG LISTING & TRENDS
   ------------------------------------------------------------- */
.catalog-section {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 30px;
}

.catalog-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: var(--bg-white);
    border-radius: 20px;
    color: var(--text-muted);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Catalog View All Button */
.catalog-view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    padding: 15px 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border-radius: 4px;
}

.view-all-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 160, 99, 0.2);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: #000000;
    padding: 28px 0;
    overflow: hidden;
}
.trust-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 160, 99, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-icon svg {
    stroke: var(--accent);
}
.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.trust-text strong {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}
.trust-text span {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}
@media (max-width: 768px) {
    .trust-strip-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}
@media (max-width: 480px) {
    .trust-strip-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .trust-strip { padding: 20px 0; }
}

/* ===== NEW ARRIVALS SLIDER ===== */
.new-arrivals-section {
    padding: 60px 0 40px;
    background: #ffffff;
}
.arrivals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.arrivals-header .view-all-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.arrivals-header .view-all-link:hover {
    color: var(--primary);
}
.arrivals-scroll-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.arrivals-scroll-row::-webkit-scrollbar { display: none; }

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: all 0.3s ease;
}
.slider-nav-btn.prev {
    left: -21px;
}
.slider-nav-btn.next {
    right: -21px;
}
.slider-nav-btn:hover {
    background: var(--accent) !important;
    color: #ffffff !important;
    border-color: var(--accent) !important;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.2);
}
@media (max-width: 768px) {
    .slider-nav-btn {
        display: none !important;
    }
}
.arrival-card {
    min-width: 210px;
    max-width: 210px;
    scroll-snap-align: start;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.arrival-card:hover { transform: translateY(-4px); }
.arrival-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 12px;
}
.arrival-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.arrival-card:hover .arrival-img-wrap img {
    transform: scale(1.06);
}
.arrival-card:hover .see-more-circle,
.deal-card:hover .see-more-circle {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}
.arrival-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 2;
}
.arrival-info {
    padding: 0 4px;
}
.arrival-brand {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.arrival-info h4 {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin: 4px 0 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.arrival-price {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}
@media (max-width: 480px) {
    .arrival-card { min-width: 160px; max-width: 160px; }
    .new-arrivals-section { padding: 40px 0 25px; }
}

/* ===== DISPLAY BANNERS ===== */
.display-banners-section {
    padding: 20px 0 40px;
    background: #ffffff;
}
.display-banners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.display-banner {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}
.display-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.display-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.display-banner:hover img {
    transform: scale(1.03);
}
@media (max-width: 640px) {
    .display-banners-container {
        grid-template-columns: 1fr;
    }
}

/* ===== BEST DEALS SECTION ===== */
.best-deals-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}
.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.deals-header .view-all-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.deals-header .view-all-link:hover { color: var(--primary); }
.deals-scroll-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.deals-scroll-row::-webkit-scrollbar { display: none; }
.deal-card {
    min-width: 210px;
    max-width: 210px;
    scroll-snap-align: start;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.deal-card:hover { transform: translateY(-4px); }
.deal-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 12px;
}
.deal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.deal-card:hover .deal-img-wrap img {
    transform: scale(1.06);
}
.deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e53935;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 2;
}
.deal-info {
    padding: 0 4px;
}
.deal-brand {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.deal-info h4 {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin: 4px 0 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.deal-prices {
    display: flex;
    align-items: center;
    gap: 8px;
}
.deal-sale-price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #e53935;
}
.deal-original-price {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    text-decoration: line-through;
}
@media (max-width: 480px) {
    .deal-card { min-width: 160px; max-width: 160px; }
    .best-deals-section { padding: 40px 0 25px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 70px 0;
    background: #000000;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}
.testimonials-header .section-subtitle {
    color: var(--accent);
}
.testimonials-header .section-title {
    color: #ffffff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 26px;
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 160, 99, 0.2);
    transform: translateY(-3px);
}
.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-card p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-author strong {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}
.testimonial-author span {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .testimonials-section { padding: 50px 0; }
}

/* ===== NEWSLETTER / WHATSAPP CTA ===== */
.newsletter-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}
.newsletter-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    text-align: center;
}
.newsletter-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200,160,99,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-content {
    position: relative;
    z-index: 1;
}
.newsletter-content .section-subtitle {
    display: block;
    margin-bottom: 6px;
}
.newsletter-content .section-title {
    margin-bottom: 14px;
}
.newsletter-content p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.whatsapp-cta-btn:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}
@media (max-width: 480px) {
    .newsletter-section { padding: 50px 0; }
    .whatsapp-cta-btn { padding: 14px 28px; font-size: 12px; }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.empty-catalog-message {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.card-top-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.badge-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    color: #ffffff;
}

.badge-tag.new {
    background-color: #63a07b;
}

.badge-tag.discount {
    background-color: #ff4d4d;
}

.badge-tag.best-seller {
    background-color: var(--accent);
}

.like-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
}

.like-btn svg {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
    transition: var(--transition-fast);
}

.like-btn:hover svg {
    stroke: #ff4d4d;
    transform: scale(1.1);
}

.like-btn.active svg {
    fill: #ff4d4d;
    stroke: #ff4d4d;
}

/* Image Container */
.product-image-container {
    width: 100%;
    aspect-ratio: 1.05;
    background-color: var(--bg-alabaster);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

/* Info Container */
.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 10px;
    min-height: 40px;
}

.product-description {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.product-price.sale {
    color: #ff4d4d;
}

.original-price {
    font-size: 11px;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-top: 2px;
}

.currency {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    margin-left: 2px;
}

/* Add To Cart button */
.add-to-cart-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 20px;
}

.add-to-cart-btn svg {
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.add-to-cart-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* -------------------------------------------------------------
   9. AI BEAUTY ROUTINE quiz BANNER
   ------------------------------------------------------------- */
.ai-finder-section {
    padding: 40px 30px;
}

.ai-finder-container {
    max-width: 1300px;
    margin: 0 auto;
    background: radial-gradient(circle at 10% 50%, var(--bg-beige) 0%, var(--bg-alabaster) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.ai-finder-content {
    padding: 60px;
}

.ai-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.ai-finder-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 5px;
}

.ai-finder-content h3 {
    font-size: 22px;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 300;
}

.ai-checkpoints {
    list-style: none;
    margin-bottom: 35px;
}

.ai-checkpoints li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
}

.check-icon {
    color: #63a07b;
    font-weight: bold;
}

.ai-start-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
}

.ai-start-btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.ai-finder-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.ai-finder-image img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
}

/* -------------------------------------------------------------
   10. CREATORS GRID SECTION (INSTAGRAM REELS STYLE)
   ------------------------------------------------------------- */
.creators-section {
    padding: 60px 30px;
}

.creators-container {
    max-width: 1300px;
    margin: 0 auto;
}

.creators-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 35px;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.creator-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: default;
    transition: var(--transition-smooth);
}

.creator-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.creator-avatar-holder {
    width: 100%;
    aspect-ratio: 0.9;
    background-color: var(--bg-alabaster);
    position: relative;
    overflow: hidden;
}

.creator-avatar-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.creator-card:hover .creator-avatar-holder img {
    transform: scale(1.03);
}

.creator-info {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
}

.creator-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.creator-info span {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* -------------------------------------------------------------
   11. BECOME INSIDER & DOWNLOAD BAR
   ------------------------------------------------------------- */
.footer-promo-section {
    background-color: var(--primary);
    color: #ffffff;
    padding: 80px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fp-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Newsletter section */
.newsletter-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.newsletter-col h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

.newsletter-col p {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 450px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 450px;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 5px;
}

.newsletter-form input {
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 0;
    flex-grow: 1;
    text-align: center;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--accent);
}

.newsletter-form button:hover {
    color: #ffffff;
}

.newsletter-decor {
    margin-top: 30px;
    width: 160px;
    pointer-events: none;
}

.newsletter-decor img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* -------------------------------------------------------------
   12. FOOTER DIRECTORY DETAILS
   ------------------------------------------------------------- */
footer {
    background-color: var(--primary);
    color: #ffffff;
    padding: 60px 0 100px; /* Added padding-bottom for mobile float nav */
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.8;
    color: #888888;
    font-weight: 300;
}

.footer-links h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 12px;
    color: #888888;
    font-weight: 300;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 2px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 60px auto 0;
    padding: 35px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #555555;
}

/* -------------------------------------------------------------
   13. SLIDE-OUT CART DRAWER & FORMS
   ------------------------------------------------------------- */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: var(--bg-alabaster);
    z-index: 1006;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-white);
}

.cart-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
}

.close-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--primary);
}

.close-cart-btn:hover {
    color: var(--accent);
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    position: relative;
    border-radius: 4px;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background-color: var(--bg-alabaster);
    border-radius: 2px;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
}

.cart-item-price {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    width: fit-content;
    border-radius: 2px;
}

.qty-btn {
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary);
}

.qty-val {
    padding: 0 10px;
    font-size: 11px;
    font-weight: 600;
}

.cart-item-remove {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
}

.cart-item-remove:hover {
    color: #ff4d4d;
}

.empty-cart-message {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.cart-summary {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.summary-row.total {
    border-top: 1px solid rgba(200, 160, 99, 0.1);
    padding-top: 15px;
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
}

.checkout-btn {
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    padding: 16px 0;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    text-align: center;
}

.checkout-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Coordinates Form */
.checkout-view {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    border-radius: 4px;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
}

.form-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 15px;
    margin-top: 25px;
}

.back-to-cart-btn {
    background: transparent;
    border: 1px solid var(--border-color-solid);
    color: var(--primary);
    padding: 15px 0;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
}

.back-to-cart-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* -------------------------------------------------------------
   14. SYSTEM DIALOG MODALS
   ------------------------------------------------------------- */
/* Success modal (Redirection page) */
.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lux);
    border-radius: 8px;
    padding: 40px;
    z-index: 1010;
    max-width: 420px;
    width: 90%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(200, 160, 99, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.success-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.success-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.whatsapp-redirect-btn {
    display: block;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 0;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
}

.whatsapp-redirect-btn:hover {
    background-color: #128C7E;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* AI Quiz Modal styling */
.ai-quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1007;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.ai-quiz-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ai-quiz-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background-color: var(--bg-alabaster);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lux);
    border-radius: 8px;
    padding: 40px;
    z-index: 1008;
    max-width: 480px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.ai-quiz-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.close-quiz-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.close-quiz-btn:hover {
    color: var(--primary);
}

.quiz-progress-bar {
    height: 4px;
    background-color: rgba(200, 160, 99, 0.1);
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background-color: var(--accent);
    width: 0;
    transition: var(--transition-smooth);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeInStep 0.4s ease-out;
}

.quiz-question {
    font-family: var(--font-title);
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-opt-btn {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
}

.quiz-opt-btn:hover {
    border-color: var(--accent-light);
    background-color: var(--bg-beige);
    padding-left: 25px;
}

.quiz-results-container {
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.quiz-rec-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 4px;
}

.quiz-add-all-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    padding: 16px 0;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
}

.quiz-add-all-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}



/* -------------------------------------------------------------
   15. PERSISTENT MOBILE BOTTOM NAVIGATION BAR
   ------------------------------------------------------------- */
.mobile-bottom-nav {
    display: none; /* Hidden on desktop screens */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    padding: 10px 15px;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.03);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
}

.mobile-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    display: block;
}

.mobile-nav-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    color: var(--accent);
}

/* -------------------------------------------------------------
   16. CSS ANIMATIONS AND MICRO-TRANSITIONS
   ------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flashPulse {
    from {
        opacity: 0.05;
        transform: scale(0.98);
    }
    to {
        opacity: 0.2;
        transform: scale(1.02);
    }
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------------------------------------------
   17. VIEWPORT MEDIA QUERIES (FULL RESPONSIVE SYSTEM)
   ------------------------------------------------------------- */
/* Tablet & Medium Devices */
@media (max-width: 1024px) {
    body {
        padding-top: 155px; /* Adjust body top spacing for taller header */
        --header-height: 155px;
    }
    
    header {
        top: 31px;
    }

    .nav-container {
        padding: 10px 20px;
        gap: 15px;
    }

    .search-wrapper {
        max-width: 400px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        max-width: 600px;
    }

    .hero-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .wc-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .concern-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .fp-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .app-col {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .app-mockup {
        position: static;
        margin-top: 30px;
    }

    .newsletter-col {
        align-items: center;
        text-align: center;
        padding-bottom: 0;
    }

    .newsletter-decor {
        position: static;
        margin-top: 30px;
        width: 130px;
    }

    footer {
        padding-bottom: 120px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile & Small Devices */
@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Space to clear fixed mobile header */
        --header-height: 80px;
    }

    .top-bar {
        display: none; /* Hide top bar on mobile screens */
    }

    header {
        top: 0;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .brand-emblem {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-width: 1.5px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-tagline {
        font-size: 7px;
        letter-spacing: 2px;
    }

    /* Hide subnav and search in header on mobile */
    .sub-nav {
        display: none;
    }

    .search-wrapper {
        display: none; /* Hidden - triggered via bottom search menu */
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions #wishlist-btn, .nav-actions #account-btn {
        display: none; /* Mobile handles via bottom navigation bar */
    }

    /* Mobile Bottom Navigation Bar activation */
    .mobile-bottom-nav {
        display: flex;
    }

    .hero {
        padding: 45px 15px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-desc {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .hero-ctas {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        padding: 15px 0;
    }

    .trust-row {
        padding: 20px 0;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }

    .trust-item {
        gap: 10px;
    }

    .trust-icon {
        font-size: 20px;
    }

    .trust-text strong {
        font-size: 11px;
    }

    .trust-text span {
        font-size: 9px;
    }

    .categories-circles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .circle-image-holder {
        width: 90px;
        height: 90px;
    }

    .category-circle-card span {
        font-size: 10px;
    }

    .promo-banners-section {
        padding: 20px 15px;
    }

    .promo-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .promo-card h3 {
        font-size: 20px;
    }

    .promo-products-row img {
        width: 48px;
        height: 48px;
    }

    .promo-truck-element, .promo-icon-element {
        font-size: 44px;
    }

    .weather-concern-section {
        padding: 40px 15px;
    }

    .concern-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .concern-card {
        padding: 15px 5px;
    }

    .concern-icon-holder {
        width: 40px;
        height: 40px;
    }

    .concern-icon-holder svg {
        width: 16px;
        height: 16px;
    }

    .catalog-section {
        margin: 40px auto;
        padding: 0 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .category-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 13px;
        min-height: auto;
        margin-bottom: 5px;
    }

    .product-description {
        display: none; /* Hide descriptions on mobile product grids */
    }

    .product-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 10px;
    }

    .product-price {
        font-size: 14px;
    }

    .add-to-cart-btn {
        padding: 8px 12px;
        font-size: 9px;
        justify-content: center;
    }

    .ai-finder-section {
        padding: 20px 15px;
    }

    .ai-finder-container {
        grid-template-columns: 1fr;
    }

    .ai-finder-content {
        padding: 30px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ai-finder-content h2 {
        font-size: 24px;
    }

    .ai-finder-content h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .ai-checkpoints {
        text-align: left;
        margin-bottom: 25px;
    }

    .ai-checkpoints li {
        font-size: 11px;
    }

    .ai-start-btn {
        width: 100%;
        padding: 14px 0;
    }

    .ai-finder-image {
        display: none; /* Hide large beauty model face image on mobile screen */
    }

    .creators-section {
        padding: 40px 15px;
    }

    .creators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-promo-section {
        padding: 40px 15px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links h5 {
        margin-bottom: 15px;
    }

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

    .cart-drawer {
        max-width: 100%;
    }

    .ai-quiz-modal {
        padding: 20px;
        max-width: 95%;
    }

    .quiz-question {
        font-size: 18px;
    }

    .quiz-opt-btn {
        padding: 12px 15px;
        font-size: 12px;
    }
}

/* -------------------------------------------------------------
   BILINGUAL ARABIC TYPOGRAPHY (LTR LAYOUT PRESERVED)
   ------------------------------------------------------------- */
:lang(ar) {
    font-family: 'Almarai', 'Montserrat', sans-serif;
}

:lang(ar) h1, 
:lang(ar) h2, 
:lang(ar) h3, 
:lang(ar) h4, 
:lang(ar) h5, 
:lang(ar) h6, 
:lang(ar) .dropdown-title, 
:lang(ar) .brand-name, 
:lang(ar) .brand-tagline, 
:lang(ar) .hero-title, 
:lang(ar) .quiz-question,
:lang(ar) .quiz-opt-btn,
:lang(ar) .footer-brand h4,
:lang(ar) .newsletter-col h3,
:lang(ar) .app-col h3 {
    font-family: 'Almarai', 'Playfair Display', serif;
}

:lang(ar) .hero-title {
    line-height: 1.35;
}

/* -------------------------------------------------------------
   15. DEDICATED PRODUCTS CATALOG PAGE STYLES
   ------------------------------------------------------------- */
.catalog-page-container {
    max-width: 1300px;
    margin: 40px auto 80px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.catalog-sidebar {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 4px;
    position: sticky;
    top: 150px;
    z-index: 10;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.catalog-sidebar::-webkit-scrollbar {
    width: 4px;
}
.catalog-sidebar::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.clear-all-link {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.clear-all-link:hover {
    color: var(--primary);
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(200, 160, 99, 0.1);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

.filter-checkbox-label input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-checkbox-label span {
    transition: var(--transition-fast);
}

.filter-checkbox-label:hover span {
    color: var(--accent);
    transform: translateX(3px);
}

/* Price Range Slider */
.price-slider-container {
    padding-top: 10px;
}

.price-slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.price-range-slider {
    width: 100%;
    accent-color: var(--accent);
    height: 4px;
    background: var(--bg-beige);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.price-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: var(--transition-fast);
}

.price-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Sort Bar */
.catalog-content-header {
    margin-bottom: 30px;
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.results-count {
    font-size: 13px;
    color: var(--text-muted);
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-control label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.sort-select {
    padding: 6px 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sort-select:hover {
    border-color: var(--primary);
}

/* Active Filters Row */
.active-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.active-filter-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-beige);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-light);
    transition: var(--transition-fast);
}

.active-filter-badge button {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-filter-badge button:hover {
    color: #ff4d4d;
}

/* Mobile Filter Trigger */
.mobile-filter-trigger {
    display: none;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-subtle);
}

/* Responsive Styles for Catalog Page */
@media (max-width: 1024px) {
    .catalog-page-container {
        grid-template-columns: 240px 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .catalog-page-container {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 20px;
    }

    .mobile-filter-trigger {
        display: flex;
    }

    .catalog-sidebar {
        display: none; /* toggled via JS */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1002;
        max-height: 100%;
        border-radius: 0;
        border: none;
        animation: slideInFromLeft 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .catalog-sidebar.active {
        display: block;
    }

    .sidebar-header {
        position: sticky;
        top: 0;
        background: var(--bg-white);
        z-index: 12;
    }
    
    .sidebar-close-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
}

.sidebar-close-btn {
    display: none;
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* RTL Specific Styles for Sidebar */
html[dir="rtl"] .filter-checkbox-label:hover span {
    transform: translateX(-3px);
}

html[dir="rtl"] .catalog-sidebar {
    scrollbar-color: var(--accent) transparent;
}

    html[dir="rtl"] .catalog-sidebar {
        animation: slideInFromRight 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
}

/* =============================================================
   17. PRODUCT DETAILS PAGE & QUICK VIEW MODAL STYLES
   ============================================================= */

/* Breadcrumb Styles */
.breadcrumb-bar {
    background-color: var(--bg-alabaster);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-links {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumb-links a:hover {
    color: var(--accent);
}

.bc-separator {
    color: var(--border-color-solid);
    font-weight: 700;
}

.bc-current {
    color: var(--primary);
    font-weight: 600;
}

/* Product Details Page Layout */
.product-page-main {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

/* Left: Showcase Gallery */
.product-showcase-gallery {
    position: sticky;
    top: 150px;
}

.gallery-main-image-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1.05;
    background-color: var(--bg-alabaster);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.details-badge-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    color: #ffffff;
    z-index: 10;
}

.details-badge-tag.new {
    background-color: #63a07b;
}

.details-badge-tag.discount {
    background-color: #ff4d4d;
}

.details-badge-tag.best-seller {
    background-color: var(--accent);
}

.details-image-zoom-container {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.zoom-target-image {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
}

/* Right: Purchase Panel */
.product-purchase-panel {
    display: flex;
    flex-direction: column;
}

.purchase-brand-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.purchase-title-label {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.purchase-price-block {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.sale-price-display {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 600;
    color: #ff4d4d;
}

.original-price-display {
    font-family: var(--font-body);
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.currency-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Benefits list under price */
.purchase-benefits-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    background-color: var(--bg-alabaster);
    padding: 18px;
    border-radius: 8px;
    border: 1px dashed var(--border-color);
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-tag svg {
    color: var(--accent);
    flex-shrink: 0;
}

.purchase-desc-preview {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Controls */
.purchase-action-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.qty-control-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color-solid);
    border-radius: 25px;
    overflow: hidden;
    height: 50px;
    background-color: var(--bg-white);
}

.qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--bg-alabaster);
}

.qty-input {
    width: 35px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    outline: none;
}

/* Custom inputs remove arrows */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.purchase-add-btn {
    flex-grow: 1;
    height: 50px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.purchase-add-btn svg {
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.purchase-add-btn.added {
    background-color: #63a07b;
    border-color: #63a07b;
}

.purchase-add-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 160, 99, 0.2);
}

/* Product Page Back Button */
.details-back-btn:hover {
    color: var(--primary) !important;
}
.details-back-btn svg {
    transition: transform 0.3s ease;
}
.details-back-btn:hover svg {
    transform: scaleX(1) translateX(-3px) !important;
}
html[dir="rtl"] .details-back-btn:hover svg {
    transform: scaleX(-1) translateX(-3px) !important;
}

.details-back-btn-prominent {
    transition: var(--transition-smooth);
}
.details-back-btn-prominent svg {
    transition: transform 0.3s ease;
}
.details-back-btn-prominent:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    background: #ffffff !important;
    box-shadow: 0 6px 15px rgba(200, 160, 99, 0.1) !important;
    transform: translateY(-1px);
}
.details-back-btn-prominent:hover svg {
    transform: scaleX(1) translateX(-3px) !important;
}
html[dir="rtl"] .details-back-btn-prominent:hover svg {
    transform: scaleX(-1) translateX(-3px) !important;
}

/* Direct Order Whatsapp Button */
.purchase-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 0;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.purchase-whatsapp-btn:hover {
    background-color: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Accordion Component */
.product-accordion-wrapper {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
}

.accordion-tab {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.5px;
    text-align: inherit;
}

.accordion-header svg {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.accordion-tab.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-tab.active .accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

.accordion-content p {
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================
   PRODUCT IMAGE HOVER OVERLAY & QUICKVIEW
   ========================================== */

/* Card hover overlay styling */
.product-image-container {
    position: relative;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 4;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.overlay-action-btn {
    padding: 11px 32px;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.overlay-action-btn.viewdetails {
    background-color: #ffffff;
    color: var(--primary);
    border: 1px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.overlay-action-btn.viewdetails:hover {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 160, 99, 0.3);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-showcase-gallery {
        position: static;
    }
    
    .purchase-title-label {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .purchase-action-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .qty-control-box {
        justify-content: center;
    }
}

/* RTL styles for breadcrumb separator */
html[dir="rtl"] .bc-separator {
    transform: scaleX(-1);
    display: inline-block;
}
html[dir="rtl"] .quickview-close-btn {
    left: 20px;
    right: auto;
}

/* =============================================================
   18. PREMIUM CAMPAIGN SHOWCASE SECTION
   ============================================================= */
.campaign-showcase-section {
    padding: 85px 0;
    background-color: var(--bg-alabaster);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.campaign-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
    margin-bottom: 90px;
}

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

/* Columns */
.campaign-media-col {
    width: 100%;
}

.campaign-poster-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    background-color: var(--bg-white);
}

.campaign-poster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(200, 160, 99, 0.15);
}

.campaign-poster-card img {
    width: 100%;
    height: auto;
    display: block;
}

.campaign-poster-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.campaign-poster-badge.promo {
    background-color: #ff4d4d;
}

.campaign-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.campaign-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.campaign-title {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-light);
    margin-bottom: 22px;
}

.campaign-title em {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

/* Event status badge card */
.campaign-promo-badge {
    background-color: rgba(200, 160, 99, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.campaign-promo-badge.sale {
    background-color: rgba(255, 77, 77, 0.05);
    border-color: rgba(255, 77, 77, 0.15);
}

.promo-badge-icon {
    font-size: 16px;
}

.promo-badge-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.5px;
}

.campaign-promo-badge.sale .promo-badge-text {
    color: #ff4d4d;
}

.campaign-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Feature Checklists */
.campaign-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.campaign-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dark);
}

.feature-text strong {
    font-weight: 600;
    color: var(--primary-light);
}

/* Buttons */
.campaign-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.campaign-primary-btn {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    border: 1px solid var(--primary);
    padding: 15px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: var(--transition-smooth);
    text-align: center;
}

.campaign-primary-btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 160, 99, 0.25);
}

.campaign-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.15);
}

.campaign-whatsapp-btn:hover {
    background-color: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* RTL Layout styles */
html[dir="rtl"] .campaign-poster-badge {
    right: 25px;
    left: auto;
}

html[dir="rtl"] .campaign-content-col {
    align-items: flex-start;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .campaign-row {
        gap: 40px;
    }
    
    .campaign-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .campaign-showcase-section {
        padding: 55px 0;
    }

    .campaign-row {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 70px;
    }
    
    .campaign-row.reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .campaign-content-col {
        align-items: center;
        text-align: center;
    }
    
    .campaign-promo-badge {
        align-self: center;
    }

    .campaign-features-list li {
        text-align: start;
        justify-content: flex-start;
    }
    
    .campaign-actions {
        justify-content: center;
        width: 100%;
    }
    
    .campaign-primary-btn, .campaign-whatsapp-btn {
        flex-grow: 1;
    }
}


