/* Enable smooth scrolling for navigation links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + var(--announcement-height) + 20px);
}

:root {
    /* Color Palette */
    --primary: #0c0c0c;
    --primary-light: #262626;
    --accent: #c5a059;
    --accent-dark: #a88542;
    --bg-light: #000000;
    /* Yellowish Cream */
    --bg-alt: #f7f3e6;
    /* Darker Cream */
    --text-main: #1a1a1a;
    /* Dark Text */
    --text-muted: #666666;
    /* Muted Dark */
    --white: #ffffff;
    --border: #e6e1cd;
    /* Light Border */

    /* Typography */
    --font-ui: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;
    --font-ar: 'Almarai', 'Cairo', sans-serif;

    /* Layout */
    --nav-height: 80px;
    --announcement-height: 40px;
    --banner-height: 0px;
    --container-max: 1200px;
}

/* Prevent scrolling when mobile menu is open */
body.no-scroll {
    overflow: hidden !important;
    /* height removed - JS handles position: fixed with top offset */
    touch-action: none;
    /* Prevent touch scrolling on mobile */
}

/* Simple & Professional Minimalist Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #000;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
    pointer-events: all;
    /* Block all clicks */
    user-select: none;
    /* Prevent text selection */
    touch-action: none;
    /* Prevent touch scrolling */
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Allow clicks after loaded */
}

.preloader-content-final {
    text-align: center;
}

.preloader-logo-final {
    font-family: var(--font-ui);
    font-size: 3.5rem;
    letter-spacing: 5px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    /* Enhanced gold gradient matching hero title */
    background: linear-gradient(135deg, #a88542 0%, #dbb458 25%, #f5d78e 50%, #dbb458 75%, #a88542 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lightSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite,
        luxuryFloat 4s ease-in-out infinite;
    direction: ltr !important;
    unicode-bidi: bidi-override;
}

.preloader-loader {
    width: 250px;
    height: 3px;
    background: rgba(219, 180, 88, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.preloader-loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #a88542, #dbb458, #f5d78e, #fff);
    background-size: 200% 100%;
    box-shadow: 0 0 15px rgba(219, 180, 88, 0.5);
    animation: realProgress 2s cubic-bezier(0.1, 0, 0.2, 1) forwards,
        gradientMove 1.5s linear infinite;
}

@media (max-width: 768px) {
    .preloader-loader-bar {
        box-shadow: none !important;
        /* Remove glow for mobile performance */
        animation: realProgress 1s ease forwards !important;
        /* Simpler animation */
    }

    .preloader-logo-final {
        animation: lightSweep 6s cubic-bezier(0.4, 0, 0.2, 1) infinite,
            luxuryFloat 6s ease-in-out infinite !important;
        will-change: transform, background-position;
        letter-spacing: 4px !important;
        font-size: 2.8rem !important;
    }
}

@keyframes realProgress {
    0% {
        width: 0%;
    }

    30% {
        width: 40%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Reveal on Scroll Animation Class - Enhanced */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === CINEMATIC STAGGER EFFECT FOR PRODUCT CARDS === */
.reveal.active .product-card {
    animation: cinematicCardReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    opacity: 0;
    filter: blur(8px);
}

/* Slower stagger delays for cinematic effect */
.reveal.active .product-card:nth-child(1) {
    animation-delay: 0.15s;
}

.reveal.active .product-card:nth-child(2) {
    animation-delay: 0.25s;
}

.reveal.active .product-card:nth-child(3) {
    animation-delay: 0.35s;
}

.reveal.active .product-card:nth-child(4) {
    animation-delay: 0.45s;
}

.reveal.active .product-card:nth-child(5) {
    animation-delay: 0.55s;
}

.reveal.active .product-card:nth-child(6) {
    animation-delay: 0.65s;
}

.reveal.active .product-card:nth-child(7) {
    animation-delay: 0.75s;
}

.reveal.active .product-card:nth-child(8) {
    animation-delay: 0.85s;
}

.reveal.active .product-card:nth-child(n+9) {
    animation-delay: 0.95s;
}

/* Unified Cinematic Reveal (Smart Lightening) */
@keyframes cinematicCardReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9) rotateX(var(--reveal-rotate, 15deg)) translateZ(0);
        filter: blur(var(--reveal-blur, 10px));
    }

    60% {
        transform: translateY(-5px) scale(1.02) rotateX(0deg) translateZ(0);
        filter: blur(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg) translateZ(0);
        filter: blur(0px);
    }
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
}

html,
body {
    color: var(--text-main);
    background-color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    font-family: var(--font-ui);
}

html[lang="ar"] body {
    font-family: var(--font-ar);
}



/* Allow selection in form fields */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Global Gold Text Style for Arabic Headings */
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] .logo-text,
html[lang="ar"] .section-header h2 {
    font-family: var(--font-ar) !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #a88542 0%, #c5a059 50%, #a88542 100%);
    background-size: 100% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
    -webkit-touch-callout: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    -webkit-touch-callout: none;
    outline: none;
}

img {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}

.announcement-bar {
    position: fixed;
    top: var(--banner-height, 0px);
    left: 0;
    width: 100%;
    height: var(--announcement-height);
    background: linear-gradient(90deg, #0c0c0c 0%, #1a1a1a 50%, #0c0c0c 100%);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    overflow: hidden;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide announcement bar when menu is open to prevent peek-through */
body.no-scroll .announcement-bar {
    top: -60px !important;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.announcement-pill {
    background: var(--accent);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: flash 2s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@media (max-width: 600px) {
    .announcement-bar {
        height: auto;
        padding: 8px 1rem;
    }

    .announcement-content {
        font-size: 0.75rem;
        text-align: center;
        flex-direction: row;
        gap: 0.5rem;
    }

    .announcement-pill {
        padding: 1px 8px;
        font-size: 0.65rem;
    }
}

.announcement-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.1), transparent);
    animation: lightSweep 4s infinite;
}

.nav-container {
    direction: rtl !important;
    direction: rtl !important;

    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
}

.navbar {
    position: fixed;
    top: calc(var(--banner-height, 0px) + var(--announcement-height));
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: 0.4s ease, top 0.4s ease, background-color 0.4s ease;
}

/* Force Navbar to the top and above everything when menu is open */
.navbar.menu-active {
    top: 0 !important;
    z-index: 2000 !important;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: 70px;
}

.logo {
    font-family: var(--font-ui);
    font-size: 2.4rem;
    letter-spacing: 2px;
    font-weight: 800;
    position: relative;
    color: #c5a059;
    /* لون ذهبي ثابت كأصل */
    display: inline-block;
    white-space: nowrap;
    padding: 0.2rem 0;
    transition: 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
    direction: ltr !important;
    unicode-bidi: bidi-override;
}

/* إضافة اللمعان - Animation Restored */
@supports (-webkit-background-clip: text) or (background-clip: text) {

    .logo,
    .preloader-logo-final {
        background: linear-gradient(to right, #a88542 0%, #c5a059 20%, #fff 50%, #c5a059 80%, #a88542 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: lightSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite,
            luxuryFloat 6s ease-in-out infinite;
        will-change: transform, background-position;
        transform: translateZ(0);
    }

    /* Cinematic Logo - E goes to center then returns */
    .cinematic-logo {
        animation: luxuryFloat 10s ease-in-out infinite;
        position: relative;
        display: flex;
        align-items: center;
    }

    /* صورة الـ E */
    .cinematic-logo .logo-icon {
        height: 4.5rem;
        width: auto;
        object-fit: contain;
        vertical-align: middle;
        margin-right: -16px;
        margin-bottom: -2px;
        /* Shadow removed from logo as per user request */
        animation: letterE_cinema 10s ease-in-out infinite;
        will-change: transform;
        transform: translateZ(0);
    }

    .cinematic-logo .logo-letter {
        display: inline-block;
        background: linear-gradient(to right, #a88542 0%, #c5a059 20%, #fff 50%, #c5a059 80%, #a88542 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: otherLetters_cinema 10s ease-in-out infinite;
        will-change: transform, opacity;
        transform: translateZ(0);
    }
}

/* Unifying Cinematic Movement (Smart Lightening) */
@keyframes letterE_cinema {

    0%,
    15%,
    85%,
    100% {
        transform: translateX(0) scale(1) translateZ(0);
    }

    30%,
    70% {
        transform: translateX(40px) scale(1.5) translateZ(0);
    }
}

@keyframes otherLetters_cinema {

    0%,
    15%,
    85%,
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) translateZ(0);
        filter: blur(0);
    }

    25%,
    75% {
        opacity: 0;
        transform: translateX(-30px) scale(0.8) translateZ(0);
        /* Intelligent Lightening: Blur controlled by CSS variable for mobile optimization */
        filter: blur(var(--logo-blur, 8px));
    }
}

@media (max-width: 768px) {

    .logo,
    .preloader-logo-final {
        animation-duration: 6s;
        /* Calmer but cinematic */
    }
}

/* Smart Lightening: Global Reveal Variables */
:root {
    --reveal-blur: 10px;
    --reveal-rotate: 15deg;
    --reveal-stagger: 0.1s;
}

@media (max-width: 768px) {
    :root {
        --reveal-blur: 0px;
        /* No blur on mobile */
        --reveal-rotate: 0deg;
        /* No 3D rotate on mobile */
        --reveal-stagger: 0.05s;
        /* Snappier stagger for mobile */
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
}

.logo:hover {
    animation: lightSweep 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform: scale(1.02);
}

@keyframes lightSweep {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes luxuryFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes firstLetterEntry {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes restLettersEntry {
    0% {
        max-width: 0;
        opacity: 0;
        transform: translateX(-15px);
        filter: blur(4px);
    }

    100% {
        max-width: 400px;
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Cinematic Logo Intro Animation */
@keyframes letterEIntro {
    0% {
        transform: scale(1.8);
        opacity: 0;
        filter: blur(10px);
    }

    30% {
        transform: scale(1.8);
        opacity: 1;
        filter: blur(0);
    }

    70% {
        transform: scale(1.8);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes restLettersReveal {
    0% {
        max-width: 0;
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(8px);
    }

    100% {
        max-width: 500px;
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 3rem;
    transition: transform 0.3s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1200;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger active state - transforms to X */
.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu styles */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        touch-action: manipulation;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0 !important;
        width: 100%;
        height: 100vh !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 3rem 2rem;
        gap: 2.5rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.3s ease,
            visibility 0.3s ease;
        overflow-y: auto;
        z-index: 1150;
        visibility: hidden;
        opacity: 0;
        will-change: transform, opacity;
        backface-visibility: hidden;
    }

    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a:not(.nav-track-btn) {
        display: block;
        padding: 1rem;
        font-size: 1.2rem !important;
    }

    /* Make track button Rectangular & Clean on mobile - High Specificity */
    body .nav-links .nav-track-btn {
        font-size: 1.5rem !important;
        padding: 0.8rem 2rem !important;
        /* Adjusted padding */
        background-color: transparent !important;
        background-image: linear-gradient(90deg, #ffd700, #ffd700) !important;
        /* The underline */
        background-size: 0% 2px !important;
        /* Start hidden */
        background-repeat: no-repeat !important;
        background-position: center bottom 2px !important;
        /* Position right under text */
        background-origin: content-box !important;
        /* Limit to text width */
        border: 2px solid #ffd700 !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        font-weight: 800 !important;
        letter-spacing: 1px !important;
        margin: 1.5rem 0 !important;
        color: #ffd700 !important;
        width: auto !important;
        display: inline-block !important;
        transition: all 0.3s ease !important;
    }

    body .nav-links .nav-track-btn:hover {
        box-shadow: none !important;
        transform: scale(1.05) !important;
        background-color: rgba(197, 160, 89, 0.1) !important;
        background-size: 100% 2px !important;
        /* Expand to text width exactly */
        color: #ffd700 !important;
    }

    /* Remove the pseudo-element underline effectively */
    body .nav-links .nav-track-btn::after {
        display: none !important;
    }
}



.nav-links a:not(.nav-track-btn) {
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: none;
    font-size: 0.85rem;
    color: var(--accent);
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Gold underline effect - starts from left, exact text width */
.nav-links a:not(.nav-track-btn)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #ffd700);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:not(.nav-track-btn):hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-links a:not(.nav-track-btn):hover::after {
    width: 100%;
}

.nav-track-btn {
    background: transparent !important;
    color: var(--accent) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: inline-block;
    border: 2px solid rgba(197, 160, 89, 0.5) !important;
    box-shadow: none !important;
    position: relative;
    overflow: visible;
    width: auto;
    min-width: auto;
}

/* Gold underline for track button - expands from center */
.nav-track-btn::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #ffd700);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-track-btn:hover {
    transform: translateY(-2px);
    color: #ffd700 !important;
    border-color: var(--accent) !important;
    box-shadow: none !important;
    background: transparent !important;
}

.nav-track-btn:hover::after {
    width: 70%;
}


.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    position: relative;
    padding: 10px;
    color: var(--accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cart-btn:hover {
    background: none;
    color: #ff0000;
    transform: translateY(-4px);
}

#login-btn:hover {
    color: #2ecc71 !important;
    transform: translateY(-4px);
}

#cart-btn:active,
#login-btn:active {
    transform: translateY(-1px);
}

#cart-btn:hover #cart-count {
    transform: scale(1.1);
    background-color: #e60000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

#cart-count {
    position: absolute;
    top: -1px;
    right: 1px;
    background-color: #ff0000;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    /* Fixed width */
    height: 20px;
    /* Fixed height */
    padding: 0;
    /* reset padding */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* Ensure centering */
}

/* Luxury Language Selector - Minimalist Redesign */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.luxury-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    color: var(--accent);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: none;
    cursor: pointer;
}

.luxury-lang-btn svg {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-lang-btn:hover {
    color: var(--accent);
    background: none;
    transform: translateY(-4px);
    box-shadow: none;
}

.luxury-lang-btn:hover svg {
    transform: none;
}

.active-lang-code {
    font-size: 0.65rem;
    font-weight: 900;
    position: absolute;
    bottom: -4px;
    right: -2px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.2px;
    text-shadow: none;
}

.luxury-lang-btn:hover .active-lang-code {
    transform: scale(1.1);
    box-shadow: none;
}

.lang-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    min-width: 140px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

@media (max-width: 768px) {
    .lang-dropdown {
        right: -20px;
        width: 130px;
    }
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    top: calc(100% + 12px);
}

.lang-dropdown button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    padding: 12px 16px;
    text-align: right;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    width: 100%;
}

[dir="ltr"] .lang-dropdown button {
    text-align: left;
}

.lang-dropdown button:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent);
    padding-right: 20px;
}

[dir="ltr"] .lang-dropdown button:hover {
    padding-right: 16px;
    padding-left: 20px;
}

.lang-dropdown button.active {
    color: var(--accent);
    background: rgba(197, 160, 89, 0.05);
}


/* ========================================
   NEW HERO - Featured Products Grid
   ======================================== */
.hero-featured {
    min-height: 85vh;
    padding: calc(80px + var(--announcement-height)) 3rem 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0c0c0c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(197, 160, 89, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

/* Golden Particles Animation */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.gold-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--accent) 0%, #fff 100%);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 10s infinite ease-in-out;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--accent);
    will-change: transform, opacity;
}

/* --- Mobile Performance Optimization for Hero --- */
@media (max-width: 768px) {

    /* Reduce particles count on mobile for better FPS */
    .gold-particles span:nth-child(n+10) {
        display: none !important;
    }

    /* Remove expensive filters and shadows on mobile */
    .gold-particles span {
        filter: none !important;
        box-shadow: none !important;
        width: 3px;
        height: 3px;
    }
}

.gold-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.gold-particles span:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
}

.gold-particles span:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
}

.gold-particles span:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
}

.gold-particles span:nth-child(5) {
    left: 50%;
    animation-delay: 0.5s;
}

.gold-particles span:nth-child(6) {
    left: 60%;
    animation-delay: 1.5s;
}

.gold-particles span:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
}

.gold-particles span:nth-child(8) {
    left: 80%;
    animation-delay: 3.5s;
}

.gold-particles span:nth-child(9) {
    left: 85%;
    animation-delay: 0.8s;
}

.gold-particles span:nth-child(10) {
    left: 95%;
    animation-delay: 1.8s;
}

.gold-particles span:nth-child(11) {
    left: 15%;
    animation-delay: 4s;
}

.gold-particles span:nth-child(12) {
    left: 25%;
    animation-delay: 5s;
}

.gold-particles span:nth-child(13) {
    left: 35%;
    animation-delay: 6s;
}

.gold-particles span:nth-child(14) {
    left: 45%;
    animation-delay: 7s;
}

.gold-particles span:nth-child(15) {
    left: 55%;
    animation-delay: 4.5s;
}

.gold-particles span:nth-child(16) {
    left: 65%;
    animation-delay: 5.5s;
}

.gold-particles span:nth-child(17) {
    left: 75%;
    animation-delay: 6.5s;
}

.gold-particles span:nth-child(18) {
    left: 90%;
    animation-delay: 7.5s;
}

.gold-particles span:nth-child(19) {
    left: 5%;
    animation-delay: 2.2s;
}

.gold-particles span:nth-child(20) {
    left: 48%;
    animation-delay: 3.3s;
}

@keyframes floatParticle {

    0%,
    100% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    90% {
        opacity: 0;
        transform: translateY(-20vh) scale(1);
    }
}

/* Hero Container */
.hero-featured-container {
    direction: rtl !important;

    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    /* Force Hardware Acceleration */
    transform: translateZ(0);
    will-change: transform;
}

/* Product Grid */
.hero-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.hero-grid-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
    box-shadow: none;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    background: #0a0a0a;
    /* Cinematic entrance animation */
    animation: heroCardReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    opacity: 0;
    transform: translateY(80px) scale(0.85);
    filter: blur(10px);
}

/* Staggered entrance for hero cards */
.hero-grid-card:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-grid-card:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-grid-card:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-grid-card:nth-child(4) {
    animation-delay: 0.9s;
}

/* Cinematic hero card animation */
@keyframes heroCardReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.85) rotateY(-10deg);
        filter: blur(15px);
    }

    40% {
        opacity: 0.7;
        filter: blur(5px);
    }

    70% {
        transform: translateY(-15px) scale(1.02) rotateY(0deg);
        filter: blur(0px);
    }

    85% {
        transform: translateY(8px) scale(0.99);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
}

.hero-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in-out;
    will-change: opacity, transform;
}

.hero-grid-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    transition: all 0.4s ease;
}

.hero-grid-card .card-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-ui);
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.hero-grid-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    /* box-shadow: 0 25px 60px rgba(197, 160, 89, 0.25); */
    box-shadow: none;
}

.hero-grid-card:hover img {
    transform: scale(1.15);
}

.hero-grid-card:hover .card-title {
    transform: translateY(0);
    opacity: 1;
    color: var(--accent);
}

.hero-grid-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

/* Welcome Content */
.hero-welcome-content {
    text-align: center;
    padding: 0 1rem;
}

html[dir="ltr"] .hero-welcome-content {
    text-align: left;
    direction: ltr;
    padding-right: 0;
    padding-left: 2rem;
}

/* welcome-badge section removed */

.hero-welcome-content h1 {
    font-size: 5.5rem;
    font-family: var(--font-ui);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* Enhanced gold gradient - more vibrant and visible */
    background: linear-gradient(135deg, #d4a84b 0%, #ffd700 25%, #f5d78e 50%, #ffd700 75%, #d4a84b 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--accent);
    /* Fallback to accent color */
    color: var(--accent);
    /* PREMIUM LUXURY REVEAL ANIMATION */
    animation: premiumTitleReveal 2s cubic-bezier(0.16, 1, 0.3, 1) both,
        goldShimmerText 5s linear 2s infinite;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Initial state - hidden in darkness */
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 120%, 0 120%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title-subline {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7em;
    position: relative;
    padding-top: 0.8rem;
    padding-bottom: 0.5rem;
    /* Space for dots */
    color: var(--accent) !important;
    -webkit-text-fill-color: var(--accent) !important;
    font-family: var(--font-ar) !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
}

.title-subline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent);
    opacity: 0.8;
}

/* === PREMIUM LUXURY REVEAL ANIMATION === */
@keyframes premiumTitleReveal {
    0% {
        opacity: 0;
        transform: scale(1.1) translateY(30px);
        filter: blur(15px) brightness(0.5);
        letter-spacing: 20px;
    }

    40% {
        opacity: 0.8;
        filter: blur(5px) brightness(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0) brightness(1);
        letter-spacing: normal;
    }
}

/* Spotlight beam removed - was causing visual issues */

@keyframes goldShimmerText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-welcome-content .tagline {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    /* Spotlight entrance with delay */
    animation: spotlightTextReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    opacity: 0;
}

.hero-welcome-content .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    /* Spotlight entrance with delay */
    animation: spotlightTextReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    opacity: 0;
}

/* Spotlight text reveal for secondary elements */
@keyframes spotlightTextReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: brightness(0) blur(8px);
    }

    40% {
        filter: brightness(2) blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: brightness(1) blur(0);
    }
}

/* CTA Buttons */
.hero-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 3rem;
    /* Spotlight entrance */
    animation: spotlightTextReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
    opacity: 0;
}

.hero-cta-buttons .btn,
.hero-cta-buttons .badge-item {
    width: 100%;
    justify-content: center;
    height: 100%;
    min-height: 60px;
}

.btn-outline-gold {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

/* Google Play Style Button (Android Green) */
.btn-google-play {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #000;
    border: 1px solid rgba(61, 220, 132, 0.4);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn-google-play:hover {
    background: rgba(61, 220, 132, 0.1);
    border-color: #3DDC84;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(61, 220, 132, 0.2);
}

.btn-google-play svg {
    color: #3DDC84;
    /* Android Green */
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-google-play:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.play-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
    overflow: hidden;
}

.play-small {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 500;
    color: #3DDC84;
    letter-spacing: 0.5px;
}

.play-big {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-ui);
    white-space: normal;
    word-break: break-word;
    transition: color 0.3s ease;
}

.btn-google-play .play-big {
    color: #3DDC84;
    /* Green ONLY for Android */
}

.btn-google-play:hover .play-big {
    color: #3DDC84;
}

/* App Store Button (Grey & White Glow) */
.btn-app-store {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #666;
    /* Grey base */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0f0f0;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 160px;
}

.btn-app-store:hover {
    background: #fff;
    /* Turns White */
    color: #000;
    /* Text turns black */
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    /* White Glow */
    border-color: #fff;
}

.btn-app-store svg {
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-app-store:hover svg {
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.btn-app-store .play-small {
    color: #ddd;
    transition: all 0.3s ease;
}

.btn-app-store:hover .play-small {
    color: #333;
}

.btn-app-store .play-big {
    transition: all 0.3s ease;
}

/* RTL Support for Play Button */
html[dir="rtl"] .play-text {
    text-align: right;
}

/* Responsive adjustments for buttons */
@media (max-width: 480px) {
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-ui);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-featured-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-product-grid {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-welcome-content {
        order: 1;
        text-align: center;
        padding-right: 0;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-welcome-content h1 {
        font-size: 4rem;
        /* Adjusted closer to PC but careful with overflow */
        line-height: 1.2;
    }
}

@media (max-width: 600px) {
    .hero-featured {
        padding: 140px 1.5rem 40px !important;
    }

    .hero-product-grid {
        gap: 0.8rem;
    }

    .hero-grid-card {
        border-radius: 12px;
    }

    .hero-welcome-content h1 {
        font-size: 3.5rem;
        /* Massive for mobile to match PC feel */
        line-height: 1.2;
    }

    .hero-welcome-content .tagline {
        font-size: 1.2rem;
    }

    .hero-welcome-content .description {
        font-size: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .gold-particles span {
        width: 4px;
        height: 4px;
    }
}


/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.4s ease;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* Products Section */
.products-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2.5rem 1rem;
    background: url('../images/shop-bg.webp') center center / cover no-repeat;
    background-size: cover;
    background-attachment: scroll;
    /* Changed from fixed for mobile performance */
    border-radius: 0;
    box-shadow: none;
    color: #1d1d1f;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.products-section .section-header,
.products-section .product-grid {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   PREMIUM ABOUT SECTION
   ======================================== */
.about-premium {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0c0c0c 100%);
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.about-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-premium-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Brand Story Section */
.brand-story {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.story-content {
    text-align: right;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.story-content h2 {
    font-size: 3rem;
    color: var(--white);
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    /* Increased from 1.3 to prevent clipping Arabic dots */
    padding-bottom: 10px;
    /* Extra space for descenders */
}

.gold-text {
    background: linear-gradient(135deg, var(--accent) 0%, #f5d78e 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmerText 4s linear infinite;
    padding-bottom: 5px;
    /* Ensure dots are covered */
    display: inline-block;
    /* Allow padding to work */
    line-height: 1.4;
}

.story-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 2;
    margin-bottom: 2rem;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.signature-line {
    width: 50px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
    display: none;
    /* Hide original line if present anywhere else */
}

/* Signature Wrapper */
.signature-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-inline-end: 20px;
}

/* Verification Label "Signed" */
/* verification Label "Signed" */
.signature-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.6;
    margin-bottom: -5px;
    /* Increased space from -15px */
    margin-inline-start: 10px;
}

/* New Signature Font Style */
.signature-font {
    font-family: 'Mr De Haviland', cursive;
    font-size: 3.8rem;
    color: var(--accent);
    margin-inline-end: 0;
    transform: rotate(-5deg);
    display: inline-block;
    font-weight: 400;
    opacity: 0.9;
    position: relative;
    letter-spacing: -2px;
    /* Relaxed from -3px */
}

/* Handwritten Underline Swash */
.signature-font::after {
    content: '';
    position: absolute;
    bottom: 5px;
    /* Position under text */
    left: 10px;
    width: 100%;
    /* Spans the whole width */
    height: 20px;
    border-bottom: 2px solid var(--accent);
    border-radius: 0 0 50% 50%;
    /* Curve */
    transform: rotate(-3deg);
    /* Slight tilt */
    opacity: 0.7;
    pointer-events: none;
}

html[lang="ar"] .story-signature .signature-text {
    order: -1;
}

.signature-text {
    color: var(--accent);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

/* Story Visual - Decorative Frame */
.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-frame {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid transparent;
    pointer-events: none;
}

.frame-corner.top-right {
    top: 0;
    right: 0;
    border-top-color: var(--accent);
    border-right-color: var(--accent);
}

.frame-corner.top-left {
    top: 0;
    left: 0;
    border-top-color: var(--accent);
    border-left-color: var(--accent);
}

.frame-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom-color: var(--accent);
    border-right-color: var(--accent);
}

.frame-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom-color: var(--accent);
    border-left-color: var(--accent);
}

.visual-content {
    text-align: center;
}

.about-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    /* filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4)); */
    filter: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Stats Bar */
.about-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(197, 160, 89, 0.03) 100%);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 16px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-ui);
    display: inline;
}

.stat-plus {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(197, 160, 89, 0.3) 50%, transparent 100%);
}

/* --- ABOUT US SPECIFIC ANIMATIONS --- */

/* Brand Story Animation */
.brand-story.reveal.active .story-content {
    animation: slideFromRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand-story.reveal.active .story-visual {
    animation: slideFromLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Stats Bar Staggering */
.about-stats-bar.reveal.active .stat-box {
    animation: cinematicCardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.about-stats-bar.reveal.active .stat-box:nth-child(1) {
    animation-delay: 0.1s;
}

.about-stats-bar.reveal.active .stat-box:nth-child(3) {
    animation-delay: 0.2s;
}

.about-stats-bar.reveal.active .stat-box:nth-child(5) {
    animation-delay: 0.3s;
}

.about-stats-bar.reveal.active .stat-box:nth-child(7) {
    animation-delay: 0.4s;
}

/* Premium Features Staggering */
.premium-features.reveal.active .premium-feature-card {
    animation: cinematicCardReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.premium-features.reveal.active .premium-feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.premium-features.reveal.active .premium-feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.premium-features.reveal.active .premium-feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Animation Keyframes */
@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Why Us Header */
.why-us-header {
    text-align: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.why-us-header h2 {

    font-size: 2.5rem;
    color: var(--white);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

html[dir="ltr"] .why-us-header h2 {
    direction: ltr;
    unicode-bidi: embed;
}

.header-underline {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Premium Feature Cards */
.premium-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.premium-feature-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0c0c0c 100%);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(197, 160, 89, 0.15);
}

.premium-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.feature-icon-wrap svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.premium-feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
}

.premium-feature-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-ui);
}

.premium-feature-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(197, 160, 89, 0.08);
    font-family: var(--font-ui);
    pointer-events: none;
}

/* About Responsive */
@media (max-width: 1024px) {
    .brand-story {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
        padding-bottom: 3rem;
    }

    .story-content {
        text-align: center;
        order: 1;
    }

    .story-visual {
        order: 2;
        margin-top: 1rem;
    }

    .story-signature {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .story-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-premium {
        padding: 4rem 1.2rem;
    }

    .about-stats-bar {
        gap: 1rem;
        padding: 2rem 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-box {
        padding: 0 0.5rem;
        min-width: 45%;
        margin-bottom: 1rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .signature-font {
        font-size: 3.5rem;
        margin-top: 5px;
    }

    .signature-label {
        font-size: 0.9rem;
        margin-inline-start: 0;
    }

    .signature-text {
        font-size: 1.3rem;
    }

    .signature-wrapper {
        margin-inline-end: 0;
        align-items: center;
        margin-top: 10px;
    }

    .visual-frame {
        width: 200px;
        height: 200px;
    }

    .frame-corner {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }

    .about-logo {
        width: 140px;
        height: 140px;
    }

    .stat-divider {
        display: none;
    }

    .premium-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-header h2 {
        font-size: 2rem;
    }
}


.section-header {
    text-align: center;
    justify-content: center !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    color: #000000;
    /* Black text with Gold Shimmer Animation */
    background: linear-gradient(to right,
            #000000 0%,
            #000000 40%,
            #c5a059 50%,
            #000000 60%,
            #000000 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lightSweep 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Delivery Details Section */
.delivery-details {
    padding: 6rem 5%;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.delivery-details .section-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
    align-items: center !important;
    /* Force center to override mobile media query */
}

.delivery-details .section-header p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.delivery-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.delivery-card:hover::before {
    opacity: 1;
}

.delivery-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.delivery-icon svg,
.delivery-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.delivery-card h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.delivery-details .section-header h2 {
    color: #ffffff;
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff 40%,
            #c5a059 50%,
            #ffffff 60%,
            #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delivery-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

.delivery-details .header-underline {
    margin: 20px auto 0;
}


/* Collection Rows Styling */
.collections-container {
    padding: 0;
    overflow: hidden;
    background: #000;
    scroll-margin-top: 100px;
}

.shop-main-header {
    text-align: center;
    justify-content: center;
    padding: 3rem 5% 1.5rem;
    background: #000;
}

.shop-main-header h2 {
    font-size: 2.8rem;
    color: var(--accent);
    background: linear-gradient(to right, #fff 0%, #c5a059 50%, #fff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: lightSweep 5s linear infinite;
    font-weight: 800;
}

.gold-separator {
    width: 120px;
    height: 4px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.gold-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: separatorShimmer 2s infinite;
}

@keyframes separatorShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .shop-main-header h2 {
        font-size: 1.8rem;
    }
}

.shop-controls-wrapper {
    position: sticky;
    top: 80px;
    z-index: 999;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 5%;
    display: flex;
    flex-direction: column;
    /* Stacked Layout for Visibility */
    gap: 1.5rem;
    /* Gap between Search and Nav */
    align-items: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: visible;
    /* Prevent cutting off */
}

.shop-search-bar {
    position: relative;
    max-width: 600px;
    /* Wider Search on Desktop */
    width: 100%;
}

.shop-search-bar input {
    width: 100%;
    padding: 0.9rem 3.5rem;
    /* Sufficient space for icons on both ends */
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    transition: 0.3s;
    color: var(--white);
    text-align: inherit;
}

.clear-search {
    position: absolute;
    inset-inline-end: 1rem;
    /* Right in LTR, Left in RTL */
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 5;
    padding: 0;
    margin: 0;
}

.clear-search:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.shop-search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.shop-search-bar input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.shop-search-bar svg {
    position: absolute;
    inset-inline-start: 1rem;
    /* Left in LTR, Right in RTL */
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    pointer-events: none;
}

.shop-sub-nav {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.8rem 2rem 1.5rem;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.shop-sub-nav::-webkit-scrollbar {
    height: 6px;
    /* Make it slightly visible */
    display: block;
}

.shop-sub-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.shop-sub-nav::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

/* No Results State */
.no-results-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    margin: 20px auto 40px;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.no-results-icon {
    background: rgba(197, 160, 89, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.no-results-container h3 {
    font-family: var(--font-ar);
    font-size: 1.8rem;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-results-container p {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto 30px;
}



/* ===== PREMIUM CATEGORY BUTTONS ===== */
.sub-nav-btn {
    position: relative;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c5a059;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(197, 160, 89, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Shimmer effect on hover */
.sub-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(197, 160, 89, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.sub-nav-btn:hover::before {
    left: 100%;
}

/* HOVER - Fills with gold */
.sub-nav-btn:hover {
    color: #000;
    background: linear-gradient(135deg, #c5a059 0%, #d4b36a 100%);
    border-color: #c5a059;
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(197, 160, 89, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.sub-nav-btn:active {
    transform: translateY(0);
    box-shadow:
        0 4px 15px rgba(197, 160, 89, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Active state - Disabled (all buttons look the same) */
/* .sub-nav-btn.active styling removed - buttons remain consistent */

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.collection-row {
    padding: 4rem 5% 5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    scroll-margin-top: 200px;
}

/* Section Watermark Text - Enhanced with animation */
.collection-row::before {
    content: attr(data-watermark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s ease;
}

/* Shimmer effect on watermark when section is active */
.collection-row.reveal.active::before {
    animation: watermarkPulse 3s ease-in-out infinite;
}

@keyframes watermarkPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

/* Golden accent line at top of each collection */
.collection-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100px;
    height: 3px;
    background: none;
    /* Removed based on user request */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.collection-row.reveal.active::after {
    transform: translateX(-50%) scaleX(1);
}

@media (max-width: 1450px) {
    .shop-controls-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }

    .shop-search-bar {
        width: 100%;
        max-width: none;
    }

    .shop-search-bar input {
        padding: 0.8rem 3.5rem;
    }

    .shop-sub-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding: 0.5rem 1rem 1.2rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        margin-inline-start: 0;
        /* Reset margin on stacked layout */
    }

    .sub-nav-btn {
        flex-shrink: 0;
        margin-left: 0.8rem;
        scroll-snap-align: start;
    }
}

/* Unique backgrounds for Royal feel (Darkened) */
.smart-watches-collection {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.watches-collection {
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
}

.perfumes-collection {
    background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
}

.electronics-collection {
    background: linear-gradient(135deg, #0c0c0c 0%, #111111 100%);
}

.bakhoor-collection {
    background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 100%);
}

.toys-collection {
    background: linear-gradient(135deg, #111111 0%, #0c0c0c 100%);
}

.kids-collection {
    background: linear-gradient(135deg, #111111 0%, #111111 100%);
}

.collection-banner {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-banner h3 {
    font-size: 3rem;
    font-family: var(--font-header);
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.collection-banner h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.collection-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.view-more-container {
    text-align: center;
    margin-top: 5rem;
}

.view-more-btn {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.view-more-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
    .collection-row {
        padding: 4rem 1.5rem 5rem;
    }

    .collection-banner h3 {
        font-size: 2.2rem;
    }

    .collection-banner {
        margin-bottom: 3rem;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    row-gap: 2rem;
    padding: 1rem 0;
}

/* === Show More Products - CSS Hiding === */
/* PC: Hide products from 4th onward */
.product-grid:not(.show-all-products)>.product-card:nth-child(n+4) {
    display: none !important;
}

/* Mobile: Hide products from 3rd onward */
@media (max-width: 1024px) {
    .product-grid:not(.show-all-products)>.product-card:nth-child(n+3) {
        display: none !important;
    }
}



/* === Show More Products Button === */
.show-more-products-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2.5rem auto 0;
    padding: 0.9rem 2.8rem;
    background: transparent;
    border: 2px solid rgba(197, 160, 89, 0.5);
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.show-more-products-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.2), transparent);
    transition: left 0.5s ease;
}

.show-more-products-btn:hover::before {
    left: 100%;
}

.show-more-products-btn:hover {
    color: #000;
    background: linear-gradient(135deg, #c5a059 0%, #d4b36a 100%);
    border-color: #c5a059;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.show-more-products-btn:active {
    transform: translateY(0);
}

/* Modern Luxury Product Card */
.product-card {
    background: #111;
    /* mdawya shwiya (Lit Black) */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(197, 160, 89, 0.1);
    /* Subtle gold border for "lit" look */
    padding: 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: #1a1a1a;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
    transition: 0.5s ease;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

/* Premium Golden Shimmer Effect */
.product-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(197, 160, 89, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover .product-img-wrapper::after {
    animation: goldShimmer 1.5s infinite;
}

@keyframes goldShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.product-card:hover .product-img-wrapper {
    /* Slight zoom out effect for a classier feel */
    transform: scale(0.98);
    border-radius: 20px;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.quick-add {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 1.2rem;
    background-color: rgba(12, 12, 12, 0.95);
    color: var(--white);
    text-align: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.product-card:hover .quick-add,
.product-img-wrapper:hover .quick-add {
    bottom: 0;
}

.product-info {
    padding: 1.2rem 1rem;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.discount-badge,
.new-badge {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 50;
    pointer-events: none;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.discount-badge {
    right: 15px;
    background: linear-gradient(135deg, #ff4c4c 0%, #b30000 100%);
    color: white;
}

.new-badge {
    left: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #000;
}

.discount-badge::before,
.new-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: badgeShimmer 3s infinite linear;
}

@keyframes badgeShimmer {
    0% {
        left: -120%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.shipping-info-tag {
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 700;
    margin-top: 10px;
    background: rgba(76, 175, 80, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px dashed rgba(76, 175, 80, 0.3);
    width: fit-content;
}

.cart-shipping-tag {
    font-size: 0.75rem;
    color: #4CAF50;
    font-weight: 700;
    margin: 4px 0;
}

.product-modal-shipping {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: #2e7d32;
    padding: 10px 15px;
    border-radius: 12px;
    margin: 15px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.price-container {
    display: flex;
    justify-content: flex-start;
    /* Correct for RTL (points to the right) */
    align-items: center;
    gap: 15px;
    margin-top: auto;
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: #ff4c4c;
    font-size: 1rem;
    font-weight: 400;
}

.product-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    right: auto;
    width: 400px;
    height: 100vh;
    background-color: var(--white);
    z-index: 20000 !important;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: left;
}

.cart-sidebar.open {
    left: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.cart-header h3 {
    font-size: 1.8rem;
}

.close-btn {
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-btn:hover {
    color: var(--accent);
    background: rgba(43, 43, 43, 0.1);
    /* Slightly darker for light background sidebar */
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.empty-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

.cart-footer {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    text-align: right;
    direction: rtl;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-item-info h4 {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    color: var(--primary);
}

.cart-item-info .unit-price {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.cart-qty-controls .qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

.cart-qty-controls .qty-btn:hover {
    background: var(--bg-alt);
    border-color: var(--accent);
}

.cart-qty-controls .qty-val {
    font-size: 0.9rem;
    font-weight: 600;
}

.remove-item {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.remove-item:hover {
    color: #ff4d4d;
}

/* Stock Status */
.stock-status {
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.modal-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal-quantity-wrapper span {
    font-weight: 600;
    color: var(--primary);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls .qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.quantity-controls .qty-btn:hover {
    background: var(--border);
}

.quantity-controls input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    background: var(--white);
    color: var(--primary);
}

/* Remove Arrows from Number Input */
.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-actions button:disabled {
    background: #ccc;
    cursor: not-allowed;
    border-color: #ccc;
}

/* Animations */
/* Animations - Disabled initial hidden state to ensure visibility */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content p.fade-in {
    transition-delay: 0.3s;
}

.hero-btns.fade-in {
    transition-delay: 0.6s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Hide scrollbar arrows/buttons globally */
::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Prevent body scroll when modal or cart is open */
body.modal-open,
body.cart-open,
body.story-open {
    overflow: hidden !important;
    height: auto !important;
    width: 100% !important;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
    /* Prevent width jump if scrollbar disappears */
    overscroll-behavior: none !important;
}

/* Allow touch events inside the modal even when body is locked */
.modal.open,
.modal-content,
.auth-modal-content,
.product-modal-body,
.cart-sidebar.open {
    touch-action: auto !important;
    -webkit-overflow-scrolling: touch;
}

.cart-sidebar {
    overscroll-behavior: contain;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background-color: var(--bg-alt);
}

.about-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--border);
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    color: #ffffff;
}

.contact-section .section-header h2 {
    text-align: center;
    width: 100%;
    color: #ffffff;
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff 40%,
            #c5a059 50%,
            #ffffff 60%,
            #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 2rem;
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-container>* {
    min-width: 0;
    width: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.detail-item .icon {
    font-size: 1.5rem;
    background-color: var(--bg-alt);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.detail-item .icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    stroke: var(--accent);
    stroke-width: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.detail-text .value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-right: 3rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-ui);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: 0.3s ease;
    margin-bottom: 0.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .products-section {
        margin: 4rem auto;
    }

    .about-section {
        padding: 4rem 2rem;
    }

    .contact-section {
        padding: 5rem 2rem;
    }

    .product-img-wrapper {
        height: 300px;
    }

    /* Product Grid handled in consolidated media query at the end */

    /* Contact & Footer Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 4rem;
    }

    .contact-form {
        padding-right: 0;
        border-right: none;
        padding-top: 4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image img {
        height: 400px;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-links {
        gap: 4rem;
        flex-wrap: wrap;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 20000 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    /* Enable vertical scrolling */
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px 0;

    /* Hide scrollbar while keeping functionality */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.modal::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.modal.open {
    display: block !important;
    opacity: 1;
}

/* Modal Base */
.modal-content {
    background-color: #121212;
    /* Dark Premium BG */
    margin: 2rem auto;
    /* Better centering with scroll safety */
    padding: 3rem 2.5rem;
    /* More breathing room */
    border: 1px solid var(--accent);
    width: 90%;
    max-width: 650px;
    /* Wider for better proportions */
    border-radius: 16px;
    /* Softer corners */
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    color: var(--white);
    direction: rtl;
    /* Force RTL for Arabic */
}

.modal-content h2 {
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 2.2rem;
    /* Larger title */
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 1.5rem;
}

/* Close Button */
.close-modal {
    color: var(--accent);
    position: absolute;
    top: 15px;
    left: 20px;
    /* RTL switch */
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    background: none;
    border: none;
}

.close-modal:hover {
    color: var(--white);
    transform: rotate(90deg);
}

/* Form Styles */
.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns like the screenshot */
    gap: 2rem;
    /* More space between columns */
    margin-bottom: 1.8rem;
}

/* Consolidating mobile styles later in the file */

#checkout-form label {
    display: block;
    margin-bottom: 0.8rem;
    /* More spacing label-input */
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

#checkout-form input {
    width: 100%;
    padding: 14px 18px;
    /* Taller inputs for ease of use */
    background: rgba(0, 0, 0, 0.4);
    /* Darker for better contrast */
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    height: 50px;
    /* Fixed height for consistency */
}

#checkout-form input:focus {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

#checkout-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Specific Full Width Inputs (optional override if needed) */
/* In the HTML, address and city form a group, others form a group. */

/* Order Summary Box */
.order-summary-mini {
    background: #fdf7e7;
    /* Premium light cream background like the screenshot */
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 20px;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    direction: rtl;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-summary-mini h3 {
    color: var(--accent);
    /* Gold labels */
    font-size: 1rem;
    font-weight: 700;
    margin: 0 !important;
    white-space: normal;
    flex: 1;
    text-align: right;
    line-height: 1.2;
}

.promo-code-container {
    flex: 2;
    max-width: 250px;
    margin: 0 !important;
}

.promo-code-group {
    display: flex;
    gap: 0;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    height: 42px;
    /* Slightly more compact for horizontal bar */
}

.promo-code-group input {
    flex: 1;
    border: none !important;
    background: rgba(197, 160, 89, 0.15) !important;
    color: var(--accent) !important;
    -webkit-text-fill-color: var(--accent) !important;
    /* Force black on iOS/Safari */
    height: 100% !important;
    padding: 0 12px !important;
    font-size: 16px !important;
    /* Prevent iOS zoom */
    font-weight: 700 !important;
    outline: none !important;
    border-radius: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    #promo-code-input {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
        background-color: #ffffff !important;
    }
}

.promo-code-group button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0 15px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
    border-radius: 0 !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.promo-code-group button:hover {
    background: var(--accent-dark);
}

.checkout-total {
    flex: 1;
    text-align: left;
    margin: 0 !important;
}

.promo-message {
    font-size: 0.8rem;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1.2rem 0.8rem !important;
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        min-height: 100vh;
    }

    .modal-content h2 {
        font-size: 1.4rem !important;
        margin-bottom: 1.2rem !important;
    }

    .form-group {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .checkout-form label {
        font-size: 0.85rem !important;
    }

    #checkout-form input {
        height: 44px !important;
        padding: 10px 12px !important;
    }

    .order-summary-mini {
        flex-direction: row !important;
        /* Back to desktop row style */
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px !important;
        background: #fdf7e7 !important;
        /* Keep cream background */
    }

    .order-summary-mini h3 {
        width: 100% !important;
        /* Keep title at top */
        text-align: center !important;
        margin-bottom: 10px !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 5px;
    }

    .promo-code-container {
        flex: 1.5 !important;
        min-width: 180px !important;
    }

    .checkout-total {
        flex: 1 !important;
        text-align: left !important;
        font-weight: 800 !important;
        font-size: 1rem !important;
        color: #000 !important;
    }
}

/* Submit Button */
.btn-primary.btn-block {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(197, 160, 89, 0.8) 100%);
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1rem;
    border: none;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

/* Captcha Styling & Responsiveness */
.auth-captcha,
.captcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center top;
        margin: 0 auto;
    }
}



.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
    margin: 15px 0;
    /* Prevents scrollbar from touching rounded corners */
}

/* Mobile Checkout Modal - Premium Dark Theme */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        margin: 0;
        padding: 2.5rem 1.5rem;
        border-radius: 0;
        background-color: #0c0c0c;
        /* Ultimate Deep Black */
        display: block;
        /* Normal flow for long forms */
        overflow-y: auto;

        /* Hide scrollbar for Mobile while keeping it functional */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .modal-content::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .modal {
        background-color: #000;
        padding: 0;
    }

    .modal-header {
        border-bottom-color: rgba(197, 160, 89, 0.2);
        margin-bottom: 2.5rem;
    }

    .modal-header h2 {
        color: var(--white);
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .modal-body label {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }

    .modal-body input {
        background-color: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(197, 160, 89, 0.2) !important;
        color: #fff !important;
        border-radius: 12px;
        padding: 1.2rem;
    }

    .modal-body input:focus {
        border-color: var(--accent) !important;
        background-color: rgba(255, 255, 255, 0.07) !important;
    }

    .order-summary-mini {
        background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
        border: 1px solid rgba(197, 160, 89, 0.1);
        color: #fff;
        padding: 2rem;
        border-radius: 15px;
    }

    .checkout-total {
        color: var(--accent) !important;
        font-size: 1.5rem;
    }

    .close-modal {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
    }
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.8rem;
}

.close-modal {
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-modal:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.modal-body input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    font-family: var(--font-ui);
    background-color: var(--bg-alt);
}

.modal-body input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
}

.order-summary-mini {
    background-color: var(--bg-alt);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-summary-mini h3 {
    font-size: 1.1rem;
    margin: 0;
}

.checkout-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* Product Details Modal */
.product-modal-content {
    max-width: 1100px;
    width: 95%;
    padding: 0;
    background: #111;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    max-height: 90vh;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.product-modal-body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    /* Wider image column */
    overflow-y: auto;
    flex: 1;
    background: transparent;
}

.product-modal-body::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
}

.product-modal-body::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.product-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.product-modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.product-modal-image {
    background: #0a0a0a;
    height: 100%;
    min-height: 550px;
    /* Reduced to avoid excessive empty space */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Allow gallery-main to fill width */
    justify-content: center;
    padding: 1.5rem;
    /* Slight padding to keep it clean */
    position: relative;
    border-right: 1px solid rgba(197, 160, 89, 0.1);
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 100%;
    /* Fill the whole left frame height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-main.is-zoomed {
    cursor: zoom-out;
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform-origin 0.05s ease-out;
    pointer-events: auto;
    /* Enable interaction */
}

/* Optional: If the user complains about crop, we can use a hover or a specialized view,
   but for now, 'cover' is the only way to "tshade litare kaml" */


/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 1rem 0.8rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--accent);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

/* Gallery Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    padding: 0.5rem;
    overflow-x: auto;
    max-width: 100%;

    /* Hide Scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbs::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none;
}

.gallery-thumbs::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.gallery-thumbs .thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: 0.3s ease;
}

.gallery-thumbs .thumb:hover {
    opacity: 1;
}

.gallery-thumbs .thumb.active {
    border-color: var(--accent);
    opacity: 1;
}

.product-modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    background: #000 !important;
    position: relative;
    z-index: 100;
    backdrop-filter: none;
    opacity: 1 !important;
    transform: translateZ(0);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    /* Converting margin to padding to ensure coverage */
    margin-top: 0 !important;
    padding-top: 2.5rem !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.9);
    width: 100%;
}

.solid-bg-fix {
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

#modal-add-to-cart {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-category {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.product-modal-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    color: #fff;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.modal-desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs {
    margin-bottom: 1.5rem;
    background: #1a1a1a;
    padding: 1.2rem;
    border-radius: 12px;
    color: #fff;
}

.product-specs h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent) !important;
}

/* Modal LTR Overrides */
html[dir="ltr"] .product-modal-info,
html[dir="ltr"] .product-specs,
html[dir="ltr"] .product-modal-info h2,
html[dir="ltr"] .modal-quantity-wrapper {
    text-align: left !important;
    direction: ltr !important;
}

html[dir="ltr"] .product-modal-info>* {
    width: 100%;
}


html[dir="ltr"] .product-specs ul,
html[dir="ltr"] .product-specs li {
    direction: ltr !important;
    text-align: left !important;
    justify-content: flex-start;
}

html[dir="ltr"] .product-specs li::before {
    margin-right: 0.5rem;
    margin-left: 0;
}

html[dir="ltr"] .quantity-controls {
    flex-direction: row;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-specs li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
}

.close-product-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    left: auto;
    z-index: 20;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #111;
    /* Make X color dark for contrast */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-product-modal:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        min-height: 350px;
        padding: 0.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }

    .product-modal-image img {
        max-height: 400px;
        transition: transform 0.3s ease;
    }

    .gallery-main.is-zoomed img {
        max-height: none;
        /* Allow it to scale up fully */
    }

    .close-product-modal {
        top: 0.5rem;
        left: 0.5rem;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Redundant section header h2 removed */

.contact-info h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(197, 160, 89, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: 0.3s ease;
}

.detail-item:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--accent);
    transform: translateX(-5px);
}

.detail-item .icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.detail-item .icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

/* --- Specific Icon Animations --- */

/* Email: Floating/Bobbing */
.icon-animate-email svg {
    animation: emailFloat 3s ease-in-out infinite;
}

@keyframes emailFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Phone: Ringing/Vibrating */
.icon-animate-phone svg {
    animation: phoneRing 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
    transform-origin: center;
}

@keyframes phoneRing {
    0% {
        transform: rotate(0) scale(1);
    }

    5% {
        transform: rotate(15deg) scale(1.1);
    }

    10% {
        transform: rotate(-15deg) scale(1.1);
    }

    15% {
        transform: rotate(15deg) scale(1.1);
    }

    20% {
        transform: rotate(0) scale(1);
    }

    100% {
        transform: rotate(0) scale(1);
    }
}

/* WhatsApp: Pulsing/Heartbeat */
.icon-animate-whatsapp svg {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Address: Bouncing Pin */
.icon-animate-address svg {
    animation: locationBounce 1.5s ease-out infinite;
    transform-origin: bottom center;
}

@keyframes locationBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- More Icon Animations (Features & Delivery) --- */

/* Fast Delivery: Truck Moving/Rushing */
.icon-animate-fast-delivery svg {
    animation: truckRush 2s ease-in-out infinite;
}

@keyframes truckRush {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Satisfaction: Heartbeat/Like */
.icon-animate-satisfaction svg {
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.1);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(1);
    }
}

/* Trust: Shield Pulse/Glow */
.icon-animate-trust svg {
    animation: shieldPulse 3s infinite;
}

@keyframes shieldPulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

/* Delivery Pin: Big Bounce */
.icon-animate-pin img {
    animation: pinBounce 2s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Delivery Clock: Pendulum Swing */
.icon-animate-clock img {
    animation: clockSwing 3s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes clockSwing {
    0% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

/* Delivery Handshake: Shake/Deal */
.icon-animate-handshake img {
    animation: handShake 2s ease-in-out infinite;
}

@keyframes handShake {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0);
    }
}


.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-text .label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.detail-text .value {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 500;
    transition: 0.3s;
}

.detail-text a.value:hover {
    color: var(--accent);
}

@media (max-width: 600px) {
    .detail-item {
        gap: 1rem;
        padding: 0.8rem;
    }

    .detail-text .value {
        font-size: 1rem;
    }

    .detail-item .icon {
        width: 40px;
        height: 40px;
    }

    .detail-item .icon svg {
        width: 20px;
        height: 20px;
    }
}

.contact-form {
    flex: 1;
}

.form-group {
    display: flex;
    gap: 1.5rem;
    /* Increased from 1rem */
    margin-bottom: 0;
    /* Margin is handled by the inputs/group items */
}

/* Make inputs stack on mobile */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        gap: 0;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 16px;
    margin-bottom: 2rem;
    font-family: inherit;
    transition: 0.3s ease;
    font-size: 1.1rem;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
    /* More prominent focus shadow */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    background-color: var(--accent);
    color: var(--primary);
}



/* =========================== */
/* Tablet Responsiveness (Max 1024px) */
/* =========================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }
}

/* =========================== */
/* Mobile Responsiveness (Max 768px) */
/* =========================== */
@media (max-width: 768px) {

    /* Navigation */
    /* Mobile Nav handled in FINAL section */

    .nav-actions {
        gap: 1rem;
    }



    /* Hero */
    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }

    /* Products Grid */
    /* Product Grid handled in consolidated media query at the end */

    /* Sections Layout */
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        left: -100%;
        right: auto;
    }

    /* Product Modal Mobile Optimization */
    .product-modal-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        margin: 0;
        overflow-y: auto;

        /* Custom Scrollbar */
        scrollbar-width: thin;
        scrollbar-color: var(--accent) transparent;
    }

    .product-modal-content::-webkit-scrollbar {
        width: 6px;
    }

    .product-modal-content::-webkit-scrollbar-button {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .product-modal-content::-webkit-scrollbar-track {
        background: transparent;
    }

    .product-modal-content::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 4px;
    }

    .product-modal-body {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .product-modal-image {
        min-height: 400px;
        padding: 0.5rem;
        height: auto;
    }

    .product-modal-image img {
        max-height: 500px;
    }

    .product-modal-info {
        padding: 1.5rem;
    }

    .product-modal-info h2 {
        font-size: 1.5rem;
    }

    .close-product-modal {
        top: 0.5rem;
        left: 0.5rem;
        right: auto;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        background: transparent;
        box-shadow: none;
        color: #fff;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    /* Simplified Scrolled Navbar */
    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
}

/* ========================================
   PREMIUM LUXURY FOOTER
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

/* Footer Top: Newsletter */
.footer-newsletter {
    padding: 5rem 5%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.05);
}

.newsletter-content h3 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50px;
    transition: 0.3s;
}

.newsletter-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Footer Main */
.footer-main {
    padding: 6rem 5% 4rem;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 5rem;
}

.footer-brand-section {
    order: 2;
}

.footer-links-grid {
    order: 1;
}

/* LTR Overrides for Footer */
html[dir="ltr"] .footer-container {
    grid-template-columns: 1.5fr 2fr;
}

html[dir="ltr"] .footer-brand-section {
    order: 1;
}

html[dir="ltr"] .footer-links-grid {
    order: 2;
}

.footer-brand-section .logo {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    color: var(--accent);
    transition: all 0.4s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 1rem;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.link-group ul li a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.link-group ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: 0.3s;
}

.link-group ul li a:hover::after {
    width: 100%;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 5%;
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(197, 160, 89, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item svg {
    width: 24px;
    height: 24px;
    transition: 0.3s;
}

.badge-item:hover svg {
    transform: scale(1.2);
    color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 5%;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom .container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.payment-icons {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .footer-brand-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-desc {
        max-width: 500px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-trust-badges {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(197, 160, 89, 0.2);
        border-radius: 50px;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        padding: 1rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .link-group h4 {
        margin-bottom: 1.2rem;
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.hero-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-container:hover .hero-single-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 300px;
    }
}

.hero-composite {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../img/hero-lux.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text-content {
    width: 100%;
    margin: 0 auto;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Cinematic text animation */
    animation: heroTitleReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(50px);
    animation-delay: 0.1s;
}

.hero-text-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    /* Cinematic paragraph animation */
    animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(40px);
    animation-delay: 0.4s;
}

/* Hero title cinematic animation */
@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        filter: blur(8px);
        letter-spacing: 0.3em;
    }

    50% {
        filter: blur(2px);
        letter-spacing: 0.05em;
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        letter-spacing: normal;
    }
}

/* Hero paragraph animation */
@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-composite {
        height: 100vh;
    }
}

/* Auth Styles - Matched to Contact Form */
#login-btn {
    color: #c5a059;
    margin-left: 0.5rem;
    transition: 0.3s ease;
}

#login-btn:hover {
    color: #2ecc71 !important;
    /* Consolidated to green */
    transform: translateY(-4px);
}

#login-btn.logged-in {
    color: #4CAF50;
}

/* Enhanced Auth Modal Split Design */
.auth-modal-content.auth-split-design {
    display: flex;
    max-width: 900px;
    width: 90%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    /* Remove default padding */
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.auth-image-side {
    width: 45%;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.auth-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.8s ease;
}

.auth-image-side:hover .auth-cover-img {
    transform: scale(1.05);
}

.auth-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    text-align: center;
    z-index: 5;
}

.auth-overlay-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.auth-overlay-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.auth-form-side {
    width: 55%;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

/* Update spacing for visually balanced forms */
.auth-form-side h3 {
    margin-bottom: 2rem !important;
    /* Override inline styles if needed */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auth-modal-content.auth-split-design {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        border-radius: 0;
    }

    .auth-image-side {
        width: 100%;
        height: 140px;
        order: -1;
    }

    .auth-cover-img {
        object-position: center 20%;
    }

    .auth-overlay-text {
        padding: 1rem;
    }

    .auth-overlay-text h3 {
        font-size: 1.5rem;
    }

    .auth-form-side {
        width: 100%;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
}


.auth-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    font-family: inherit;
    font-size: 1.1rem;
}

.auth-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.auth-form {
    display: none;
    text-align: right;
}

.auth-form.active {
    display: block;
}

.auth-form h3 {
    margin-bottom: 2rem;
    color: var(--accent-dark);
    text-align: center;
    font-size: 1.8rem;
}

/* Match Contact Form Inputs */
.auth-form input {
    width: 100%;
    padding: 1.8rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-family: inherit;
    transition: 0.3s ease;
    font-size: 1.1rem;
    font-size: 1.1rem;
    text-align: right;
}

html[dir="ltr"] .auth-form input {
    text-align: left;
    direction: ltr;
}

html[dir="ltr"] #forgot-password-link {
    direction: ltr;
    display: inline-block;
}



.auth-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
}

.auth-form button {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Order History Styles */
.orders-modal-content {
    max-width: 600px;
    background-color: #000000;
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.orders-list {
    max-height: 400px;
    overflow-y: auto;
    text-align: right;
    margin-top: 1.5rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.orders-list::-webkit-scrollbar {
    display: none;
}

.order-item {
    background: #000000;
    color: #fff;
    padding: 1.8rem;
    border-radius: 16px;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.order-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.order-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   MODERN MINIMALIST HORIZONTAL TIMELINE
   ======================================== */
.modern-horizontal-timeline {
    position: relative;
    padding: 2.5rem 0 1rem;
    margin: 1.5rem 0;
    direction: rtl;
    /* Flow from right to left */
}

.h-timeline-line {
    position: absolute;
    top: 65px;
    /* Adjusted for icons */
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.h-timeline-progress {
    position: absolute;
    top: 0;
    right: 0;
    /* Start from right */
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    transition: width 1s ease-in-out;
}

.h-courier {
    position: absolute;
    left: -15px;
    top: -42px;
    font-size: 2.2rem;
    z-index: 10;
}

/* ✉️ Letter -> Floating */
.h-letter {
    animation: letterFloat 2s infinite ease-in-out;
}

@keyframes letterFloat {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateX(-15px) translateY(-12px) rotate(5deg);
    }
}

/* 🏃 Runner -> Sprinting */
.h-runner {
    animation: runnerSprint 1s infinite linear;
}

.runner-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

@keyframes runnerSprint {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-20px) translateY(-5px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

/* 🚚 Truck -> Driving */
.h-truck {
    animation: truckDrive 0.8s infinite ease-in-out;
}

@keyframes truckDrive {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px) translateX(-8px);
    }
}


/* 🎁 delivered -> Celebration */
.h-delivered {
    width: 80px;
    height: 80px;
    position: absolute;
    left: -25px;
    top: -90px;
    z-index: 20;
    pointer-events: none;
}

.fireworks-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    /* Blend black background */
    animation: fireworksExplode 2.5s infinite ease-in-out;
    filter: brightness(1.2) contrast(1.1);
}

@keyframes fireworksExplode {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* Static Step Icon */
.step-golden-box {
    width: 25px;
    height: 25px;
    object-fit: contain;
    mix-blend-mode: screen;
    /* Blend black background */
}

.h-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.h-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.h-step-icon {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.h-step.active .h-step-icon,
.h-step.completed .h-step-icon {
    opacity: 1;
    transform: scale(1.1);
}

.h-step-dot {
    width: 8px;
    height: 8px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.h-step.active .h-step-dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transform: scale(1.3);
}

.h-step.completed .h-step-dot {
    background: var(--accent);
    border-color: var(--accent);
}

.h-step-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: var(--font-ui);
    transition: color 0.3s ease;
}

.h-step.active .h-step-label,
.h-step.completed .h-step-label {
    color: #fff;
    font-weight: 600;
}

.timeline-cancelled {
    text-align: center;
    padding: 1.5rem;
    color: #ff5555;
    background: rgba(255, 85, 85, 0.05);
    border: 1px solid rgba(255, 85, 85, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}


/* Fix ordering lists background for better contrast */
.order-item {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.order-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.order-total {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.1rem;
}

.order-products {
    margin-bottom: 1rem;
}

.order-product-name {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.order-product-name .qty {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}



/* Zoom Effect Styles */
.gallery-main {
    overflow: hidden;
    cursor: crosshair;
}

.gallery-main img {
    transition: transform 0.2s ease-out;
    transform-origin: center center;
}

.gallery-main:hover img {
    transform: scale(2);
}

/* Google Sign-In Button */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.auth-divider span {
    padding: 0 1rem;
    color: #888;
    font-size: 0.9rem;
}

.btn-google {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.btn-google svg {
    transition: transform 0.4s ease;
}

.btn-google:hover svg {
    transform: scale(1.1);
}

/* Mobile Performance Optimizations */

/* Mobile Performance Optimizations (Optimized for low-end devices) */
/* Performance & Layout Optimization */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        row-gap: 1.5rem !important;
        /* Increase vertical space */
        padding: 1rem 0.5rem !important;
        display: grid !important;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-img-wrapper {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

    /* Stop heavy CPU/GPU animations */
    /* Better CPU/GPU animations for mobile */
    .hero-featured-overlay,
    .gold-particles,
    .collection-row::before {
        display: none !important;
    }

    .products-section,
    .hero-composite {
        background-attachment: scroll !important;
        background-size: cover !important;
        min-height: auto !important;
    }

    .navbar.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: rgba(0, 0, 0, 0.95) !important;
    }

    .btn-google {
        background-color: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
    }

    .logo,
    .section-header h2 {
        animation: none !important;
        background: none !important;
        -webkit-text-fill-color: var(--accent) !important;
        color: var(--accent) !important;
    }

    .product-info {
        padding: 0.8rem 0.6rem;
    }

    .product-info h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .old-price {
        font-size: 0.75rem;
    }

    /* Fix overlapping badges on mobile */
    .discount-badge,
    .new-badge {
        top: 8px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .discount-badge {
        right: 8px;
    }

    .new-badge {
        left: 8px;
    }

    .product-card:hover,
    .order-item:hover,
    .btn:hover,
    .logo:hover {
        transform: none !important;
    }
}

/* Form Validation Styles */
.required {
    color: red;
}

.error-msg {
    color: red;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

input.error,
input:invalid:not(:placeholder-shown) {
    border-color: red !important;
}

input.valid {
    border-color: #4CAF50 !important;
}

/* Mobile Quick Add - Hidden until touch */
@media (max-width: 768px) {
    .quick-add {
        bottom: 0 !important;
        padding: 1.2rem;
        background: rgba(12, 12, 12, 0.95) !important;
        color: var(--white) !important;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 0 0 12px 12px;
        z-index: 10;

        /* Hidden by default below the image */
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s !important;
    }

    /* Show on touch/click */
    .product-card:hover .quick-add,
    .product-card:active .quick-add,
    .product-img-wrapper:active .quick-add {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

@keyframes quickAddSlideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Captcha Styles */
/* Captcha Styles */
.captcha-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 80px;
}

.auth-captcha {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

#checkout-form .captcha-container,
.auth-captcha {
    justify-content: center;
    /* Better centering for smaller modal forms */
    background: transparent;
    border: none;
    border-radius: 0;
}

@media (max-width: 768px) {
    .captcha-container {
        justify-content: center;
        /* Center everything on mobile */
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: center center;
    }

    #checkout-form .captcha-container {
        padding: 5px 0;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        background: transparent;
        border: none;
    }
}


@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}

/* Password Toggle Styles */
.password-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.password-wrapper input {
    margin-bottom: 0 !important;
    padding-left: 4rem !important;
}

/* Specificity fix: prevent inheriting 100% width from .auth-form button */
.auth-form .password-wrapper button.toggle-password {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3.5rem;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.auth-form .password-wrapper button.toggle-password:hover {
    color: var(--accent);
    background: transparent;
}

.toggle-password svg {
    position: absolute;
    width: 22px;
    height: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Eye Blink Animation */
@keyframes eyeBlink {

    0%,
    100% {
        transform: scaleY(1);
    }

    5% {
        transform: scaleY(0.1);
    }

    10% {
        transform: scaleY(1);
    }
}

.toggle-password:hover .eye-open {
    animation: eyeBlink 3s infinite;
}

.toggle-password .eye-closed {
    opacity: 0;
    transform: scale(0.5);
}

.toggle-password.is-active .eye-open {
    opacity: 0;
    transform: scale(0.5);
}

.toggle-password.is-active .eye-closed {
    opacity: 1;
    transform: scale(1);
}


.toggle-password:active svg {
    transform: scale(0.8);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #25d366;
}

.whatsapp-float svg {
    filter: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Ultra Mobile Performance Optimizations - Cleaned up to allow transitions */
@media (max-width: 900px) {

    /* REDUCE GOLDEN PARTICLES - Lighter on mobile */
    .gold-particles {
        display: block !important;
        opacity: 0.6 !important;
    }

    /* Hide most particles, keep only a few for performance */
    .gold-particles span:nth-child(n+7) {
        display: none !important;
    }

    /* Disable backdrop-filter only for performance, keep transparency */

    .navbar.scrolled,
    .nav-links,
    .shop-controls-wrapper,
    .modal,
    .modal-content,
    .cart-sidebar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Simplify Backgrounds - No fixed attachment for smoother scroll */
    .products-section,
    .hero-composite,
    .hero-featured {
        padding: 140px 1.5rem 40px !important;
        background-attachment: scroll !important;
    }

    .about-premium,
    .contact-section,
    body {
        background-attachment: scroll !important;
    }

    /* Simplify Shimmers and heavy effects without killing them completely */
    .logo,
    .shop-main-header h2,
    .section-header h2,
    .big-letter,
    .gold-text,
    .hero-welcome-content h1 {
        animation-duration: 5s !important;
        /* Slow down instead of stop */
        background: none !important;
        -webkit-text-fill-color: var(--accent) !important;
        color: var(--accent) !important;
    }

    /* Watermarks are invisible but heavy to render */
    .collection-row::before {
        display: none !important;
    }
}

/* Order Tracking Section */
.order-tracking-mini {
    padding: 60px 5%;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.tracking-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 2rem;
}

.tracking-text h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tracking-text p {
    color: rgba(255, 255, 255, 0.7);
}

.tracking-form {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    max-width: 600px;
    align-items: center;
    /* Ensure vertical alignment */
}

.tracking-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0 1.5rem;
    /* Horizontal padding only, height handled by height prop */
    border-radius: 4px;
    /* Match button radius */
    color: white;
    height: 54px;
    /* Fixed height matching standard buttons */
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.tracking-form input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.tracking-form button {
    height: 54px;
    /* Match input height */
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

@media (max-width: 768px) {
    .tracking-content {
        flex-direction: column;
        text-align: center;
    }

    .tracking-form {
        width: 100%;
    }
}

/* Success Modal Styling */
.success-modal-content {
    max-width: 500px !important;
    padding: 3rem !important;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal-content h2 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.success-modal-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.order-id-display {
    margin: 1.5rem 0;
    font-weight: bold;
    color: var(--accent);
    background: rgba(197, 160, 89, 0.15);
    padding: 10px;
    border-radius: 50px;
    display: inline-block;
}

/* Order Status Badges - Premium Dynamic Design */
.order-status {
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Status: الجديد (New) - Blue */
.status-new {
    background: #e3f2fd !important;
    color: #1976d2 !important;
    border: 1px solid #bbdefb !important;
}

/* Status: قيد التجهيز (Preparing) - Orange */
.status-processing {
    background: #fff3e0 !important;
    color: #e65100 !important;
    border: 1px solid #ffe0b2 !important;
}

/* Status: تم الشحن (Shipped) - Gold/Yellow */
.status-shipped {
    background: #fffde7 !important;
    color: #f57f17 !important;
    border: 1px solid #fff9c4 !important;
}

/* Status: تم الاستلام / التوصيل (Delivered/Received) - Green */
.status-received,
.status-delivered {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
    border: 1px solid #c8e6c9 !important;
}

/* Status: ملغي (Cancelled) - Red */
.status-cancelled {
    background: #ffebee !important;
    color: #c62828 !important;
    border: 1px solid #ffcdd2 !important;
}

/* Modern Premium Toast System */
#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 2147483647;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.espoir-toast {
    pointer-events: auto;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-right: 4px solid var(--accent);
    color: #fff;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    min-width: 320px;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.espoir-toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 50%;
    color: var(--accent);
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.toast-close:hover {
    color: #fff;
}

/* Toast Variants */
.toast-success .toast-icon {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.toast-success {
    border-right-color: #2ecc71;
}

.toast-error .toast-icon {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.toast-error {
    border-right-color: #e74c3c;
}

.toast-warning .toast-icon {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

.toast-warning {
    border-right-color: #f1c40f;
}

@media (max-width: 600px) {
    #toast-container {
        top: 20px;
        right: 20px;
        left: 20px;
    }

    .espoir-toast {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.2rem;
    }
}

/* ========================================
   PREMIUM MOBILE NAVIGATION (FINAL)
   ======================================== */
@media (max-width: 900px) {
    .hero-featured {
        padding: 140px 1.5rem 40px !important;
    }

    .navbar {
        z-index: 10005 !important;
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: none !important;
        display: block !important;
        visibility: visible !important;
    }

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* Hide User Name on Mobile to Save Space */
    #login-btn span {
        display: none !important;
    }

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Mobile Timeline Optimizations */
@media (max-width: 480px) {
    .modern-horizontal-timeline {
        padding: 2rem 0 0.5rem;
        margin: 1rem 0;
    }

    .h-step-icon {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .h-step-dot {
        width: 6px;
        height: 6px;
        margin-bottom: 0.5rem;
    }

    .h-step-label {
        font-size: 0.65rem;
    }

    .h-courier {
        top: -35px;
        font-size: 1.8rem;
    }

    .runner-icon,
    .fireworks-icon {
        width: 40px;
        height: 40px;
    }

    .h-timeline-line {
        top: 55px;
    }

    .h-delivered {
        width: 60px;
        height: 60px;
        top: -55px;
        left: -22px;
    }

    .h-delivered .fireworks-icon {
        width: 100%;
        height: 100%;
    }

    /* --- Mobile Header Fixes (Prevent Logo/Lang Overlap) --- */
    .logo {
        font-size: 1.5rem !important;
        /* Smaller logo on small phones */
    }

    /* Hide Language Text (AR/EN) to save space */
    .active-lang-code {
        display: none !important;
    }

    /* Move Lang Button away from Logo (to the right side of nav-actions) */
    .nav-actions .lang-selector {
        order: 5;
        /* Moves after default items (0) */
        margin-left: 0 !important;
    }

    .nav-actions .hamburger {
        order: 10;
        /* Ensures Hamburger is always last */
    }
}

/* =========================================
   PERFORMANCE OPTIMIZATIONS FOR MOBILE
   ========================================= */
@media (max-width: 768px) {

    /* Disable expensive blur effects */
    .navbar.scrolled {
        backdrop-filter: none !important;
        background-color: rgba(255, 255, 255, 0.95) !important;
    }

    /* Reduce particle count / visibility */
    .gold-particles span:nth-child(n+6) {
        display: none !important;
    }

    .gold-particles span {
        box-shadow: none !important;
        filter: none !important;
    }

    /* Simplify animations */
    .reveal {
        transition-duration: 0.5s !important;
    }

    /* Improve scrolling performance */
    .hero-featured-overlay {
        display: none;
        /* Hide complex gradient overlay */
    }

    /* Hardware acceleration hints */
    .reveal,
    .product-card,
    .btn-primary {
        will-change: transform, opacity;
    }

    /* FIX: Button Text Clipping on Mobile */
    /* FIX: Button Text Clipping on Mobile - Flexbox + Padding Strategy */
    /* FINAL REFINED BUTTONS & CART FIXES */
    .btn,
    .btn-primary,
    .btn-outline-gold {
        box-sizing: border-box !important;
        height: auto !important;
        min-height: 55px !important;
        padding: 16px 24px !important;
        line-height: normal !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: normal !important;
        overflow: visible !important;
        font-family: var(--font-ar) !important;
        font-size: 1rem !important;
        margin-bottom: 5px !important;
        border-radius: 8px !important;
        text-align: center !important;
    }

    .hero-cta-buttons {
        flex-direction: column !important;
        width: 100% !important;
        align-items: stretch !important;
        gap: 15px !important;
        padding: 0 20px !important;
    }

    #cart-count {
        width: 18px !important;
        height: 18px !important;
        font-size: 10px !important;
        line-height: 18px !important;
        padding: 0 !important;
        top: 2px !important;
        right: 2px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }
}

@import url('auth-premium.css');

/* --- IMAGE VIEWER (LIGHTBOX) --- */
.image-viewer-modal {
    display: none;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    touch-action: none;
}

.image-viewer-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-viewer {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000001;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.close-viewer:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.viewer-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.viewer-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.viewer-container:active {
    cursor: grabbing;
}

#viewer-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
}

/* Viewer Interaction Helpers */
.viewer-container.zoomed {
    cursor: grabbing;
}

#viewer-img.is-panning {
    transition: none;
}

@media (max-width: 768px) {
    .close-viewer {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    #viewer-img {
        max-width: 95%;
        max-height: 85%;
    }
}



/* =========================================
   LOGO OPTIMIZATION FOR MOBILE
   Restores Animation Motion but removes Heavy Filters (Blur/Shadow)
   to prevent freezing/lag on phones.
   ========================================= */
@media (max-width: 768px) {

    /* 1. RESTORE ANIMATIONS BUT REMOVE HEAVY FILTERS */
    .cinematic-logo .logo-icon {
        /* Keep the movement (Transform) */
        animation: letterE_cinema 10s ease-in-out infinite !important;
        /* Disable the heavy Drop Shadow/Glow */
        filter: none !important;
        will-change: transform;
    }

    .cinematic-logo .logo-letter {
        /* Keep the movement and fade (Transform + Opacity) */
        animation: otherLetters_cinema 10s ease-in-out infinite !important;
        /* Disable the heavy Blur effect */
        filter: none !important;
        will-change: transform, opacity;
    }

    /* 2. OPTIMIZE CONTAINER */
    .cinematic-logo {
        /* Keep the gentle floating */
        animation: luxuryFloat 10s ease-in-out infinite !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* 3. REDUCE BACKGROUND REPAINT AREA */
    .logo,
    .preloader-logo-final {
        /* Reduce the gradient texture size to save memory */
        background-size: 100% auto !important;
    }
}

/* =========================================
   FOOTER MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
    }

    .footer-brand-section {
        order: 1 !important;
        /* Brand first on mobile */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-desc {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center !important;
    }

    .footer-links-grid {
        order: 2 !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .link-group h4 {
        margin-bottom: 1rem !important;
        position: relative;
        display: inline-block;
    }

    .link-group h4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--accent);
        opacity: 0.5;
    }

    .footer-newsletter {
        padding: 4rem 1.5rem !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        padding: 1rem !important;
        border-radius: 20px !important;
    }

    .newsletter-form input {
        width: 100% !important;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .newsletter-form button {
        width: 100% !important;
        padding: 1rem !important;
    }

    /* Ensure styles apply to LTR as well */
    html[dir="ltr"] .footer-container {
        grid-template-columns: 1fr !important;
    }

    html[dir="ltr"] .footer-brand-section {
        order: 1 !important;
    }

    html[dir="ltr"] .footer-links-grid {
        order: 2 !important;
    }
}

/* =========================================
   PERFORMANCE OPTIMIZATION (MOBILE)
   Target: Smooth 60fps on mid-range devices (like Infinix Hot 20i)
   ========================================= */
@media (max-width: 768px) {

    /* 1. Reduce Expensive Blur Effects */
    .navbar.scrolled {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        background-color: rgba(255, 255, 255, 0.95) !important;
        /* Whiter to compensate for less blur */
    }

    /* 2. Optimized Cinematic Reveal (Smart Lightening) */
    .reveal.active .product-card {
        animation: cinematicCardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both !important;
        opacity: 0;
        filter: none !important;
        /* Forces no-blur during entire animation cycle on mobile */
        will-change: transform, opacity;
    }

    /* Restore Snappy Stagger on Mobile */
    .reveal.active .product-card:nth-child(2) {
        animation-delay: var(--reveal-stagger);
    }

    .reveal.active .product-card:nth-child(3) {
        animation-delay: calc(var(--reveal-stagger) * 2);
    }

    .reveal.active .product-card:nth-child(4) {
        animation-delay: calc(var(--reveal-stagger) * 3);
    }

    .reveal.active .product-card:nth-child(n+5) {
        animation-delay: calc(var(--reveal-stagger) * 4);
    }

    @keyframes simpleMobileReveal {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 3. Disable Real-time Filters for Scrolling */
    .hero-grid-card img,
    .product-card img {
        filter: none !important;
        /* Ensure no live filters on images while scrolling */
        will-change: auto;
        /* Don't force GPU on every image unless needed */
    }

    /* 4. Optimize Hardware Acceleration */
    .navbar,
    .cart-sidebar,
    .modal,
    .story-overlay {
        transform: translateZ(0);
        /* Hardware acceleration hint */
        backface-visibility: hidden;
        perspective: 1000px;
    }

    /* 5. Reduce Particles Complexity */
    .gold-particles span {
        display: none;
        /* Particles are nice but heavy to compute on mobile CPU */
    }

    .hero-featured-overlay {
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, #000 100%) !important;
    }
}

.modal {
    z-index: 100005 !important;
}

.modal.open {
    z-index: 200000 !important;
}

/* === LANGUAGE SWITCHER STYLES === */
.lang-selector {
    position: relative;
    margin-inline-end: 15px;
    z-index: 1001;
}

.luxury-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: none;
    border-radius: 25px;
    background: transparent;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.luxury-lang-btn:hover {
    background: transparent;
    box-shadow: none;
    color: #3498db;
    /* Blue color */
    transform: scale(1.05);
    /* Slight zoom for interaction feedback */
}

.luxury-lang-btn svg {
    stroke: currentColor;
    width: 18px;
    height: 18px;
}

/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 140px;
    background: #0056b3;
    /* Changed to Blue */
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

html[lang="ar"] .lang-dropdown {
    right: auto;
    left: 0;
}

/* Invisible Bridge to prevent closing */
.lang-dropdown::after {
    content: '';
    position: absolute;
    top: -15px;
    /* Cover the gap + buffer */
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

/* Show Dropdown on Hover */
.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: #0056b3;
    /* Changed to Blue */
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-left: 1px solid rgba(197, 160, 89, 0.3);
    transform: rotate(45deg);
}

html[lang="ar"] .lang-dropdown::before {
    right: auto;
    left: 15px;
}

.lang-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    color: #aaa;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    background: transparent;
    border-radius: 8px;
    margin-bottom: 2px;
}

html[lang="ar"] .lang-dropdown button {
    text-align: right;
    font-family: var(--font-ar);
}

.lang-dropdown button:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--accent);
    transform: translateX(3px);
}

html[lang="ar"] .lang-dropdown button:hover {
    transform: translateX(-3px);
}

.lang-dropdown button.active {
    background: #ffffff;
    /* Changed to White */
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lang-dropdown button.active:hover {
    transform: none;
}

/* Handshake Icon Image */
.delivery-icon-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}