/* ============================================
   Aurillous Website - Main Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-green: #6b704f;
    --secondary-pink: #ef6f6a;
    --primary-purple: #582d4e;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f7f7f7;
    --light-gray-alt: #f2f3f0;
    --border-gray: #ebebeb;
    
    /* Text Colors */
    --text-dark: #111111;
    --text-body: #4b4b4b;
    --text-meta: #75766e;
    --text-secondary: #555;
    
    /* Accent Colors */
    --sale-red: #dc0000;
    --error-red: #cf2e2e;
    --success-green: #00d084;
    
    /* Dark Mode Colors */
    --dark-bg: #111111;
    --dark-element-bg: #1d1d1d;
    --dark-text: #c6c6c6;
    --dark-border: #3a3939;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Marquee Banner
   ============================================ */
.marquee-banner {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 100%);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(239, 111, 106, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-item {
    padding: 0 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RTL Marquee Animation */
@keyframes marqueeRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Apply RTL animation for Arabic */
body[dir="rtl"] .marquee-content,
body.rtl .marquee-content {
    animation: marqueeRTL 30s linear infinite !important;
    will-change: transform;
}

body[dir="rtl"] .marquee-text,
body.rtl .marquee-text {
    animation: marqueeRTL 20s linear infinite !important;
    will-change: transform;
}

/* Ensure marquee banner works in RTL */
html[dir="rtl"] .marquee-banner,
html[lang="ar"] .marquee-banner,
body[dir="rtl"] .marquee-banner,
body.rtl .marquee-banner {
    overflow: hidden;
    position: relative;
}

html[dir="rtl"] .marquee-content,
html[lang="ar"] .marquee-content,
body[dir="rtl"] .marquee-content,
body.rtl .marquee-content {
    display: inline-flex !important;
    white-space: nowrap !important;
    animation: marqueeRTL 30s linear infinite !important;
}

/* ============================================
   Header
   ============================================ */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    /* Ensure button is clickable on mobile */
    -webkit-tap-highlight-color: rgba(88, 45, 78, 0.1);
    touch-action: manipulation;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: relative;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--primary-purple);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--primary-purple);
}

.mobile-menu-toggle:hover span {
    background-color: var(--primary-purple);
}

.logo-section {
    flex: 0 0 auto;
}

.logo-section a {
    display: inline-block;
    text-decoration: none;
}

.site-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin: 0;
    display: block;
    transition: opacity var(--transition-fast);
}

.logo-section a:hover .site-logo {
    opacity: 0.8;
}

.site-tagline {
    font-size: 11px;
    color: var(--text-meta);
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-purple);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-purple);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Ensure only one language switcher is visible - desktop version */
@media (min-width: 768px) {
    .header-actions .language-switcher {
        display: flex !important;
    }
    
    .mobile-language-switcher-wrapper {
        display: none !important;
    }
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
    position: relative;
    user-select: none;
}

.language-switcher:hover {
    background-color: var(--light-gray);
}

.language-switcher.has-dropdown {
    padding-right: 20px;
}

.language-switcher .arrow-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}


.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-switcher.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher.active .arrow-down {
    transform: rotate(180deg);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
    color: var(--text-dark);
}

.language-option:hover {
    background-color: var(--light-gray-alt);
}

.language-option:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.language-option:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.language-option .flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.icon-btn,
a.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    position: relative;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

a.icon-btn {
    border: none;
    outline: none;
}

.icon-btn:hover,
a.icon-btn:hover {
    color: var(--primary-purple);
}

.icon-btn .badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-pink);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    height: calc(100vh - 160px);
    min-height: 900px;
    overflow: hidden;
    margin-top: 0;
    padding: 0 !important;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    filter: brightness(0.8);
    transition: background-size 0.3s ease;
}

/* Responsive background images for hero slider */
@media (max-width: 767px) {
    .hero-slider {
        position: relative;
        overflow: hidden;
        /* Portrait aspect ratio for mobile - like phone screen */
        aspect-ratio: 9/16;
        height: auto;
        min-height: 500px;
        max-height: 700px;
        width: 100%;
        /* Optimize performance */
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hero-slide {
        min-height: 100%;
        height: 100%;
        position: relative;
        width: 100%;
    }
    
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Show full image without cropping on mobile - scaled to fit */
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 100%;
        /* Show full image - no cropping */
        object-fit: contain;
        /* Performance optimizations */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        image-rendering: -webkit-optimize-contrast;
        /* Force GPU acceleration */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        /* Remove filter to show image clearly */
        filter: brightness(1);
    }
    
    /* Add background color to fill empty space if image doesn't fill container */
    .hero-slide {
        background-color: #f5f3f0;
    }
    
    .hero-slider {
        background-color: #f5f3f0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-bg {
        background-size: cover;
        background-position: center center;
        /* Better positioning for tablet */
        background-attachment: scroll;
    }
}

@media (min-width: 1025px) {
    .hero-bg {
        background-size: cover;
        background-position: center center;
        /* Full desktop experience */
        background-attachment: scroll;
    }
}

/* Ensure hero slider images are always properly sized */
.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    padding: 40px 20px;
}

.hero-text {
    max-width: 100%;
    width: 100%;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text .btn {
    margin: 0;
}

/* Hide all text elements except button */
.hero-label,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-price {
    display: none;
}

.hero-label {
    font-size: 12px;
    color: var(--secondary-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.new-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.currency-indicator {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* Currency indicator on mobile - move below arrow */
@media (max-width: 767px) {
    .currency-indicator {
        top: auto !important;
        bottom: 80px !important;
        left: 20px !important;
        transform: none !important;
        padding: 8px 12px;
        font-size: 11px;
        z-index: 14;
    }
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--primary-purple);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 8px;
    transition: all var(--transition-fast);
    margin-top: 0;
    top: auto;
    bottom: 20px;
    transform: none;
    position: absolute;
}

.hero-slider .swiper-button-prev {
    right: 80px;
    left: auto;
}

.hero-slider .swiper-button-next {
    right: 20px;
    left: auto;
}

/* RTL: Swap arrow positions - in RTL, left arrow goes next, right arrow goes prev */
body.rtl .hero-slider .swiper-button-next,
body[dir="rtl"] .hero-slider .swiper-button-next {
    left: 20px !important;
    right: auto !important;
}

body.rtl .hero-slider .swiper-button-prev,
body[dir="rtl"] .hero-slider .swiper-button-prev {
    right: 80px !important;
    left: auto !important;
}

/* Ensure arrows are properly positioned on mobile in RTL */
@media (max-width: 767px) {
    body.rtl .hero-slider .swiper-button-next,
    body[dir="rtl"] .hero-slider .swiper-button-next {
        left: 15px !important;
        right: auto !important;
    }
    
    body.rtl .hero-slider .swiper-button-prev,
    body[dir="rtl"] .hero-slider .swiper-button-prev {
        right: 15px !important;
        left: auto !important;
    }
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background-color: var(--light-gray);
    transform: scale(1.05);
}

.hero-slider .swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-purple) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 45, 78, 0.3);
    color: var(--white);
}

.btn-primary span,
.btn-primary svg,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-purple);
}

.btn-white:hover {
    background-color: var(--light-gray);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-pink);
    border: 1px solid var(--secondary-pink);
}

.btn-outline:hover {
    background-color: var(--secondary-pink);
    color: var(--white);
}

.btn-outline-pink {
    background-color: var(--white);
    color: var(--secondary-pink);
    border: 1px solid var(--secondary-pink);
}

.btn-outline-pink:hover {
    background-color: var(--secondary-pink);
    color: var(--white);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

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

.section-subtitle {
    font-size: 14px;
    color: var(--text-meta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--text-meta);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
}

.section-title strong {
    color: var(--primary-purple);
}

.section-title-center {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-pink);
    text-align: center;
    margin-bottom: 40px;
}

.section-title-white {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle-white {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 40px;
}

.section-description-white {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

/* ============================================
   About Section
   ============================================ */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image-left,
.about-image-right {
    border-radius: 12px;
    overflow: hidden;
}

.about-image-left img,
.about-image-right img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image-left:hover img,
.about-image-right:hover img {
    transform: scale(1.05);
}

.about-center {
    text-align: center;
    padding: 40px 20px;
}

.about-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
}

.about-tagline {
    font-size: 14px;
    color: var(--secondary-pink);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 30px;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    background-color: var(--light-gray);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--white);
    color: var(--text-body);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-purple);
    color: var(--white);
}

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

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card-link .product-icon-btn,
.product-card-link .product-action-btn,
.product-card-link .btn-add-to-cart,
.product-card-link .quick-view-btn {
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray);
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.product-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 15px;
    right: 15px;
}


.product-icon-btn {
    background-color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-purple);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-icon-btn:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(88, 45, 78, 0.3);
}

.product-action-btn {
    background-color: var(--white);
    color: var(--primary-purple);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.product-action-btn:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 45, 78, 0.3);
}

.btn-add-to-cart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(88, 45, 78, 0.9);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    color: var(--text-meta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.product-price .old-price {
    font-size: 14px;
    color: var(--text-meta);
    text-decoration: line-through;
}

.product-price .new-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--primary-purple);
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 12px;
    color: var(--text-meta);
}

/* ============================================
   Categories Section
   ============================================ */
.categories-section {
    background-color: var(--primary-purple);
    position: relative;
    overflow: hidden;
}

.categories-section::before,
.categories-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    background-size: contain;
    background-repeat: no-repeat;
}

.categories-section::before {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.categories-section::after {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-see-all {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--white);
    color: var(--secondary-pink);
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-see-all:hover {
    background-color: var(--secondary-pink);
    color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
    /* Ensure link is clickable on mobile */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
    /* Make sure the link covers the entire card area */
    width: 100%;
    height: 100%;
}

.category-card {
    background-color: var(--light-gray-alt);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-normal);
    /* Remove cursor from card since parent link handles it */
    cursor: inherit;
    /* Ensure card doesn't block pointer events */
    pointer-events: none;
    position: relative;
    z-index: 0;
    /* Make all child elements inherit pointer-events from parent link */
}

.category-card * {
    pointer-events: none;
}

.category-card-link:hover .category-card,
.category-card-link:active .category-card {
    transform: translateY(-10px);
}

/* Ensure link works on mobile touch */
.category-card-link:active {
    opacity: 0.9;
}

.category-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: var(--white);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.category-count {
    font-size: 14px;
    color: var(--text-meta);
}

/* ============================================
   Special Offer Section
   ============================================ */
.special-offer-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.special-offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.special-offer-left {
    height: 100%;
}

.offer-banner-container {
    background-color: #f5f3f0;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.offer-text-content {
    width: 100%;
    text-align: left;
    z-index: 2;
}

.offer-model-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.offer-model-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    object-position: center;
}

.offer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-pink);
    margin-bottom: 15px;
    line-height: 1.3;
}

.offer-title .offer-percentage {
    font-family: 'Montserrat', sans-serif;
    font-size: 140px;
    font-weight: 900;
    color: var(--secondary-pink);
    line-height: 1;
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

.offer-subtitle {
    font-size: 14px;
    color: var(--text-meta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.countdown-timer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.timer-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: baseline;
}

.timer-labels-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.timer-item {
    text-align: left;
    min-width: 60px;
}

.timer-value {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.timer-label {
    display: inline-block;
    font-size: 12px;
    color: var(--text-meta);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 60px;
}

.special-offer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-product-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
}

.offer-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-product-image {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.offer-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.offer-product-card:hover .offer-product-image img {
    transform: scale(1.1);
}

.offer-product-info {
    flex: 1;
}

/* ============================================
   Marquee Section
   ============================================ */
.marquee-section {
    background-color: var(--white);
    padding: 40px 0;
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
}

.marquee-text {
    display: inline-flex;
    gap: 50px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-text span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Featured Products Section
   ============================================ */
.featured-products-section {
    background-color: var(--primary-purple);
    padding: 100px 0;
}

.featuredProductsSwiper {
    padding: 20px 0 60px;
}

.featuredProductsSwiper .swiper-button-next,
.featuredProductsSwiper .swiper-button-prev {
    color: var(--white);
    top: auto;
    bottom: 0;
}

.featuredProductsSwiper .swiper-button-next::after,
.featuredProductsSwiper .swiper-button-prev::after {
    font-size: 20px;
}

/* ============================================
   Hot Selling Section
   ============================================ */
.hot-selling-section {
    background-color: var(--white);
}

.hot-selling-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hot-selling-left {
    position: relative;
}

.hot-selling-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.hot-selling-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    cursor: pointer;
}

.hot-selling-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: lowercase;
}

.hot-selling-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hot-selling-banner-link .btn {
    pointer-events: none;
    position: relative;
    z-index: 10;
}

.hot-selling-banner-link {
    cursor: pointer;
}

/* ============================================
   Take Control Section
   ============================================ */
.take-control-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 50%, var(--primary-purple) 100%);
    background-size: 200% 200%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.take-control-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.take-control-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.take-control-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.take-control-left {
    max-width: 500px;
}

.beer-slider-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.beer-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.beer-slider-before,
.beer-slider-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.beer-slider-after {
    z-index: 1;
}

.beer-slider-before {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.beer-slider-before img,
.beer-slider-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.beer-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-purple), var(--secondary-pink));
    cursor: ew-resize;
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(88, 45, 78, 0.3);
}

.beer-slider-handle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-purple), var(--secondary-pink));
    opacity: 0.8;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(88, 45, 78, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.9);
    border: 3px solid var(--white);
    z-index: 5;
    transition: all var(--transition-normal);
    cursor: grab;
}

.handle-circle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.95);
}

.handle-circle svg {
    color: var(--white);
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.beer-slider-handle:hover .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(88, 45, 78, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.beer-slider-handle:hover .handle-circle svg {
    transform: scale(1.1);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background-color: var(--light-gray);
}

.testimonialsSwiper {
    padding: 20px 0 60px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-rating {
    color: var(--primary-purple);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-meta);
}

.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
    color: var(--primary-purple);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

/* ============================================
   Latest News Section
   ============================================ */
.latest-news-section {
    background-color: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.no-news {
    text-align: center;
    color: var(--text-meta);
    font-size: 16px;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray-alt) 100%);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-pink) 50%, var(--primary-purple) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer-top {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 50%, var(--primary-purple) 100%);
    background-size: 200% 200%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(239, 111, 106, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(107, 112, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-feature {
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.footer-feature:hover {
    transform: translateY(-5px);
}

.footer-feature svg {
    margin-bottom: 20px;
    color: var(--white);
    display: inline-block;
    animation: floating 3s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-feature:nth-child(1) svg {
    animation-delay: 0s;
}

.footer-feature:nth-child(2) svg {
    animation-delay: 0.5s;
}

.footer-feature:nth-child(3) svg {
    animation-delay: 1s;
}

.footer-feature:nth-child(4) svg {
    animation-delay: 1.5s;
}

.footer-feature:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-feature p {
    font-size: 14px;
    opacity: 0.9;
}

/* Floating Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.footer-main {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-gray) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 60px;
}

.footer-column a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(88, 45, 78, 0.15));
}

.footer-column a:hover .footer-logo {
    opacity: 0.85;
    transform: scale(1.02);
    filter: drop-shadow(0 4px 12px rgba(88, 45, 78, 0.25));
}

.footer-tagline {
    font-size: 12px;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-tagline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
    border-radius: 2px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 400px;
}

.footer-social p {
    font-size: 14px;
    color: var(--text-meta);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--secondary-pink) 0%, #ef6f6a 100%);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(239, 111, 106, 0.4);
    border-color: var(--secondary-pink);
}

.social-icons a svg {
    width: 22px;
    height: 22px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-pink);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-pink), var(--primary-purple));
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--secondary-pink);
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-pink);
    font-size: 15px;
    margin-bottom: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.footer-contact a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(239, 111, 106, 0.1), rgba(88, 45, 78, 0.1));
    transition: width 0.3s ease;
    z-index: 0;
}

.footer-contact a:hover::before {
    width: 100%;
}

.footer-contact a:hover {
    color: var(--primary-purple);
    transform: translateX(8px);
    font-weight: 600;
}

.footer-contact svg {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--secondary-pink), var(--primary-purple));
    padding: 6px;
    border-radius: 50%;
    color: var(--white);
    width: 24px;
    height: 24px;
}

.footer-contact a:hover svg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(239, 111, 106, 0.3);
}

.footer-subscribe {
    margin-top: 35px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(239, 111, 106, 0.05) 0%, rgba(88, 45, 78, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(239, 111, 106, 0.2);
}

.footer-subscribe p {
    font-size: 15px;
    color: var(--secondary-pink);
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.6;
    text-decoration: none;
    position: relative;
    padding-bottom: 10px;
}

.footer-subscribe p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-pink), var(--primary-purple));
    border-radius: 2px;
}

.subscribe-form {
    display: flex;
    gap: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.subscribe-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.subscribe-form input::placeholder {
    color: var(--text-meta);
    font-size: 14px;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(88, 45, 78, 0.1);
}

.subscribe-form button {
    background: linear-gradient(135deg, var(--secondary-pink) 0%, #ef6f6a 100%);
    color: var(--white);
    border: 2px solid var(--secondary-pink);
    padding: 14px 24px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.subscribe-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.subscribe-form button:hover::before {
    width: 300px;
    height: 300px;
}

.subscribe-form button:hover {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 100%);
    border-color: var(--primary-purple);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(88, 45, 78, 0.3);
}

.subscribe-form button svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.subscribe-form button:hover svg {
    transform: translateX(3px);
}

.footer-bottom {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 50%, var(--primary-purple) 100%);
    background-size: 200% 200%;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.copyright {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* About Hero Section */
.about-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray-alt) 100%);
    position: relative;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 50px;
}

.about-hero-title strong {
    color: var(--primary-purple);
    position: relative;
}

.about-hero-title strong::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
    border-radius: 2px;
}

.about-hero-text {
    text-align: left;
}

.hero-paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-paragraph:first-child {
    color: var(--secondary-pink);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Statistics Section */
.about-stats-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--border-gray), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.stat-number.animating {
    animation: pulse 0.3s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.stat-label {
    font-size: 16px;
    color: var(--text-meta);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: var(--light-gray-alt);
    overflow: visible; /* Allow image to go outside section */
    position: relative;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: visible; /* Allow image to go outside grid */
}

.mission-vision-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.mv-card-content {
    width: 100%;
}

.mv-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.mv-logo {
    margin-bottom: 30px;
}

.mv-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
    display: block;
}

.mv-tagline {
    font-size: 11px;
    color: var(--text-meta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.mv-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    font-weight: 400;
}

.mission-vision-image {
    position: relative;
    border-radius: 20px;
    overflow: visible; /* Changed from hidden to visible to allow image to go outside */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 1;
    perspective: 1200px; /* Add 3D perspective */
    transform-style: preserve-3d; /* Preserve 3D transformations */
    transition: z-index 0.3s ease;
    will-change: transform; /* Optimize for animations */
}

.mission-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.6s ease,
                z-index 0.3s ease;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.mission-vision-image:hover {
    z-index: 100; /* Bring to front on hover */
}

.mission-vision-image:hover img {
    transform: scale(1.2) translateY(-30px) translateZ(80px) rotateX(-8deg) rotateY(2deg);
    box-shadow: 0 40px 100px rgba(88, 45, 78, 0.5), 
                0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 100;
    filter: brightness(1.05) contrast(1.05); /* Slight brightness increase on hover */
}

/* Vision & Products Section */
.vision-products-section {
    padding: 100px 0;
    background: var(--white);
}

.vision-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-products-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.vision-products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.currency-indicator-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-purple);
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(88, 45, 78, 0.3);
    z-index: 10;
}

.currency-indicator-overlay .flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.vp-card-content {
    width: 100%;
}

.vision-products-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.vp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.vp-logo {
    margin-bottom: 30px;
}

.vp-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
    display: block;
}

.vp-tagline {
    font-size: 11px;
    color: var(--text-meta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.vp-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    font-weight: 400;
}

/* Unique Features Section */
.unique-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray-alt) 100%);
    position: relative;
}

.unique-features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.unique-features-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.unique-features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.unique-features-content {
    position: relative;
}

.unique-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.unique-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.unique-section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
}

.unique-features-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.unique-feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.unique-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(88, 45, 78, 0.25);
    transition: all 0.3s ease;
}

.unique-feature-item:hover .unique-feature-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(88, 45, 78, 0.4);
    background: linear-gradient(135deg, var(--secondary-pink) 0%, #ef6f6a 100%);
}

.unique-feature-content {
    flex: 1;
}

.unique-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.unique-feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
}

/* Background decoration for unique features */
.unique-features-content::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(88,45,78,0.05)" stroke-width="2"/><path d="M20 50 Q50 20 80 50" fill="none" stroke="rgba(88,45,78,0.05)" stroke-width="2"/></svg>') no-repeat;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.unique-feature-item {
    position: relative;
    z-index: 1;
}

/* Mission/Vision card hover effect */
.mission-vision-card,
.vision-products-card {
    transition: all 0.3s ease;
}

.mission-vision-card:hover,
.vision-products-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Image hover effects - Keep other images with subtle effect */
.vision-products-image:hover img,
.unique-features-image:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray-alt) 100%);
    min-height: calc(100vh - 200px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Contact Info Column */
.contact-info-column {
    position: relative;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 50px;
}

.contact-intro strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 45, 78, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(88, 45, 78, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--secondary-pink) 0%, #ef6f6a 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(239, 111, 106, 0.4);
}

.contact-link {
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-purple);
}

/* Contact Form Column */
.contact-form-column {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-form-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--light-gray-alt);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(88, 45, 78, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-meta);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-pink) 100%);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(88, 45, 78, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 45, 78, 0.4);
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-purple) 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Icon Animations */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.contact-icon svg {
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon svg {
    animation: iconBounce 0.6s ease-in-out;
}

/* ============================================
   RTL Support
   ============================================ */

body.rtl,
body[dir="rtl"] {
    direction: rtl;
}

body.rtl .language-switcher.has-dropdown,
body[dir="rtl"] .language-switcher.has-dropdown {
    padding-left: 20px;
    padding-right: 10px;
}

body.rtl .language-dropdown,
body[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

body.rtl .nav-menu,
body[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

body.rtl .header-actions,
body[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

body.rtl .contact-grid,
body[dir="rtl"] .contact-grid {
    direction: rtl;
}

body.rtl .form-row,
body[dir="rtl"] .form-row {
    direction: rtl;
}

body.rtl .footer-content,
body[dir="rtl"] .footer-content {
    direction: rtl;
}

body.rtl .mission-vision-grid,
body[dir="rtl"] .mission-vision-grid {
    direction: rtl;
}

body.rtl .vision-products-grid,
body[dir="rtl"] .vision-products-grid {
    direction: rtl;
}

body.rtl .unique-features-grid,
body[dir="rtl"] .unique-features-grid {
    direction: rtl;
}

/* DO NOT override animations in RTL - let them work naturally */
/* The previous rule was breaking all animations, so it's removed */

/* Ensure product hover animations work in RTL */
body[dir="rtl"] .product-card:hover,
body.rtl .product-card:hover {
    transform: translateY(-5px) scale(1) !important;
}

body[dir="rtl"] .product-card:hover .product-image img,
body.rtl .product-card:hover .product-image img {
    transform: scale(1.15) !important;
}

body[dir="rtl"] .product-card:hover .product-overlay,
body.rtl .product-card:hover .product-overlay {
    opacity: 1 !important;
}

body[dir="rtl"] .product-icon-btn:hover,
body.rtl .product-icon-btn:hover {
    transform: scale(1.15) !important;
}

/* Ensure all transitions work in RTL - explicitly set transitions */
body[dir="rtl"] .product-card,
body.rtl .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease !important;
    will-change: transform, box-shadow;
}

body[dir="rtl"] .product-image img,
body.rtl .product-image img {
    transition: transform 0.5s ease !important;
    will-change: transform;
}

body[dir="rtl"] .product-overlay,
body.rtl .product-overlay {
    transition: opacity 0.3s ease !important;
    will-change: opacity;
}

body[dir="rtl"] .product-icon-btn,
body.rtl .product-icon-btn {
    transition: all 0.2s ease !important;
    will-change: transform, background-color, color;
}

/* Ensure marquee animation works in RTL */
body[dir="rtl"] .marquee-content,
body.rtl .marquee-content {
    animation: marqueeRTL 30s linear infinite !important;
    will-change: transform;
}

body[dir="rtl"] .marquee-text,
body.rtl .marquee-text {
    animation: marqueeRTL 20s linear infinite !important;
    will-change: transform;
}

/* Ensure all keyframe animations work in RTL */
body[dir="rtl"] .wow,
body.rtl .wow {
    animation-fill-mode: both !important;
}

body[dir="rtl"] .animated,
body.rtl .animated {
    animation-fill-mode: both !important;
}

/* Ensure hover states work in RTL */
body[dir="rtl"] .product-card,
body.rtl .product-card {
    pointer-events: auto !important;
}

/* Ensure marquee banner container works in RTL */
body[dir="rtl"] .marquee-banner,
body.rtl .marquee-banner {
    overflow: hidden !important;
    position: relative !important;
}

/* Ensure marquee content displays correctly in RTL */
body[dir="rtl"] .marquee-content,
body.rtl .marquee-content {
    display: inline-flex !important;
    white-space: nowrap !important;
    animation-name: marqueeRTL !important;
    animation-duration: 30s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
    will-change: transform !important;
}

/* Ensure marquee text works in RTL */
body[dir="rtl"] .marquee-text,
body.rtl .marquee-text {
    animation-name: marqueeRTL !important;
    animation-duration: 20s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
    will-change: transform !important;
}

/* Swiper RTL Support - For other swipers (not hero) */
body.rtl .swiper:not(.heroSwiper) .swiper-button-next,
body[dir="rtl"] .swiper:not(.heroSwiper) .swiper-button-next {
    left: 10px !important;
    right: auto !important;
}

body.rtl .swiper:not(.heroSwiper) .swiper-button-prev,
body[dir="rtl"] .swiper:not(.heroSwiper) .swiper-button-prev {
    right: 10px !important;
    left: auto !important;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    /* About Us Page - Tablet */
    .about-hero-title {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .mission-vision-grid,
    .vision-products-grid {
        gap: 40px;
    }
    
    .unique-features-grid {
        gap: 50px;
    }
    
    .mv-title,
    .vp-title {
        font-size: 56px;
    }
    
    /* Contact Page - Tablet */
    .contact-grid {
        gap: 60px;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .contact-form-title {
        font-size: 36px;
    }
    
    .contact-form-column {
        padding: 40px;
    }
    
    .hero-slider {
        height: calc(100vh - 140px);
        min-height: 600px;
        max-height: 800px;
    }
    
    .hero-bg {
        background-size: cover;
        background-position: center center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-left,
    .about-image-right {
        order: 0;
    }
    
    .about-center {
        order: 1;
    }
    
    .take-control-content {
        grid-template-columns: 1fr;
    }
    
    .hot-selling-content {
        grid-template-columns: 1fr;
    }
    
    .special-offer-content {
        grid-template-columns: 1fr;
    }
    
    .offer-banner-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .offer-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .offer-title {
        font-size: 42px;
        white-space: normal;
    }
    
    .offer-title .offer-percentage {
        font-size: 100px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .offer-model-image {
        width: 100%;
        max-width: 100%;
    }
    
    .offer-model-image img {
        max-width: 100%;
        max-height: 500px;
    }
    
    .timer-row,
    .timer-labels-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .timer-item,
    .timer-label {
        min-width: 50px;
    }
    
    .timer-value {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-section {
        flex: 1;
        text-align: center;
    }
    
    .site-logo {
        height: 80px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    /* Hide desktop language switcher on mobile */
    .header-actions .language-switcher {
        display: none !important;
    }
    
    /* Show mobile language switcher only in mobile menu */
    .mobile-language-switcher-wrapper {
        display: block !important;
        border-top: 2px solid var(--border-gray);
        padding: 20px 15px;
        margin-top: 20px;
        text-align: center;
    }
    
    .mobile-language-switcher {
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 12px 20px;
        width: 100%;
        border: 2px solid var(--primary-purple);
        border-radius: 8px;
        background-color: var(--white);
        margin: 0 auto;
        max-width: 200px;
    }
    
    .mobile-language-switcher:hover {
        background-color: var(--light-gray);
        border-color: var(--secondary-pink);
    }
    
    .mobile-language-switcher .flag-icon {
        width: 20px;
        height: 15px;
    }
    
    .mobile-language-switcher span {
        font-size: 14px;
        font-weight: 600;
    }
    
    .mobile-language-switcher .arrow-down {
        margin-left: 5px;
    }
    
    .icon-btn {
        padding: 6px;
    }
    
    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        /* Fast transition for closing (instant on mobile) */
        transition: max-height 0.2s ease-out, opacity 0.15s ease-out, visibility 0.15s ease-out;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Ensure menu can receive touch events when active */
        touch-action: auto;
        pointer-events: auto;
    }
    
    .main-nav.active {
        max-height: 100vh;
        opacity: 1;
        visibility: visible;
        /* Slightly longer transition for opening */
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    /* When menu is not active, disable pointer events and ensure it's hidden */
    .main-nav:not(.active) {
        pointer-events: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }
    
    .main-nav:not(.active) * {
        pointer-events: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0;
        width: 100%;
        padding: 60px 20px 20px;
        list-style: none;
        text-align: center;
        direction: ltr;
        align-items: stretch;
    }
    
    body.rtl .nav-menu,
    body[dir="rtl"] .nav-menu {
        direction: rtl;
        flex-direction: column !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        flex: 0 0 auto !important;
        border-bottom: 1px solid var(--border-gray);
        animation: fadeInDown 0.3s ease forwards;
        opacity: 0;
        display: block !important;
        text-align: center;
        margin: 0;
        padding: 0;
        float: none;
    }
    
    .main-nav.active .nav-menu li:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .main-nav.active .nav-menu li:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .main-nav.active .nav-menu li:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .main-nav.active .nav-menu li:nth-child(4) {
        animation-delay: 0.4s;
    }
    
    .main-nav.active .nav-menu li:nth-child(5) {
        animation-delay: 0.5s;
    }
    
.nav-menu li:last-child {
    border-bottom: none;
}

/* Hide mobile language switcher on desktop */
.mobile-language-switcher-wrapper {
    display: none !important;
}
    
    .nav-menu a {
        display: block !important;
        padding: 20px 15px;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
        white-space: normal;
        text-align: center;
        word-spacing: normal;
        /* Ensure links are clickable on mobile */
        -webkit-tap-highlight-color: rgba(88, 45, 78, 0.2);
        touch-action: manipulation;
        cursor: pointer;
        position: relative;
        z-index: 10;
        /* Prevent text selection on tap */
        -webkit-user-select: none;
        user-select: none;
        letter-spacing: 0.5px;
        line-height: 1.6;
        width: 100% !important;
        box-sizing: border-box;
        float: none;
        clear: both;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary-purple);
        transform: translateX(5px);
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    /* RTL support for mobile menu */
    body.rtl .nav-menu,
    body[dir="rtl"] .nav-menu {
        text-align: center;
        direction: rtl;
    }
    
    body.rtl .nav-menu a,
    body[dir="rtl"] .nav-menu a {
        text-align: center;
        direction: rtl;
        unicode-bidi: embed;
        word-spacing: normal;
        letter-spacing: 0.5px;
        display: block !important;
        width: 100% !important;
        white-space: normal;
        line-height: 1.6;
        float: none;
        clear: both;
    }
    
    body.rtl .nav-menu a:hover,
    body[dir="rtl"] .nav-menu a:hover,
    body.rtl .nav-menu a.active,
    body[dir="rtl"] .nav-menu a.active {
        transform: translateX(-5px);
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Hero Slider Mobile - Show Full Image (Smaller, Complete) */
    .hero-slider {
        height: auto;
        min-height: 450px;
        max-height: 650px;
        position: relative;
        overflow: hidden;
        /* Flexible height to show full image */
        width: 100%;
        /* Add background color to match design */
        background-color: #f5f3f0;
    }
    
    .heroSwiper {
        height: 100%;
    }
    
    .hero-slide {
        min-height: 450px;
        height: auto;
        width: 100%;
        /* Add background color */
        background-color: #f5f3f0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }
    
    /* Show full image without cropping on mobile - scaled to fit */
    .hero-bg {
        background-size: contain !important;
        background-position: center center !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 400px;
        max-height: 550px;
        /* Show full image - no cropping, scaled to fit width */
        object-fit: contain;
        background-attachment: scroll;
        /* Ensure image is fully visible */
        background-repeat: no-repeat;
        /* Remove filter on mobile for better image quality */
        filter: brightness(1) !important;
        position: relative;
        /* Center the image */
        margin: 0 auto;
    }
    
    .hero-content {
        padding: 0;
        justify-content: center;
        align-items: flex-end;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2;
        padding-bottom: 50px;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        position: relative;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-text .btn {
        padding: 16px 35px;
        font-size: 15px;
        font-weight: 600;
        width: auto;
        display: inline-block;
        margin: 0 auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    /* Show navigation arrows on mobile for hero slider */
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        color: var(--primary-purple);
        z-index: 15;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }
    
    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 18px;
        font-weight: bold;
    }
    
    .hero-slider .swiper-button-next {
        right: 15px;
        left: auto;
    }
    
    .hero-slider .swiper-button-prev {
        left: 15px;
        right: auto;
    }
    
    .hero-slider .swiper-button-next:hover,
    .hero-slider .swiper-button-prev:hover {
        background-color: var(--primary-purple);
        color: var(--white);
        transform: translateY(-50%) scale(1.1);
    }
    
    .hero-slider .swiper-button-next:active,
    .hero-slider .swiper-button-prev:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    /* RTL: Swap arrow positions on mobile */
    body.rtl .hero-slider .swiper-button-next,
    body[dir="rtl"] .hero-slider .swiper-button-next {
        left: 15px !important;
        right: auto !important;
    }
    
    body.rtl .hero-slider .swiper-button-prev,
    body[dir="rtl"] .hero-slider .swiper-button-prev {
        right: 15px !important;
        left: auto !important;
    }
    
    /* Currency indicator below arrows on mobile */
    .currency-indicator {
        top: auto !important;
        bottom: 90px !important;
        left: 20px !important;
        transform: none !important;
        padding: 8px 12px;
        font-size: 11px;
        z-index: 14;
        position: absolute;
    }
    
    .hero-slider .swiper-pagination {
        bottom: 25px !important;
        z-index: 15;
        position: absolute;
    }
    
    .hero-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: var(--white);
        opacity: 0.6;
        margin: 0 5px;
        transition: all 0.3s ease;
    }
    
    .hero-slider .swiper-pagination-bullet-active {
        opacity: 1;
        background: var(--secondary-pink);
        width: 25px;
        height: 10px;
        border-radius: 5px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .section-title-center {
        font-size: 24px;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card-link {
        /* Ensure links are fully clickable on mobile */
        position: relative;
        z-index: 10;
        -webkit-tap-highlight-color: rgba(88, 45, 78, 0.1);
        touch-action: manipulation;
        /* Prevent text selection on tap */
        -webkit-user-select: none;
        user-select: none;
    }
    
    .category-card {
        padding: 20px 15px;
        pointer-events: none;
    }
    
    .category-card * {
        pointer-events: none;
    }
    
    .category-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .category-name {
        font-size: 16px;
    }
    
    /* Active state for mobile touch */
    .category-card-link:active .category-card {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Special Offer Section */
    .special-offer-section {
        padding: 50px 0;
    }
    
    .special-offer-content {
        gap: 30px;
    }
    
    .offer-banner-container {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .offer-text-content {
        text-align: center;
    }
    
    .offer-title {
        font-size: 32px;
    }
    
    .offer-title .offer-percentage {
        font-size: 70px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .offer-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .offer-model-image img {
        max-height: 350px;
    }
    
    .timer-row,
    .timer-labels-row {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .timer-item,
    .timer-label {
        min-width: 45px;
    }
    
    .timer-value {
        font-size: 28px;
    }
    
    .timer-label {
        font-size: 10px;
    }
    
    /* Offer Products */
    .offer-product-card {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    .offer-product-image {
        width: 100%;
        height: 200px;
    }
    
    .offer-product-info {
        width: 100%;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    /* Featured Products */
    .featured-products-section {
        padding: 50px 0;
    }
    
    .featured-products-slider .swiper-slide {
        width: 100%;
    }
    
    /* Hot Selling */
    .hot-selling-content {
        gap: 30px;
    }
    
    .hot-selling-banner {
        height: 300px;
    }
    
    /* Take Control */
    .take-control-section {
        padding: 50px 0;
    }
    
    .take-control-content {
        gap: 30px;
    }
    
    .take-control-text {
        text-align: center;
    }
    
    .take-control-title {
        font-size: 24px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .gallery-item-large {
        grid-column: 1;
        grid-row: 1;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact a {
        font-size: 13px;
        justify-content: center;
    }
    
    .social-icons {
        gap: 10px;
        justify-content: center;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .social-icons a svg {
        width: 18px;
        height: 18px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .subscribe-form button {
        border-radius: 4px;
        width: 100%;
    }
    
    /* Marquee */
    .marquee-item {
        font-size: 10px;
        padding: 0 15px;
    }
    
    /* About Section */
    .about-section {
        padding: 50px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    /* About Us Page Responsive */
    .about-hero-section {
        padding: 60px 0 50px;
    }
    
    .about-hero-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .hero-paragraph {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-paragraph:first-child {
        font-size: 16px;
    }
    
    .about-stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .mission-vision-section,
    .vision-products-section,
    .unique-features-section {
        padding: 60px 0;
    }
    
    .mission-vision-grid,
    .vision-products-grid,
    .unique-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        overflow: visible;
    }
    
    /* Adjust 3D effect for mobile - less dramatic */
    .mission-vision-image:hover img {
        transform: scale(1.1) translateY(-15px) translateZ(40px) rotateX(-5deg);
    }
    
    .mission-vision-card {
        padding: 40px 30px;
    }
    
    .mv-title,
    .vp-title {
        font-size: 48px;
    }
    
    .unique-section-title {
        font-size: 32px;
    }
    
    .unique-section-subtitle {
        font-size: 24px;
    }
    
    .unique-feature-item {
        gap: 20px;
    }
    
    .unique-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    /* Contact Page Responsive */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-form-column {
        padding: 40px 30px;
    }
    
    .contact-form-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    /* Quick View Modal */
    .quick-view-content {
        margin: 20px;
        padding: 20px;
        max-width: 100%;
    }
    
    .quick-view-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .quick-view-images {
        width: 100%;
    }
    
    .quick-view-main-image {
        height: 300px;
    }
    
    .quick-view-thumbnails {
        gap: 10px;
    }
    
    .quick-view-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .quick-view-details {
        width: 100%;
    }
}

/* ============================================
   Quick View Modal
   ============================================ */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.quick-view-modal.active {
    display: block;
}

.quick-view-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.quick-view-content {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
}

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

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    z-index: 10;
}

.quick-view-close:hover {
    background-color: var(--light-gray);
    color: var(--primary-purple);
    transform: rotate(90deg);
}

.quick-view-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.quick-view-left {
    position: sticky;
    top: 20px;
}

.quick-view-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-gray);
    margin-bottom: 20px;
}

.quick-view-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.quick-view-main-image:hover img {
    transform: scale(1.05);
}

.quick-view-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-view-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    background-color: var(--light-gray);
}

.quick-view-thumbnail:hover,
.quick-view-thumbnail.active {
    border-color: var(--primary-purple);
    transform: scale(1.05);
}

.quick-view-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-right {
    padding: 20px 0;
}

.quick-view-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.quick-view-rating {
    margin-bottom: 15px;
}

.quick-view-price {
    margin-bottom: 20px;
}

.quick-view-price .old-price {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--text-meta);
    margin-right: 10px;
}

.quick-view-price .new-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-purple);
}

.quick-view-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.quick-view-category {
    font-size: 14px;
    color: var(--text-meta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quick-view-quantity {
    margin-bottom: 20px;
}

.quick-view-quantity label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-purple);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(88, 45, 78, 0.1);
}

.qty-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6b4470 100%);
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    overflow: hidden;
}

.qty-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-purple) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.qty-btn:hover::before {
    left: 0;
}

.qty-btn > * {
    position: relative;
    z-index: 1;
}

.qty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 45, 78, 0.3);
    color: var(--white);
}

.qty-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(88, 45, 78, 0.2);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--light-gray);
    color: var(--text-meta);
}

#qtyInput {
    width: 80px;
    height: 50px;
    border: none;
    border-left: 2px solid var(--primary-purple);
    border-right: 2px solid var(--primary-purple);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    outline: none;
    padding: 0;
    -moz-appearance: textfield;
}

#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#qtyInput:focus {
    background-color: var(--light-gray-alt);
}

#quantityInput {
    width: 80px;
    height: 50px;
    border: none;
    border-left: 2px solid var(--primary-purple);
    border-right: 2px solid var(--primary-purple);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-purple);
    background-color: var(--white);
    outline: none;
    padding: 0;
    -moz-appearance: textfield;
    font-family: 'Montserrat', sans-serif;
}

#quantityInput::-webkit-outer-spin-button,
#quantityInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#quantityInput:focus {
    background-color: var(--light-gray-alt);
    border-color: var(--secondary-pink);
}

#qtyInput:focus {
    outline: none;
    background-color: var(--light-gray-alt);
    border-color: var(--secondary-pink);
}

.quick-view-add-to-cart {
    flex: 1;
}

@media (max-width: 1024px) {
    .quick-view-container {
        grid-template-columns: 1fr;
    }
    
    .quick-view-left {
        position: relative;
        top: 0;
    }
    
    .quick-view-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    /* About Us Page - Tablet */
    .mission-vision-grid,
    .vision-products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-image,
    .vision-products-image {
        order: -1;
    }
    
    .unique-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Contact Page - Tablet */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* About Us & Contact Pages - Mobile */
@media (max-width: 767px) {
    /* About Hero Section */
    .about-hero-section {
        padding: 60px 0 40px;
    }
    
    .about-hero-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .about-hero-text {
        text-align: center;
    }
    
    .hero-paragraph {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-paragraph:first-child {
        font-size: 16px;
    }
    
    /* Statistics Section */
    .about-stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Mission & Vision Sections */
    .mission-vision-section,
    .vision-products-section {
        padding: 60px 0;
    }
    
    .mission-vision-grid,
    .vision-products-grid {
        gap: 30px;
    }
    
    .mission-vision-card,
    .vision-products-card {
        padding: 40px 25px;
    }
    
    .mv-title,
    .vp-title {
        font-size: 42px;
        margin-bottom: 25px;
    }
    
    .mv-description,
    .vp-description {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .mission-vision-image:hover img,
    .vision-products-image:hover img {
        transform: scale(1.05);
    }
    
    /* Unique Features Section */
    .unique-features-section {
        padding: 60px 0;
    }
    
    .unique-features-grid {
        gap: 30px;
    }
    
    .unique-section-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .unique-section-subtitle {
        font-size: 24px;
    }
    
    .unique-section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .unique-features-list {
        gap: 25px;
    }
    
    .unique-feature-item {
        gap: 20px;
    }
    
    .unique-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .unique-feature-title {
        font-size: 18px;
    }
    
    .unique-feature-text {
        font-size: 14px;
    }
    
    .currency-indicator-overlay {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Contact Page */
    .contact-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .contact-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .contact-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .contact-info-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .contact-info-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .contact-info-text {
        font-size: 14px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 12px 16px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
}

/* ============================================
   Login/Register Modal
   ============================================ */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.login-modal.active {
    display: block;
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.login-content {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 60px 50px;
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
    min-height: 600px;
}

.login-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    z-index: 10;
}

.login-close:hover {
    background-color: var(--light-gray);
    color: var(--primary-purple);
    transform: rotate(90deg);
}

.login-container {
    position: relative;
    width: 100%;
}

.login-currency-indicator {
    position: absolute;
    top: -60px;
    left: 0;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.login-currency-indicator .flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.login-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-gray);
    justify-content: center;
}

.login-tab-btn {
    flex: 1;
    max-width: 200px;
    padding: 15px 30px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-meta);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.login-tab-btn:hover {
    color: var(--primary-purple);
}

.login-tab-btn.active {
    color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
}

.login-forms-wrapper {
    position: relative;
    min-height: 400px;
}

.login-form-section,
.register-form-section {
    width: 100%;
    display: none;
    animation: fadeIn 0.3s ease;
}

.login-form-section.active,
.register-form-section.active {
    display: block;
}

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

.login-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 30px;
    line-height: 1.2;
}

.login-form,
.register-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.login-form .form-group,
.register-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form label,
.register-form label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.login-form input,
.register-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--light-gray-alt);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus,
.register-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(88, 45, 78, 0.1);
}

.login-form input::placeholder,
.register-form input::placeholder {
    color: var(--text-meta);
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-meta);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.password-toggle:hover {
    color: var(--primary-purple);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.password-toggle .eye-off {
    display: none;
}

.password-toggle.active .eye-off {
    display: block;
}

.password-toggle.active svg:not(.eye-off) {
    display: none;
}

.remember-me {
    flex-direction: row !important;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-body);
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-purple);
}

.login-submit-btn,
.register-submit-btn {
    width: 100%;
    padding: 14px 30px;
    margin-top: 10px;
}

.lost-password {
    margin-top: 15px;
    text-align: center;
}

.lost-password-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.lost-password-link:hover {
    color: var(--secondary-pink);
    text-decoration: underline;
}

/* Responsive Design for Login Modal */
@media (max-width: 1024px) {
    .login-content {
        max-width: 95%;
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .login-content {
        margin: 20px auto;
        padding: 40px 30px;
        min-height: auto;
    }
    
    .login-currency-indicator {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        display: inline-flex;
    }
    
    .login-tabs {
        margin-bottom: 30px;
    }
    
    .login-tab-btn {
        padding: 12px 20px;
        font-size: 16px;
        max-width: 150px;
    }
    
    .login-forms-wrapper {
        min-height: 350px;
    }
    
    .login-section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .login-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

/* RTL Support for Login Modal */
body.rtl .login-currency-indicator,
body[dir="rtl"] .login-currency-indicator {
    left: auto;
    right: 0;
}

body.rtl .password-toggle,
body[dir="rtl"] .password-toggle {
    right: auto;
    left: 15px;
}

body.rtl .password-input-wrapper input,
body[dir="rtl"] .password-input-wrapper input {
    padding-right: 18px;
    padding-left: 50px;
}

body.rtl .login-close,
body[dir="rtl"] .login-close {
    right: auto;
    left: 20px;
}

@media (max-width: 767px) {
    body.rtl .login-close,
    body[dir="rtl"] .login-close {
        right: auto;
        left: 15px;
    }
}

/* Active state for wishlist and cart buttons */
.wishlist-btn.active,
.cart-btn.active {
    color: var(--primary-purple);
}

.wishlist-btn.active svg,
.cart-btn.active svg {
    fill: var(--primary-purple);
}

