/* ==========================================================================
   MAJESTIC SCENT - PREMIUM BILINGUAL STYLE SYSTEM (SHOPIFY COMPILED)
   ========================================================================== */

/* Custom CSS Variables & Design System */
:root {
    /* Color Palette - Light Luxury Off-White Theme */
    --emerald-deep: #FAF7F2;     /* Now represents light background base */
    --emerald-dark: #F4EFE6;     /* Slightly darker cream/beige for borders/cards */
    --emerald-mid: #FBF9F6;      /* Soft light background */
    --emerald-light: #A38465;    /* Bronze gold */
    --gold-dark: #7E654D;        /* Deep rich bronze gold for text/buttons */
    --gold: #A38465;             /* Luxury bronze gold */
    --gold-light: #C2A687;       /* Warm soft gold accent */
    --cream: #14221A;            /* MAIN TEXT - Dark Charcoal Green */
    --cream-dark: #3B4741;       /* MUTED TEXT - Muted Dark Gray-Green */
    --dark-bg: #FAF7F2;          /* BACKGROUND - Light off-white */
    --card-bg: #FFFFFF;          /* Solid white card for pop and depth */
    --border-color: rgba(166, 133, 98, 0.22); /* Soft luxury border */
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --font-arabic: 'Cairo', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(20, 34, 26, 0.04), 0 5px 15px rgba(166, 133, 98, 0.03);
    --glass-blur: blur(12px);
    
    /* Layout Spacing */
    --header-height: 90px;
}

/* Document Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body.majestic-scent-body {
    background-color: var(--dark-bg);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
    font-weight: 300;
}

/* Handle Language-Specific Styles globally using html dir / lang attributes */
html[lang="ar"] body.majestic-scent-body {
    font-family: var(--font-arabic);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.05em;
}

html[lang="ar"] h1, 
html[lang="ar"] h2, 
html[lang="ar"] h3, 
html[lang="ar"] h4, 
html[lang="ar"] h5, 
html[lang="ar"] h6 {
    font-family: var(--font-arabic);
    font-weight: 700;
    letter-spacing: 0;
}

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

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

button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ==========================================================================
   AMBIENT BACKGROUND EFFECTS (Aesthetics)
   ========================================================================== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    animation: pulseOrbs 8s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--emerald-light) 0%, transparent 70%);
    top: 5%;
    right: -10%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: 45%;
    left: -15%;
    animation-delay: 2s;
}

@keyframes pulseOrbs {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.12;
    }
    100% {
        transform: scale(1.15) translate(30px, 30px);
        opacity: 0.22;
    }
}

/* ==========================================================================
   UTILITY & GLOBAL STYLING
   ========================================================================== */
.gold-text {
    color: var(--gold) !important;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    color: var(--cream);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

html[lang="ar"] .section-subtitle {
    font-family: var(--font-arabic);
    letter-spacing: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    letter-spacing: 0.05em;
    gap: 0.8rem;
}

html[lang="ar"] .btn {
    letter-spacing: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--emerald-deep);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(181, 148, 111, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 148, 111, 0.45);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(181, 148, 111, 0.15);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ==========================================================================
   HEADER NAVIGATION (BILINGUAL COMPLIANT)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(250, 247, 242, 0.75);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 100;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 75px;
    background: rgba(250, 247, 242, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream-dark);
    position: relative;
    padding: 0.4rem 0;
}

html[lang="ar"] .nav-link {
    font-family: var(--font-arabic);
    letter-spacing: 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Brand Logo Styling */
.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
}

.logo-svg {
    height: 70px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-svg {
    height: 60px;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-btn, .cart-btn, .mobile-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(166, 133, 98, 0.08);
    border: 1px solid rgba(166, 133, 98, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--cream);
    position: relative;
}

.lang-btn:hover, .cart-btn:hover, .mobile-menu-btn:hover {
    background: var(--gold);
    color: var(--emerald-deep);
    border-color: var(--gold);
    transform: scale(1.05);
}

.lang-btn {
    gap: 0.3rem;
    width: auto;
    padding: 0 1rem;
    border-radius: 30px;
}

.lang-label {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Language Dropdown Selector Styles */
.lang-selector-container {
    position: relative;
    display: inline-block;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 140px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(20, 34, 26, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

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

.lang-selector-container.active .lang-dropdown,
.lang-selector-container:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cream-dark);
    border-radius: 8px;
    cursor: pointer;
    text-align: start;
    transition: var(--transition-smooth);
}

.lang-dropdown-item:hover {
    background: rgba(181, 148, 111, 0.15);
    color: var(--gold);
}

.lang-dropdown-item.active {
    background: var(--gold);
    color: var(--emerald-deep) !important;
    font-weight: 600;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    color: var(--emerald-deep);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

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

.mobile-menu-btn {
    display: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: calc(var(--header-height) + 4rem) 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

html[dir="rtl"] .hero-text-block {
    align-items: flex-start;
}

.hero-tag {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

html[lang="ar"] .hero-tag {
    font-family: var(--font-arabic);
    letter-spacing: 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cream) 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[lang="ar"] .hero-title {
    font-size: 3.2rem;
    line-height: 1.35;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--cream-dark);
    margin-bottom: 2.5rem;
    text-align: start;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Hero Image Side */
.hero-image-block {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(166, 133, 98, 0.15);
    background: rgba(166, 133, 98, 0.05);
}

.hero-img {
    max-height: 520px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.03);
}

.hero-image-glass-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 25px rgba(20, 34, 26, 0.04);
}

.hero-image-glass-card i {
    font-size: 2rem;
}

.hero-image-glass-card h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
    color: var(--cream);
}

.hero-image-glass-card p {
    font-size: 0.8rem;
    color: var(--cream-dark);
}

/* ==========================================================================
   PHILOSOPHY SECTION
   ========================================================================== */
.philosophy-section {
    padding: 6rem 2rem;
    background: radial-gradient(circle at bottom, rgba(16, 76, 50, 0.08) 0%, transparent 60%);
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.philosophy-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.2rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    background: rgba(16, 76, 50, 0.15);
    border-color: var(--gold);
    box-shadow: var(--shadow-premium);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(181, 148, 111, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.philosophy-card:hover .card-icon-wrapper {
    background: var(--gold);
    color: var(--emerald-deep);
    transform: rotateY(180deg);
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.philosophy-card p {
    font-size: 0.9rem;
    color: var(--cream-dark);
    line-height: 1.7;
}

/* ==========================================================================
   PRODUCT COLLECTION SECTION
   ========================================================================== */
.collection-section {
    padding: 6rem 2rem;
    position: relative;
}

.product-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(20, 34, 26, 0.03), 0 2px 8px rgba(166, 133, 98, 0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-premium);
}

.product-image-container {
    height: 320px;
    width: 100%;
    position: relative;
    background: rgba(166, 133, 98, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--emerald-deep);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 3;
}

html[dir="rtl"] .product-badge {
    left: auto;
    right: 20px;
}

/* Premium Visual Bottle Rendering */
.lux-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.ambient-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.25;
    z-index: 1;
    transition: var(--transition-smooth);
}

.royal-oud-visual .ambient-glow { background: #A35C27; }
.lavender-sage-visual .ambient-glow { background: #4E2B85; }
.forest-patchouli-visual .ambient-glow { background: #124E2E; }

.bottle-svg {
    height: 240px;
    z-index: 2;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.4));
    transition: var(--transition-smooth);
}

.product-card:hover .bottle-svg {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.product-card:hover .ambient-glow {
    opacity: 0.4;
    transform: scale(1.2);
}

/* Product Info */
.product-info {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.rating-num {
    color: var(--cream-dark);
    font-size: 0.8rem;
    margin-inline-start: 0.4rem;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--cream-dark);
    margin-bottom: 1.8rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Sizing UI */
.size-selection-wrapper {
    margin-bottom: 1.8rem;
}

.size-label {
    font-size: 0.85rem;
    color: var(--cream-dark);
    display: block;
    margin-bottom: 0.6rem;
}

.size-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.size-toggle-btn {
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    background: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
}

.size-toggle-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.size-toggle-btn.active {
    background: var(--gold);
    color: var(--emerald-deep);
    border-color: var(--gold);
    font-weight: 600;
}

/* Purchase Row */
.product-purchase-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.price-display {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--cream);
    font-weight: 700;
}

.currency {
    font-size: 1rem;
    color: var(--gold);
    margin-inline-end: 0.15rem;
}

.btn-add-to-cart {
    background: rgba(181, 148, 111, 0.12);
    border: 1px solid var(--border-color);
    color: var(--gold);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add-to-cart:hover {
    background: var(--gold);
    color: var(--emerald-deep);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 148, 111, 0.2);
}

/* ==========================================================================
   BENEFITS SECTION (INTERACTIVE EXPERIENCE)
   ========================================================================== */
.benefits-section {
    padding: 6rem 2rem;
    background: rgba(166, 133, 98, 0.06);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-interactive {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.benefits-selectors {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.8rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.75);
    text-align: start;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition-smooth);
}

html[dir="rtl"] .benefit-btn {
    text-align: start;
}

.benefit-btn i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.benefit-btn:hover {
    background: rgba(181, 148, 111, 0.08);
    border-color: var(--gold);
    transform: translateX(5px);
}

html[dir="rtl"] .benefit-btn:hover {
    transform: translateX(-5px);
}

.benefit-btn.active {
    background: var(--gold);
    color: var(--emerald-deep);
    border-color: var(--gold);
    font-weight: 600;
}

.benefit-btn.active i {
    color: var(--emerald-deep);
}

/* Scent Board */
.benefit-display-board {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.benefit-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    display: flex;
    flex-direction: column;
}

.benefit-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.benefit-img-placeholder {
    height: 180px;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    position: relative;
}

.benefit-img-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--emerald-deep), transparent);
}

.benefit-stress-bg { background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=700&q=80'); }
.benefit-focus-bg { background-image: url('https://images.unsplash.com/photo-1518241353330-0f7941c2d9b5?auto=format&fit=crop&w=700&q=80'); }
.benefit-sleep-bg { background-image: url('https://images.unsplash.com/photo-1511295742364-92767edb68b4?auto=format&fit=crop&w=700&q=80'); }
.benefit-purify-bg { background-image: url('https://images.unsplash.com/photo-1602928321679-560bb453f190?auto=format&fit=crop&w=700&q=80'); }

.benefit-txt {
    padding: 2.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--emerald-deep);
}

.benefit-txt h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--gold-dark);
}

.benefit-txt p {
    font-size: 0.92rem;
    color: var(--cream-dark);
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 6rem 2rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
}

.quote-icon {
    font-size: 1.8rem;
    color: rgba(181, 148, 111, 0.2);
    margin-bottom: 1.2rem;
}

.quote-text {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.2rem;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(181, 148, 111, 0.15);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.customer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.customer-location {
    font-size: 0.8rem;
    color: var(--cream-dark);
}

/* ==========================================================================
   CONTACT & NEWSLETTER
   ========================================================================== */
.contact-section {
    padding: 6rem 2rem;
    background: radial-gradient(circle at top, rgba(16, 76, 50, 0.08) 0%, transparent 60%);
}

.contact-card-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7F2 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    box-shadow: var(--shadow-premium);
}

.contact-text-side {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text-side h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

html[lang="ar"] .contact-text-side h2 {
    font-size: 2rem;
    line-height: 1.45;
}

.contact-text-side p {
    font-size: 0.95rem;
    color: var(--cream-dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 480px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.3rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.6rem 1.5rem;
    color: var(--cream);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(20, 34, 26, 0.4);
}

.newsletter-form .btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.88rem;
}

.newsletter-msg {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Info Column */
.contact-info-side {
    background: rgba(181, 148, 111, 0.05);
    border-inline-start: 1px solid var(--border-color);
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h3 {
    font-size: 1.4rem;
    margin-bottom: 2.2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-method-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(181, 148, 111, 0.12);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.method-title {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    margin-bottom: 0.1rem;
}

html[lang="ar"] .method-title {
    letter-spacing: 0;
}

.method-detail {
    display: block;
    font-size: 0.95rem;
    color: var(--cream);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #F4EFE6;
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 2.5rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-svg {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-slogan {
    font-size: 0.9rem;
    color: var(--cream-dark);
    max-width: 320px;
    line-height: 1.7;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-links-grid h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

html[lang="ar"] .footer-links-grid h4 {
    font-family: var(--font-arabic);
    letter-spacing: 0;
}

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

.footer-links-grid ul li {
    margin-bottom: 0.8rem;
}

.footer-links-grid ul li a {
    font-size: 0.88rem;
    color: var(--cream-dark);
}

.footer-links-grid ul li a:hover {
    color: var(--gold);
    padding-inline-start: 4px;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--cream-dark);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    font-size: 1.1rem;
}

.footer-socials a:hover {
    color: var(--gold);
}

/* Footer Powered By Credit Styling */
.footer-copyright-powered {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--cream-dark);
    font-size: 0.82rem;
}

.footer-copyright-text {
    line-height: 1;
}

.footer-powered-by {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1;
}

.launchify-logo-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.8;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.launchify-logo-link:hover {
    opacity: 1;
    transform: scale(1.03);
}

.launchify-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

@media (max-width: 1024px) {
    .footer-copyright-powered {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    .footer-powered-by {
        justify-content: center;
    }
    .launchify-logo-img {
        height: 30px;
    }
}

/* ==========================================================================
   SHOPPING CART DRAWER (PREMIUM DESIGN)
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px; /* Slides in from right on LTR */
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-inline-start: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(20, 34, 26, 0.05);
    z-index: 200;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

html[dir="rtl"] .cart-drawer {
    right: auto;
    left: -480px; /* Slides in from left on RTL */
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
    right: 0;
}

html[dir="rtl"] .cart-drawer.active {
    right: auto;
    left: 0;
}

.cart-drawer-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-header h3 {
    font-size: 1.3rem;
}

.cart-close-btn {
    font-size: 1.4rem;
    color: var(--cream);
}

.cart-close-btn:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/* Cart Items Area */
.cart-drawer-items {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-message {
    text-align: center;
    margin: auto;
    color: var(--cream-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.empty-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}

/* Cart Card Item */
.cart-item-card {
    display: flex;
    gap: 1.2rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    animation: slideInItem 0.4s ease;
}

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

.cart-item-visual {
    width: 60px;
    height: 75px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cart-item-visual .bottle-svg {
    height: 65px;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-details h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.cart-item-details .item-meta {
    font-size: 0.78rem;
    color: var(--cream-dark);
    margin-bottom: 0.6rem;
}

/* Counter */
.cart-item-counter {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 0.2rem 0.6rem;
    width: fit-content;
}

.counter-btn {
    font-size: 0.75rem;
    color: var(--gold-light);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    color: var(--cream);
}

.item-qty-val {
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-price-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-remove {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.4);
}

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

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Cart Footer */
.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    background: rgba(250, 247, 242, 0.98);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.subtotal-val {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--cream);
}

.btn-checkout {
    width: 100%;
    padding: 1.1rem;
    font-weight: 600;
}

/* ==========================================================================
   MODALS AND CHECKOUT FORMS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 299;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.checkout-modal-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 600px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    animation: modalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.modal-header h3 {
    font-size: 1.4rem;
}

.modal-close-btn {
    font-size: 1.3rem;
    color: var(--cream);
}

.modal-close-btn:hover {
    color: var(--gold);
}

/* Form Styling */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold-light);
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    color: var(--cream);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold);
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(166, 133, 98, 0.1);
}

.form-group textarea {
    height: 80px;
    resize: none;
}

/* Dropdown list customization support */
.form-group select option {
    background: var(--emerald-deep);
    color: var(--cream);
}

/* Modal Summary */
.modal-order-summary {
    background: rgba(0,0,0,0.02);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.modal-order-summary h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.summary-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.summary-items li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--cream);
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.8rem;
}

/* Buttons in modal */
.modal-submit-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
}

/* Success Card */
.success-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    width: 500px;
    max-width: 100%;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrapper {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: successPulse 1.2s infinite alternate ease-in-out;
}

@keyframes successPulse {
    from { transform: scale(1); filter: drop-shadow(0 0 5px rgba(181, 148, 111, 0.2)); }
    to { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(181, 148, 111, 0.5)); }
}

.success-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.success-card p {
    font-size: 0.92rem;
    color: var(--cream-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS (MOBILE VIEWPORT OPTIMIZED)
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-title { font-size: 3rem; }
    .hero-container { gap: 2rem; }
    .philosophy-grid { gap: 1.5rem; }
    .product-grid { gap: 1.5rem; }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text-block {
        align-items: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-img {
        max-height: 400px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .benefits-interactive {
        grid-template-columns: 1fr;
    }
    
    .benefit-display-board {
        height: 480px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        border-inline-start: none;
        border-top: 1px solid var(--border-color);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links-grid {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }

    .hero-section {
        padding: calc(var(--header-height) + 2rem) 1rem 4rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }
    
    html[lang="ar"] .hero-title {
        font-size: 2.4rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        display: none; /* Handled via mobile menu */
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .product-grid {
        display: flex !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding: 10px 0 1.2rem !important; /* Prevent top border clipping */
        justify-content: flex-start !important;
        max-width: 100% !important;
    }
    
    /* Custom gold scrollbar acting as a swipe indicator line */
    .product-grid::-webkit-scrollbar {
        display: block !important;
        height: 3px !important;
    }
    
    .product-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
    }
    
    .product-grid::-webkit-scrollbar-thumb {
        background: var(--gold) !important;
        border-radius: 10px !important;
    }
    
    .product-card {
        flex: 0 0 280px !important;
        scroll-snap-align: start !important;
        border-radius: 16px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-img {
        height: 180px !important;
        margin-bottom: 0 !important;
    }
    
    .bottle-svg {
        height: 140px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .product-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .size-selection-wrapper {
        margin-bottom: 1rem;
    }

    .size-toggles {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .size-toggle-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .product-purchase-row {
        padding-top: 1rem;
    }

    .price-display {
        font-size: 1.3rem;
    }

    .btn-add-to-cart {
        padding: 0.55rem 1.1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .philosophy-section {
        padding: 4rem 0 !important; /* Spans full width for swipe */
    }

    .philosophy-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.2rem !important;
        padding: 10px 1.5rem 1.5rem 1.5rem !important;
        box-sizing: border-box !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Hide scrollbar for a clean luxury appearance */
    .philosophy-grid::-webkit-scrollbar {
        display: none !important;
    }

    .philosophy-card {
        flex: 0 0 280px !important; /* Keep cards side-by-side with equal width */
        scroll-snap-align: center !important;
        background: var(--card-bg) !important;
        border: 1px solid var(--border-color) !important;
        backdrop-filter: var(--glass-blur) !important;
        box-shadow: var(--shadow-premium) !important;
        padding: 2.2rem 1.5rem !important;
        border-radius: 16px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        box-sizing: border-box !important;
    }

    .philosophy-card .card-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin: 0 auto 1.2rem auto !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(166, 133, 98, 0.08) !important;
        color: var(--gold-dark) !important;
    }

    .philosophy-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.6rem !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        color: var(--cream) !important;
    }

    .philosophy-card p {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        color: var(--cream-dark) !important;
        padding: 0 0.2rem !important;
        margin: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
    }

    .benefit-display-board {
        height: 520px;
    }

    .modal-submit-controls {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cart-drawer {
        width: 100%;
    }

    .contact-card-wrapper {
        border-radius: 20px !important;
        margin: 0 1rem !important;
    }

    .contact-text-side {
        padding: 2.5rem 1.5rem !important;
        align-items: center !important;
    }

    .contact-text-side h2 {
        font-size: 1.6rem !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    .contact-text-side p {
        font-size: 0.85rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 30px !important;
        padding: 0.8rem 1.5rem !important;
        width: 100% !important;
        text-align: center !important;
    }

    .newsletter-form input:focus {
        border-color: var(--gold) !important;
    }

    .newsletter-form .btn {
        width: 100% !important;
        border-radius: 30px !important;
        padding: 0.8rem !important;
        justify-content: center !important;
    }

    .contact-info-side {
        padding: 2.5rem 1.5rem !important;
        align-items: center !important;
        border-top: 1px solid var(--border-color) !important;
    }

    .contact-info-side h3 {
        font-size: 1.3rem !important;
        text-align: center !important;
        margin-bottom: 1.8rem !important;
    }

    .contact-methods {
        align-items: center !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }

    .contact-method-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.4rem !important;
    }

    /* Testimonials Mobile Sizing & Swipe Navigation */
    .testimonials-container {
        display: flex !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.2rem !important;
        padding: 10px 0 1.2rem !important; /* Top padding to prevent card shadow clipping */
        justify-content: flex-start !important;
        max-width: 100% !important;
    }

    /* Custom gold scrollbar acting as a swipe indicator line for testimonials */
    .testimonials-container::-webkit-scrollbar {
        display: block !important;
        height: 3px !important;
    }

    .testimonials-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
    }

    .testimonials-container::-webkit-scrollbar-thumb {
        background: var(--gold) !important;
        border-radius: 10px !important;
    }

    .testimonial-card {
        flex: 0 0 295px !important; /* Premium comfortable enlarged width */
        scroll-snap-align: start !important;
        padding: 2.2rem 1.6rem !important; /* Slightly enlarged for comfortable spacing */
        border-radius: 20px !important; /* Matches desktop and products border radius */
        border: 1px solid rgba(181, 148, 111, 0.15) !important;
        background: rgba(13, 25, 20, 0.45) !important;
    }

    .quote-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0.9rem !important;
    }

    .quote-text {
        font-size: 0.9rem !important; /* Slightly enlarged font size */
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }

    .customer-info {
        gap: 0.9rem !important;
        padding-top: 0.9rem !important;
    }

    .customer-avatar {
        width: 40px !important; /* Enlarge avatar container */
        height: 40px !important;
        font-size: 1rem !important;
    }

    .customer-info h4 {
        font-size: 0.9rem !important; /* Slightly enlarged name font size */
        line-height: 1.3 !important;
    }

    .customer-location {
        font-size: 0.74rem !important; /* Slightly enlarged location font size */
        line-height: 1.2 !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    html[lang="ar"] .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-glass-card {
        padding: 0.8rem 1.2rem;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .benefit-btn {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .benefit-display-board {
        height: 580px;
    }

    .benefit-txt {
        padding: 1.5rem;
    }

    .benefit-txt h3 {
        font-size: 1.2rem;
    }

    .checkout-modal-card {
        padding: 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   MOBILE MENU DRAWER OVERLAY
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 247, 242, 0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--cream);
}

html[dir="rtl"] .mobile-nav-close {
    right: auto;
    left: 30px;
}

.mobile-nav-link {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--cream-dark);
}

html[lang="ar"] .mobile-nav-link {
    font-family: var(--font-arabic);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--gold);
    transform: scale(1.05);
}

/* ==========================================================================
   CATALOG PRODUCT GRID (3-COLUMN MINI GRID ON MOBILE WITH VERTICAL SCROLL)
   ========================================================================== */
.catalog-product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .catalog-product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        padding: 10px 0.8rem !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Elegant shrunken product card for mobile catalog grid */
    .catalog-product-grid .product-card {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        background: var(--card-bg) !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: 0 8px 24px rgba(20, 34, 26, 0.03) !important;
        border-radius: 16px !important;
        padding: 0.8rem !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        min-height: auto !important;
        box-sizing: border-box !important;
        transition: var(--transition-smooth) !important;
    }

    .catalog-product-grid .product-image-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1.05 !important;
        background: rgba(166, 133, 98, 0.04) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 8px !important;
        margin-bottom: 8px !important;
        position: relative !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .catalog-product-grid .product-img {
        max-height: 120px !important;
        height: 120px !important;
        width: auto !important;
        object-fit: contain !important;
        margin-bottom: 0 !important;
    }

    .catalog-product-grid .bottle-svg {
        height: 120px !important;
        width: auto !important;
        max-height: 120px !important;
    }

    .catalog-product-grid .product-badge {
        display: none !important;
    }

    .catalog-product-grid .product-info {
        padding: 0.2rem 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .catalog-product-grid .rating-stars {
        display: none !important;
    }
    
    .catalog-product-grid .rating-stars i {
        display: none !important;
    }
    
    .catalog-product-grid .rating-num {
        display: none !important;
    }

    .catalog-product-grid .product-title {
        font-family: var(--font-heading) !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: var(--cream) !important;
        margin: 0 0 8px 0 !important;
        text-align: center !important;
        height: 2.4em !important;
        overflow: hidden !important;
        line-height: 1.25 !important;
    }

    .catalog-product-grid .product-desc {
        display: none !important;
    }

    .catalog-product-grid .size-selection-wrapper {
        display: none !important;
    }

    .catalog-product-grid .product-purchase-row {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .catalog-product-grid .price-display {
        text-align: center !important;
        margin: 0 !important;
        display: block !important;
        width: 100% !important;
    }

    .catalog-product-grid .btn-add-to-cart {
        display: none !important;
    }
}

/* ==========================================================================
   PREMIUM LIVE SEARCH SYSTEM
   ========================================================================== */
.premium-search-bar-wrapper {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 2rem;
    z-index: 98;
    box-sizing: border-box;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(20, 34, 26, 0.02);
}

.main-header.scrolled + .premium-search-bar-wrapper {
    top: 75px;
}

.premium-search-bar-wrapper.scrolled {
    background: rgba(250, 247, 242, 0.98);
}

.search-bar-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.search-form-combined {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px; /* Clean luxury rounded shape */
    overflow: hidden; /* Clips children corner radiuses */
    box-shadow: 0 4px 15px rgba(20, 34, 26, 0.02), inset 0 2px 4px rgba(20, 34, 26, 0.01);
    transition: var(--transition-smooth);
}

.search-form-combined:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(166, 133, 98, 0.18), inset 0 1px 2px rgba(20, 34, 26, 0.01);
}

.search-input-field-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

#premium-search-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.8rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream);
    outline: none;
    box-sizing: border-box;
}

html[lang="ar"] #premium-search-input {
    font-family: var(--font-arabic);
}

.search-clear-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--cream-dark);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

html[lang="ar"] .search-clear-btn {
    right: auto;
    left: 14px;
}

.search-clear-btn:hover {
    color: var(--gold-dark);
    transform: scale(1.1);
}

/* Submit Button Style matching luxury brand styling */
.search-submit-btn {
    background: #0A3320; /* Luxury dark green */
    border: none;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1.8rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

html[lang="ar"] .search-submit-btn {
    font-family: var(--font-arabic);
}

.search-submit-btn:hover {
    background: #051A10; /* Darker luxury green */
    color: #FFFFFF;
}

.search-btn-icon {
    font-size: 1rem;
}

/* Results Dropdown */
.search-dropdown-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(20, 34, 26, 0.08);
    z-index: 100;
    overflow: hidden;
    animation: searchFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

@keyframes searchFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-dropdown-loading {
    padding: 2rem;
    text-align: center;
    color: var(--gold);
    font-size: 1.5rem;
}

.search-dropdown-scrollable {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

/* Scrollbar styles for dropdown */
.search-dropdown-scrollable::-webkit-scrollbar {
    width: 5px;
}
.search-dropdown-scrollable::-webkit-scrollbar-track {
    background: transparent;
}
.search-dropdown-scrollable::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

/* Result item styling */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(166, 133, 98, 0.08);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(166, 133, 98, 0.04);
}

.search-result-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(166, 133, 98, 0.03);
    border: 1px solid var(--border-color);
    margin-inline-end: 1rem;
    flex-shrink: 0;
}

.search-result-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.search-result-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

html[lang="ar"] .search-result-title {
    font-family: var(--font-arabic);
}

.search-result-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-price {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.search-result-compare-price {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--cream-dark);
    text-decoration: line-through;
    opacity: 0.6;
}

.search-result-view-all {
    display: block;
    text-align: center;
    padding: 0.9rem;
    background: rgba(166, 133, 98, 0.04);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

html[lang="ar"] .search-result-view-all {
    font-family: var(--font-arabic);
}

.search-result-view-all:hover {
    background: var(--gold);
    color: #FFFFFF;
}

.search-results-empty {
    padding: 2rem;
    text-align: center;
    color: var(--cream-dark);
    font-size: 0.92rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .premium-search-bar-wrapper {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px) {
    .search-btn-text {
        display: none !important;
    }
    .search-submit-btn {
        padding: 0 1.2rem !important;
    }
}

