/* ==========================================================================
   FARMELLE PREMIUM DESIGN SYSTEM & THEME LAYOUTS
   ========================================================================== */

/* 1. Header Styles & Announcement
   ========================================================================== */
.farmelle-announcement-bar {
    background-color: var(--nude-beige);
    color: var(--deep-taupe);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 0;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(110, 91, 82, 0.1);
}

.site-header.luxury-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(249, 247, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(110, 91, 82, 0.02);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.site-branding .custom-logo-link-fallback {
    display: flex;
    flex-direction: column;
}

.site-branding .brand-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--deep-taupe);
    text-transform: uppercase;
}

.site-branding .brand-tagline {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--elegant-gold);
    margin-top: -2px;
}

/* Nav Menu Styles */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation ul li a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 0;
    position: relative;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--elegant-gold);
    transition: var(--transition-smooth);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

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

/* Simulated Polylang switcher */
.language-switcher-wrapper {
    position: relative;
    cursor: pointer;
}

.polylang-switcher, .polylang-switcher-mobile {
    display: flex;
    gap: 12px;
    list-style: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.polylang-switcher li.current-lang a {
    color: var(--elegant-gold);
    border-bottom: 1px solid var(--elegant-gold);
}

.simulated-lang-toggle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--deep-taupe);
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--white);
    position: relative;
}

.simulated-lang-toggle .lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(110, 91, 82, 0.08);
    border-radius: var(--border-radius-md);
    padding: 8px 0;
    width: 120px;
    z-index: 1001;
}

.simulated-lang-toggle:hover .lang-dropdown {
    display: block;
}

.simulated-lang-toggle .lang-dropdown a {
    display: block;
    padding: 8px 16px;
    font-size: 12px;
}

.simulated-lang-toggle .lang-dropdown a:hover,
.simulated-lang-toggle .lang-dropdown a.active {
    background-color: var(--premium-white);
    color: var(--elegant-gold);
}

.header-search-trigger, .header-cart-trigger {
    font-size: 18px;
    cursor: pointer;
    position: relative;
    color: var(--deep-taupe);
    transition: var(--transition-smooth);
}

.header-search-trigger:hover, .header-cart-trigger:hover {
    color: var(--elegant-gold);
}

.header-cart-trigger .cart-badge-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--rose-pink);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
}

.header-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--deep-taupe);
    border: 1px solid var(--elegant-gold);
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-whatsapp-btn:hover {
    background-color: var(--elegant-gold);
    color: var(--white);
}

.menu-toggle-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-bar {
    width: 22px;
    height: 2px;
    background-color: var(--deep-taupe);
    transition: var(--transition-smooth);
}

/* 2. Hero Section
   ========================================================================== */
.hero-section-premium {
    position: relative;
    height: clamp(500px, 80vh, 750px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--premium-white);
    overflow: hidden;
}

.hero-content-wrapper {
    z-index: 2;
}

.hero-inner-box {
    max-width: 580px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-brand-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--nude-beige);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-main-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-description-para {
    color: rgba(249, 247, 245, 0.9);
    font-size: clamp(14px, 1.8vw, 17px);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-actions-row {
    display: flex;
    gap: 20px;
}

.hero-primary-btn {
    background-color: var(--elegant-gold);
    border-color: var(--elegant-gold);
}

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

.hero-secondary-btn {
    border-color: var(--white);
    color: var(--white);
}

.hero-secondary-btn:hover {
    background-color: var(--white);
    color: var(--deep-taupe);
}

/* Benefits Section */
.brand-benefits-section {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

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

.benefit-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon-box {
    font-size: 32px;
    color: var(--elegant-gold);
    margin-bottom: 15px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-taupe);
}

.benefit-desc {
    font-size: 13px;
    color: rgba(110, 91, 82, 0.75);
}

/* 3. Promotional Banners
   ========================================================================== */
.offer-banners-section {
    padding: 80px 0;
}

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

.offer-banner-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.banner-card-content {
    z-index: 2;
    color: var(--white);
}

.banner-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    background-color: var(--rose-pink);
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
}

.banner-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-action-btn {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.banner-action-btn:hover {
    color: var(--nude-beige);
}

/* 4. Skincare Round Categories
   ========================================================================== */
.category-grid-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.section-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--elegant-gold);
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    color: var(--deep-taupe);
}

.luxury-divider {
    width: 60px;
    height: 1px;
    background-color: var(--elegant-gold);
    margin: 15px auto 0;
}

.luxury-divider-left {
    width: 60px;
    height: 1px;
    background-color: var(--elegant-gold);
    margin: 15px 0 20px;
}

.categories-round-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.category-round-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-round-image-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid var(--nude-beige);
    box-shadow: 0 10px 30px rgba(110, 91, 82, 0.05);
    transition: var(--transition-smooth);
}

.category-round-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-round-card:hover .category-round-image-container {
    transform: scale(1.05);
    border-color: var(--elegant-gold);
    box-shadow: 0 15px 40px rgba(110, 91, 82, 0.1);
}

.category-round-card:hover .category-round-image-container img {
    transform: scale(1.08);
}

.category-round-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--deep-taupe);
}

/* 5. Premium Product Cards
   ========================================================================== */
.products-showcase-section {
    padding: 100px 0;
}

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

.product-premium-card {
    display: flex;
    flex-direction: column;
}

.product-card-image-box {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--premium-white);
    border: 1px solid rgba(110, 91, 82, 0.04);
}

.product-main-img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--rose-pink);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--border-radius-sm);
    z-index: 5;
}

.product-hover-overlay-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background-image: linear-gradient(transparent, rgba(110, 91, 82, 0.15));
    transition: var(--transition-smooth);
    opacity: 0;
    z-index: 6;
}

.product-premium-card:hover .product-hover-overlay-actions {
    bottom: 0;
    opacity: 1;
}

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

.prod-action-trigger {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--deep-taupe);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.prod-action-trigger:hover {
    background-color: var(--elegant-gold);
    color: var(--white);
}

.product-card-info-box {
    padding: 20px 0;
}

.product-card-sku {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(110, 91, 82, 0.5);
    display: block;
    margin-bottom: 5px;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-card-price-row {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-taupe);
    margin-bottom: 15px;
}

.price-original-struck {
    text-decoration: line-through;
    color: rgba(110, 91, 82, 0.4);
    margin-right: 8px;
    font-size: 13px;
}

.price-active {
    color: var(--elegant-gold);
}

.product-card-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-block-sim {
    width: 100%;
}

.product-whatsapp-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background-color: transparent;
    color: rgba(110, 91, 82, 0.8);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.product-whatsapp-inquiry-btn:hover {
    border-color: #25D366;
    color: #25D366;
    background-color: rgba(37, 211, 102, 0.02);
}

/* 6. About Us Heritage Preview
   ========================================================================== */
.about-us-preview-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-preview-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-preview-image-box {
    flex: 1;
    position: relative;
}

.main-about-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
}

.floating-badge-about {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--nude-beige);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 40px rgba(110, 91, 82, 0.08);
    text-align: center;
    border: 1px solid var(--elegant-gold);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--deep-taupe);
    line-height: 1.1;
}

.badge-text {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--elegant-gold);
}

.about-preview-text-box {
    flex: 1.2;
}

.about-tag-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--elegant-gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
}

.about-preview-title {
    font-size: 36px;
    line-height: 1.3;
}

.about-preview-para {
    font-size: 15px;
    color: rgba(110, 91, 82, 0.85);
    margin-bottom: 25px;
}

.about-benefits-bullet-list {
    list-style: none;
    margin-bottom: 35px;
}

.about-benefits-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--deep-taupe);
}

.about-benefits-bullet-list li i {
    color: var(--elegant-gold);
}

/* 7. Home Newsletter & Contact CTA
   ========================================================================== */
.home-contact-cta-section {
    padding: 100px 0;
}

.home-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-cta-box-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.home-cta-box-text p {
    font-size: 15px;
    margin-bottom: 30px;
}

.wa-cta-btn {
    background-color: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.wa-cta-btn:hover {
    background-color: transparent;
    color: #25D366;
    border-color: #25D366;
}

.home-newsletter-box {
    background-color: var(--white);
    padding: 40px;
}

.box-newsletter-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.newsletter-form-home {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.home-news-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    background-color: var(--premium-white);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--deep-taupe);
}

.home-news-submit {
    background-color: var(--deep-taupe);
    border-color: var(--deep-taupe);
}

/* 8. Modern Single Product Layout
   ========================================================================== */
.woo-single-product-container {
    padding: 80px 0;
}

.luxury-product-detail-flex {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 80px;
    margin-bottom: 100px;
}

.product-gallery-column {
    position: relative;
}

.luxury-sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--rose-pink);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    z-index: 5;
}

.product-main-gallery-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.luxury-gallery-img-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-gallery-thumbnails-flex {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumb-card {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-card.active {
    border-color: var(--elegant-gold);
}

.product-meta-header-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(110, 91, 82, 0.5);
    margin-bottom: 15px;
}

.product-cat-tag a {
    color: var(--elegant-gold);
}

.product-detail-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 15px;
}

.product-reviews-stars-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.stars-gold {
    color: #F5A623;
    font-size: 13px;
}

.reviews-count-text {
    font-size: 13px;
    color: rgba(110, 91, 82, 0.6);
}

.product-detail-price-box {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--deep-taupe);
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.product-detail-price-box ins {
    color: var(--elegant-gold);
    text-decoration: none;
}

.product-detail-price-box del {
    color: rgba(110, 91, 82, 0.35);
    font-size: 0.7em;
    margin-right: 10px;
}

.product-detail-short-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.product-add-to-cart-wrapper-luxury {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    margin-bottom: 40px;
}

.woocommerce-variation-add-to-cart, .cart {
    display: flex !important;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--white);
    padding: 4px 8px;
    height: 48px;
}

.quantity input {
    border: none;
    background: none;
    width: 40px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-taupe);
}

.quantity input:focus {
    outline: none;
}

.single_add_to_cart_button {
    height: 48px;
    padding: 0 40px !important;
    background-color: var(--deep-taupe) !important;
    border-color: var(--deep-taupe) !important;
    color: var(--premium-white) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: var(--border-radius-lg) !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
}

.single_add_to_cart_button:hover {
    background-color: transparent !important;
    color: var(--deep-taupe) !important;
    border-color: var(--deep-taupe) !important;
}

.whatsapp-direct-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    width: 100%;
    background-color: transparent;
    color: #25D366;
    border: 1px solid #25D366;
    border-radius: var(--border-radius-lg);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.whatsapp-direct-checkout-btn:hover {
    background-color: #25D366;
    color: var(--white);
}

/* Accordion Tab Styles */
.product-luxury-accordions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: var(--white);
    overflow: hidden;
}

.accordion-toggle-btn {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-taupe);
    text-align: left;
    transition: var(--transition-smooth);
}

.accordion-toggle-btn i {
    font-size: 14px;
    color: var(--elegant-gold);
}

.accordion-toggle-btn span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-content-panel {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px dashed rgba(110, 91, 82, 0.08);
    padding-top: 15px;
}

.accordion-item.active .accordion-content-panel {
    display: block;
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Related Products Grid overrides */
.related-products-luxury-section {
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.related-products-luxury-section ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
}

/* 9. Advanced Shop Filter Drawer
   ========================================================================== */
.shop-archive-container {
    padding: 80px 0;
}

.shop-banner-luxury {
    height: clamp(240px, 30vh, 320px);
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    padding: 40px 60px;
    margin-bottom: 60px;
    color: var(--white);
}

.shop-banner-luxury .banner-inner-content {
    max-width: 500px;
}

.shop-banner-luxury .banner-badge {
    background-color: var(--elegant-gold);
    color: var(--white);
    margin-bottom: 10px;
}

.shop-main-title {
    color: var(--white);
    margin-bottom: 10px;
}

.shop-subtitle {
    color: rgba(249, 247, 245, 0.9);
    font-size: 14px;
}

.shop-filter-sorting-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.filter-drawer-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--elegant-gold);
    color: var(--deep-taupe);
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.filter-drawer-toggle-btn:hover {
    background-color: var(--elegant-gold);
    color: var(--white);
}

.sorting-select-luxury select {
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--deep-taupe);
    outline: none;
}

.shop-main-columns-layout {
    display: flex;
    gap: 40px;
    position: relative;
}

.shop-products-grid-column {
    flex: 1;
}

/* Sidebar filter drawer details */
.shop-filters-sidebar-drawer {
    width: 320px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    align-self: flex-start;
    display: none; /* Desktop togglable sidebar drawer */
}

.shop-filters-sidebar-drawer.active {
    display: block;
}

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

.drawer-header-filters h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 0;
}

.drawer-close-filters-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(110, 91, 82, 0.4);
}

.filter-widget-box {
    margin-bottom: 35px;
}

.filter-widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(110, 91, 82, 0.05);
    padding-bottom: 5px;
}

.filter-list-checkboxes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-list-checkboxes a {
    font-size: 14px;
    color: rgba(110, 91, 82, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-list-checkboxes a i {
    font-size: 10px;
    color: var(--elegant-gold);
    transition: var(--transition-smooth);
}

.filter-list-checkboxes a:hover i {
    transform: translateX(4px);
}

.price-slider-simulation-container {
    padding: 10px 0;
}

.price-slider-bar {
    width: 100%;
    accent-color: var(--elegant-gold);
    cursor: pointer;
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    color: rgba(110, 91, 82, 0.5);
    margin-top: 8px;
}

#current-price-label {
    color: var(--elegant-gold);
    font-weight: 700;
}

.no-products-found-shop {
    padding: 60px;
    text-align: center;
}

.no-products-found-shop i {
    font-size: 42px;
    color: var(--elegant-gold);
    margin-bottom: 20px;
}

.no-products-found-shop h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.no-products-found-shop p {
    margin-bottom: 25px;
}

/* Pagination Overrides */
.shop-pagination-row-luxury {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.woocommerce-pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
}

.woocommerce-pagination ul li span.current {
    background-color: var(--deep-taupe);
    color: var(--white);
    border-color: var(--deep-taupe);
}

.woocommerce-pagination ul li a, .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.woocommerce-pagination ul li a:hover {
    border-color: var(--elegant-gold);
    color: var(--elegant-gold);
}

/* 10. Modern Cart & Checkout Tables
   ========================================================================== */
.cart-page-luxury-container, .checkout-page-luxury-container {
    padding: 80px 0;
}

.cart-flex-columns-layout, .checkout-flex-columns-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.woocommerce-cart-form__contents-luxury {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(110, 91, 82, 0.02);
}

.woocommerce-cart-form__contents-luxury th {
    background-color: var(--nude-beige);
    padding: 18px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-taupe);
    text-align: left;
}

.woocommerce-cart-form__contents-luxury td {
    padding: 20px;
    border-bottom: 1px solid rgba(110, 91, 82, 0.08);
    font-size: 14px;
}

.cart-item-thumbnail-link img {
    width: 65px;
    height: 65px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.cart-item-title-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

.remove-luxury-btn {
    font-size: 24px;
    color: rgba(110, 91, 82, 0.35);
    cursor: pointer;
}

.remove-luxury-btn:hover {
    color: #FF5A5F;
}

.actions-coupon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px !important;
}

.coupon-box-luxury {
    display: flex;
    gap: 10px;
}

.coupon-luxury-input {
    padding: 10px 20px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    background-color: var(--premium-white);
    font-family: var(--font-body);
    font-size: 12px;
}

.cart-totals-luxury-card {
    background-color: var(--white);
    padding: 40px;
}

.totals-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.cart-totals-luxury-card table {
    width: 100%;
    margin-bottom: 25px;
    border-collapse: collapse;
}

.cart-totals-luxury-card table tr th, .cart-totals-luxury-card table tr td {
    padding: 12px 0;
    font-size: 14px;
}

.cart-totals-luxury-card table tr th {
    text-align: left;
    font-weight: 600;
    color: var(--deep-taupe);
}

.cart-totals-luxury-card table tr td {
    text-align: right;
    font-weight: 600;
}

.cart-subtotal td, .order-total td {
    color: var(--elegant-gold);
}

.wc-proceed-to-checkout .checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    background-color: var(--deep-taupe);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.wc-proceed-to-checkout .checkout-button:hover {
    background-color: var(--elegant-gold);
}

/* Empty cart style */
.empty-cart-page-wrapper {
    padding: 80px;
    background-color: var(--white);
}

.empty-cart-page-wrapper .icon-empty {
    font-size: 48px;
    color: var(--elegant-gold);
    margin-bottom: 20px;
}

/* Checkout Form details */
.checkout-section-luxury-box {
    background-color: var(--white);
    padding: 40px;
}

.checkout-heading {
    font-size: 22px;
}

.farmelle-checkout-input-group {
    margin-bottom: 15px;
}

.luxury-input-field {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--premium-white);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    color: var(--deep-taupe);
    transition: var(--transition-smooth);
}

.luxury-input-field:focus {
    border-color: var(--elegant-gold);
    background-color: var(--white);
}

/* 11. Multi-Column Footer
   ========================================================================== */
.site-footer {
    background-color: #1C1A19;
    color: rgba(249, 247, 245, 0.7);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--premium-white);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(249, 247, 245, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(249, 247, 245, 0.7);
    font-size: 13px;
}

.social-link:hover {
    border-color: var(--elegant-gold);
    color: var(--white);
    background-color: var(--elegant-gold);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--premium-white);
    margin-bottom: 25px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: rgba(249, 247, 245, 0.7);
    font-size: 13px;
}

.footer-links-list a:hover {
    color: var(--elegant-gold);
}

.newsletter-sub {
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(249, 247, 245, 0.2);
    padding-bottom: 10px;
}

.footer-email-input {
    flex: 1;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--premium-white);
    outline: none;
}

.footer-email-input::placeholder {
    color: rgba(249, 247, 245, 0.4);
}

.footer-submit-btn {
    background: none;
    border: none;
    color: var(--elegant-gold);
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    font-size: 11px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    color: rgba(249, 247, 245, 0.4);
}

/* 12. Floating Elements (WhatsApp, Cart overlay)
   ========================================================================== */
.floating-whatsapp-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
}

.whatsapp-ripple-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #25D366;
    z-index: -1;
    animation: whatsappPulse 2s infinite ease-out;
}

.whatsapp-ripple-ring.ring-2 {
    animation-delay: 0.5s;
}

/* Search popup overlay */
.header-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(110, 91, 82, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.header-search-overlay.active {
    display: flex;
}

.search-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 48px;
    color: var(--premium-white);
    background: none;
    border: none;
    cursor: pointer;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.search-overlay-form {
    display: flex;
    border-bottom: 2px solid var(--elegant-gold);
    padding-bottom: 15px;
}

.search-overlay-input {
    flex: 1;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--premium-white);
    outline: none;
}

.search-overlay-input::placeholder {
    color: rgba(249, 247, 245, 0.3);
}

.search-overlay-submit {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--elegant-gold);
    cursor: pointer;
}

/* Cart slideout Drawer */
.mini-cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1005;
    display: none;
}

.mini-cart-drawer-overlay.active {
    display: block;
}

.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: var(--premium-white);
    box-shadow: -10px 0 40px rgba(110, 91, 82, 0.08);
    z-index: 1006;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

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

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

.cart-drawer-title {
    font-size: 18px;
    margin-bottom: 0;
}

.cart-drawer-title i {
    color: var(--elegant-gold);
    margin-right: 8px;
}

.cart-drawer-close {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(110, 91, 82, 0.4);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

/* Simulated Empty Cart Drawer */
.sim-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.sim-cart-empty i {
    font-size: 42px;
    color: var(--nude-beige);
    margin-bottom: 20px;
}

.sim-cart-empty p {
    margin-bottom: 30px;
}

/* Drawer list styling simulation */
.sim-cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.sim-cart-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid rgba(110, 91, 82, 0.05);
    padding-bottom: 15px;
}

.sim-cart-item img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.sim-cart-item-details {
    flex: 1;
}

.sim-cart-item-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.sim-cart-item-price {
    font-size: 13px;
    color: var(--elegant-gold);
    font-weight: 600;
}

.sim-cart-item-remove {
    font-size: 18px;
    color: rgba(110, 91, 82, 0.3);
    cursor: pointer;
    background: none;
    border: none;
}

.sim-cart-totals-panel {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.sim-cart-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 16px;
}

.sim-cart-total-row span:last-child {
    color: var(--elegant-gold);
}

.sim-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mobile responsive navigation drawer */
.mobile-navigation-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--premium-white);
    box-shadow: 10px 0 40px rgba(0,0,0,0.1);
    z-index: 1007;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.mobile-navigation-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-brand-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--deep-taupe);
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-drawer-close {
    font-size: 28px;
    background: none;
    border: none;
    color: rgba(110, 91, 82, 0.4);
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.mobile-search-form {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 25px;
}

.mobile-search-input {
    flex: 1;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
}

.mobile-search-submit {
    background: none;
    border: none;
    color: var(--elegant-gold);
}

.mobile-menu-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu-container ul li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.mobile-drawer-footer {
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
    padding-top: 25px;
}

.mobile-drawer-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    background-color: #25D366;
    color: var(--white);
    border-radius: var(--border-radius-lg);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mobile-drawer-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-drawer-lang-switcher a.active {
    color: var(--elegant-gold);
}

/* ==========================================================================
   13. Multilingual RTL OVERRIDES (Arabic Support)
   ========================================================================== */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .brand-title {
    letter-spacing: 0;
}

body.rtl .brand-tagline {
    letter-spacing: 0.1em;
}

body.rtl .main-navigation ul li a::after {
    left: auto;
    right: 0;
}

body.rtl .polylang-switcher li.current-lang a {
    border-bottom: 1px solid var(--elegant-gold);
}

body.rtl .simulated-lang-toggle .lang-dropdown {
    right: auto;
    left: 0;
}

body.rtl .header-cart-trigger .cart-badge-count {
    right: auto;
    left: -10px;
}

body.rtl .hero-inner-box {
    animation: fadeInUpRTL 1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.rtl .hero-brand-badge {
    letter-spacing: 0.1em;
}

body.rtl .hero-bottom-curve {
    transform: scaleX(-1);
}

body.rtl .banner-badge {
    letter-spacing: 0;
}

body.rtl .banner-action-btn i {
    transform: scaleX(-1);
}

body.rtl .section-badge {
    letter-spacing: 0.1em;
}

body.rtl .product-card-badge {
    left: auto;
    right: 15px;
}

body.rtl .product-whatsapp-inquiry-btn i,
body.rtl .header-whatsapp-btn i,
body.rtl .mobile-drawer-whatsapp i {
    margin-left: 5px;
    margin-right: 0;
}

body.rtl .floating-whatsapp-trigger {
    right: auto;
    left: 30px;
}

body.rtl .whatsapp-ripple-ring {
    left: auto;
    right: 0;
}

body.rtl .about-preview-bullet-list li i {
    margin-left: 10px;
    margin-right: 0;
}

body.rtl .about-benefits-bullet-list li i {
    transform: scaleX(-1);
}

body.rtl .about-preview-image-box .floating-badge-about {
    right: auto;
    left: -20px;
}

body.rtl .about-preview-text-box {
    text-align: right;
}

body.rtl .luxury-divider-left {
    margin-left: auto;
    margin-right: 0;
}

body.rtl .mini-cart-drawer {
    right: auto;
    left: -450px;
    box-shadow: 10px 0 40px rgba(110, 91, 82, 0.08);
}

body.rtl .mini-cart-drawer.active {
    left: 0;
    right: auto;
}

body.rtl .cart-drawer-title i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl .mobile-navigation-drawer {
    left: auto;
    right: -320px;
}

body.rtl .mobile-navigation-drawer.active {
    right: 0;
    left: auto;
}

body.rtl .footer-submit-btn i {
    transform: scaleX(-1);
}

body.rtl .footer-bottom-flex {
    flex-direction: row-reverse;
}

/* Woocommerce details RTL */
body.rtl .luxury-sale-badge {
    left: auto;
    right: 20px;
}

body.rtl .product-reviews-stars-row {
    gap: 15px;
}

body.rtl .product-detail-price-box del {
    margin-right: 0;
    margin-left: 10px;
}

body.rtl .accordion-toggle-btn {
    text-align: right;
}

body.rtl .accordion-toggle-btn span {
    gap: 12px;
}

body.rtl .accordion-toggle-btn span i {
    order: -1;
}

body.rtl .shop-banner-luxury {
    text-align: right;
}

body.rtl .filter-drawer-toggle-btn i {
    margin-left: 8px;
    margin-right: 0;
}

body.rtl .filter-list-checkboxes a i {
    transform: scaleX(-1);
}

body.rtl .filter-list-checkboxes a:hover i {
    transform: translateX(-4px);
}

body.rtl .price-range-labels {
    flex-direction: row-reverse;
}

body.rtl .woocommerce-cart-form__contents-luxury th {
    text-align: right;
}

body.rtl .cart-totals-luxury-card table tr th {
    text-align: right;
}

body.rtl .cart-totals-luxury-card table tr td {
    text-align: left;
}

/* ==========================================================================
   14. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes whatsappPulse {
    from {
        transform: scale(1);
        opacity: 0.8;
    }
    to {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ==========================================================================
   15. RESPONSIVE MOBILE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .banners-grid .offer-banner-card:last-child {
        grid-column: span 2;
    }
    
    .products-grid-showcase, .products-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .about-preview-flex {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-preview-image-box, .about-preview-text-box {
        width: 100%;
    }
    
    .about-preview-image-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .luxury-product-detail-flex {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .shop-main-columns-layout {
        flex-direction: column;
    }
    
    .shop-filters-sidebar-drawer {
        width: 100%;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        z-index: 1010;
        border-radius: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        display: block !important;
        transition: var(--transition-smooth);
    }
    
    body.rtl .shop-filters-sidebar-drawer {
        right: auto;
        left: -100%;
    }
    
    .shop-filters-sidebar-drawer.active {
        right: 0;
    }
    
    body.rtl .shop-filters-sidebar-drawer.active {
        left: 0;
        right: auto;
    }
    
    .shop-drawer-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.4);
        z-index: 1009;
        display: none;
    }
    
    .shop-drawer-backdrop.active {
        display: block;
    }
    
    .cart-flex-columns-layout, .checkout-flex-columns-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-navigation, .header-whatsapp-btn {
        display: none;
    }
    
    .menu-toggle-hamburger {
        display: flex;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banners-grid .offer-banner-card:last-child {
        grid-column: span 1;
    }
    
    .products-grid-showcase, .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .home-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form-home {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    body.rtl .footer-bottom-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid-showcase, .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-round-flex {
        gap: 25px;
    }
    
    .category-round-image-container {
        width: 110px;
        height: 110px;
    }
    
    .header-container {
        padding: 12px 15px;
    }
}
