﻿@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');
/* =============================================
   DAR MODEXA — Dubai Luxury Boutique v6.0
   ============================================= */

/* --- Design Tokens --- */
:root {
    --bg: #F2F2F2;
    --card: #FFFFFF;
    --surface: #FFFFFF;
    --surface-alt: #EDEBE8;
    --brand: #B8963C;
    --brand-soft: #E6D08F;
    --brand-gradient: linear-gradient(135deg, #B8963C 0%, #E6D08F 50%, #B8963C 100%);
    --accent: #0A0A0A;
    --gold: #B8963C;
    --gold-soft: rgba(184, 150, 60, .08);
    --text: #0A0A0A;
    --muted: #999;
    --line: #E8E8E8;
    --border: rgba(0, 0, 0, .04);
    --shadow-sm: 0 2px 14px rgba(0, 0, 0, 0.025);
    --shadow: 0 14px 45px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 22px 55px rgba(0, 0, 0, 0.08);
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-pill: 999px;
    --pad: 26px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: "Tajawal", "Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

    /* --- Dubai Luxury Boutique Variables --- */
    --royal-black: #0A0A0A;
    --royal-gold: #B8963C;
    --royal-gold-light: #E6D08F;
    --royal-gold-gradient: linear-gradient(135deg, #B8963C 0%, #CDAF58 35%, #E6D08F 60%, #B8963C 100%);

    /* Lux Theme */
    --lux-bg: #F2F2F2;
    --lux-card: #ffffff;
    --lux-text: #0A0A0A;
    --lux-muted: rgba(10, 10, 10, .45);
    --lux-line: rgba(0, 0, 0, .04);
    --lux-shadow: 0 22px 65px rgba(0, 0, 0, .06);
    --lux-shadow-soft: 0 10px 30px rgba(0, 0, 0, .04);
    --lux-r: 16px;
    --lux-r-sm: 12px;
    --lux-pill: 999px;
    --lux-gold: #B8963C;
    --lux-gold-2: #E6D08F;
    --lux-black: #0A0A0A;
    --lux-focus: rgba(184, 150, 60, .18);

    /* Pro Theme */
    --pro-glow: rgba(184, 150, 60, .12);
    --pro-glow-2: rgba(230, 208, 143, .18);
    --pro-ink: #0A0A0A;
    --pro-card: rgba(255, 255, 255, .97);
    --pro-line: rgba(0, 0, 0, .03);

    /* Layout Dimensions */
    --bottom-nav-h: 72px;
    --header-height: 78px;
    --bottom-bar-height: 60px;
    --header-h-final: 76px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    /* Airy line height */
    color: var(--text);
    background: var(--bg);
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: var(--font);
    cursor: pointer;
    user-select: none;
}

/* --- Typography --- */
h1,
h2,
h3 {
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 10px;
    color: var(--accent);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--brand);
}

/* --- Utility --- */
.press:active,
button:active {
    transform: scale(0.97);
}

/* =============================================
   HEADER — Clean White & Gold
   ============================================= */
/* =============================================
   HEADER — Clean White & Gold (Refined)
   ============================================= */
/* =============================================
   HEADER — Clean White & Gold (Sticky & Compact)
   ============================================= */
.header {
    position: sticky;
    top: 0;
    padding: 12px 20px;
    /* Compact padding */
    background: #ffffff;
    /* Solid white */
    z-index: 3000;
    /* High z-index as requested */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    /* Requested shadow */
    width: 100%;
    transition: all 0.3s ease;
}

/* Fix sticky header covering content */
.main-content {
    padding-top: 75px !important;
    /* Exact offset */
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 24px;
    padding: 8px;
    border-radius: var(--r-sm);
    /* Ensure button doesn't force excessive height */
    line-height: 1;
}

.menu-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.store-label {
    font-size: 12px;
    /* Slightly clearer */
    color: var(--brand);
    /* Gold highlight */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}

.logo-text h1 {
    font-size: 24px;
    color: #D6B56D !important;
    /* Gold */
    margin: 0;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    white-space: nowrap;
}

/* Optional: Elegant dot highlight */
.logo-text h1::after {
    content: ".";
    color: var(--brand);
    display: inline-block;
    margin-right: 2px;
}

/* Hide tagline for a cleaner, tighter header */
.logo-tagline-new {
    display: none;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .header {
        padding: 8px var(--pad);
    }

    .logo-text h1 {
        font-size: 20px;
        /* Prevent breaking on small screens */
    }

    .store-label {
        font-size: 10px;
    }

    .header-top {
        gap: 8px;
    }
}

.header-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.icon-link,
.header-search-btn {
    position: relative;
    color: var(--accent);
    font-size: 20px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: none;
    border: none;
    border-radius: var(--r-sm);
    text-decoration: none;
}

.icon-link:hover,
.header-search-btn:hover {
    background: rgba(0, 0, 0, .06);
}

.badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--accent);
    color: var(--brand);
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
}

/* --- Side Menu --- */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 2000;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
}

.side-menu.active {
    right: 0;
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(3px);
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--brand);
    padding: 24px 20px;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
}

.close-menu {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 32px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.close-menu:hover {
    transform: rotate(90deg);
}

.menu-content nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item {
    color: var(--accent);
    text-decoration: none;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    transition: var(--transition);
    font-weight: 500;
    font-size: 15px;
    border: 1px solid transparent;
}

.menu-item:hover,
.menu-item.active {
    background: rgba(0, 0, 0, .08);
    border-color: rgba(0, 0, 0, .1);
}

/* --- Search Overlay --- */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    padding: 16px var(--pad);
    box-shadow: var(--shadow-md);
    z-index: 1001;
    display: none;
    animation: slideDown .25s ease forwards;
    border-bottom: 2px solid var(--brand);
}

.search-overlay.active {
    display: block;
}

@keyframes slideDown {
    from {
        transform: translateY(-8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-section {
    margin-bottom: 24px;
}

.search-input,
.search-overlay .search-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--line);
    border-radius: var(--r-lg);
    font-size: 16px;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--bg);
}

.search-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(214, 181, 109, .15);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
    padding: 16px var(--pad);
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Titles --- */
.section-title {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 8px;
    font-weight: 700;
    border-bottom: 2px solid var(--brand);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================
   SLIDER — Compact & Elegant
   ============================================= */
.slider-container {
    width: 100%;
    height: 130px;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #222 100%);
    padding: 20px 24px;
    text-align: center;
}

.slide-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.4;
    max-width: 600px;
}

.slider-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 22px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--r-lg);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.slider-btn:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--brand);
    transform: scale(1.4);
    box-shadow: 0 0 6px rgba(214, 181, 109, .4);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: #fafafa;
    padding: 20px 0;
    margin-bottom: 28px;
    border-radius: var(--r-md);
}

.trust-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 28px;
    margin-bottom: 6px;
}

.trust-text {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

/* =============================================
   BRANDS
   ============================================= */
.brands-section {
    margin-bottom: 32px;
    max-width: 100% !important;
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories-section {
    margin-bottom: 32px;
    max-width: 100% !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.category-card {
    background: var(--accent);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--brand);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.category-card h3 {
    color: var(--brand);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
}

/* =============================================
   PRODUCT CARDS — Star of the Show
   ============================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: rgba(0, 0, 0, 0.06);
}

.product-image {
    width: 100%;
    height: 220px;
    /* Taller image for luxury feel */
    object-fit: cover;
    background: #FAFAFA;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-image-link {
    cursor: pointer;
    display: block;
    overflow: hidden;
    background: #FAFAFA;
}

.product-image-link:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.product-title-link:hover {
    color: var(--brand-dark);
}

.product-price {
    color: var(--accent);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.old-price {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    margin-left: 6px;
}

.sale-price {
    color: #c0392b;
    font-size: 17px;
    font-weight: 800;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 8px;
}

/* --- Cart / Fav Buttons in Card --- */
.btn-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 17px;
}

.btn-add-cart {
    background: var(--accent);
    color: var(--brand);
}

.btn-add-cart:hover {
    background: #222;
    transform: scale(1.08);
}

.btn-add-cart:active {
    transform: scale(.93);
}

.btn-fav {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.btn-fav:hover {
    transform: scale(1.15);
}

.btn-fav.active {
    color: #c0392b;
}

.btn-icon {
    background: var(--accent);
    color: var(--brand);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: #222;
    transform: scale(1.08);
}

.btn-icon:active {
    transform: scale(.93);
}

/* =============================================
   SKELETON LOADER
   ============================================= */
.skeleton-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.skeleton-img {
    height: 170px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 14px;
    margin: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* =============================================
   FILTERS — Chips Style
   ============================================= */
.filters-section {
    margin-bottom: 20px;
}

.filter-type-scroller,
.subcategory-btns,
.sizes-filter {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    margin: 12px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) transparent;
    -webkit-overflow-scrolling: touch;
}

.type-chip,
.filter-btn,
.size-btn,
.color-btn {
    padding: 10px 20px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--muted);
    flex-shrink: 0;
    font-family: var(--font);
    font-weight: 500;
}

.type-chip:hover,
.filter-btn:hover,
.size-btn:hover,
.color-btn:hover {
    border-color: var(--brand);
    color: var(--text);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.type-chip.active,
.filter-btn.active,
.size-btn.active,
.color-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Shoe size input */
.shoe-search-wrapper {
    margin-bottom: 16px;
    background: var(--surface);
    padding: 14px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.shoe-search-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
}

.shoe-search-input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--line);
    border-radius: var(--r-md);
    font-size: 16px;
    text-align: center;
    font-family: var(--font);
    transition: var(--transition);
}

.shoe-search-input:focus {
    border-color: var(--brand);
    outline: none;
}

/* Price filter */
.price-filter-wrapper h4 {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text);
}

/* =============================================
   BUTTONS — Global
   ============================================= */
.btn {
    padding: 11px 20px;
    border: none;
    border-radius: var(--r-md);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font);
}

.btn:active {
    transform: scale(.97);
}

.btn-primary {
    background: var(--accent);
    color: var(--brand);
}

.btn-primary:hover {
    background: #222;
}

.btn-secondary {
    background: #25D366;
    color: #fff;
}

.btn-secondary:hover {
    background: #1faf50;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brand);
    color: var(--brand-dark);
}

.btn-outline:hover {
    background: var(--brand);
    color: var(--accent);
}

.btn-danger {
    background: #c0392b;
    color: #fff;
}

.btn-danger:hover {
    background: #a93226;
}

.btn-small {
    padding: 7px 14px;
    font-size: 12px;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.product-detail .product-image {
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: var(--r-lg);
    object-fit: cover;
}

.product-detail .product-info {
    padding: 0;
}

.product-detail .product-title {
    font-size: 22px;
    margin-bottom: 12px;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.product-price-section {
    margin-bottom: 16px;
}

.product-description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.sizes-grid,
.colors-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.similar-section {
    margin-top: 40px;
}

.stock-note {
    background: #fafafa;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--muted);
    margin: 12px 0;
    border-right: 3px solid var(--brand);
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.quantity-selector h3 {
    margin: 0;
    font-size: 16px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    background: var(--accent);
    color: var(--brand);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #222;
}

.quantity-btn:active {
    transform: scale(.9);
}

.quantity-value {
    font-size: 18px;
    font-weight: 700;
    min-width: 36px;
    text-align: center;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    position: relative;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.cart-item-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--r-sm);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.cart-item-info p {
    color: var(--muted);
    margin-bottom: 4px;
    font-size: 13px;
}

.cart-item-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 16px;
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: #a93226;
    transform: scale(1.1);
}

.btn-remove {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-remove:hover {
    background: #a93226;
    transform: scale(1.1);
}

.cart-count-display {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.cart-total-display {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 14px;
}

.cart-summary {
    background: #fafafa;
    padding: 20px;
    border-radius: var(--r-md);
    margin-top: 16px;
}

.coupon-section {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.coupon-input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-family: var(--font);
}

.coupon-message {
    padding: 8px;
    border-radius: var(--r-sm);
    text-align: center;
    margin-bottom: 10px;
}

.coupon-message.success {
    background: #d4edda;
    color: #155724;
}

.coupon-message.error {
    background: #f8d7da;
    color: #721c24;
}

.total-section {
    margin-bottom: 16px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.total-row:last-child {
    border-bottom: none;
}

.total-row.final-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    padding-top: 12px;
    border-top: 2px solid var(--accent);
}

.discount-row {
    color: #c0392b;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.empty-message {
    text-align: center;
    padding: 48px 20px;
    font-size: 18px;
    color: var(--muted);
}

/* =============================================
   CHECKOUT
   ============================================= */
.checkout-container {
    max-width: 600px;
    margin: 0 auto;
}

.checkout-form {
    background: var(--surface);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(214, 181, 109, .12);
}

.order-summary {
    background: #fafafa;
    padding: 16px;
    border-radius: var(--r-md);
    margin-bottom: 16px;
}

.order-summary h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
}

.order-item:last-child {
    border-bottom: none;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background: var(--surface);
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    text-align: center;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-info p {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-btn {
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 14px;
}

.social-links {
    margin-bottom: 24px;
}

.social-links h4 {
    margin-bottom: 12px;
    color: var(--text);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    text-decoration: none;
    color: var(--text);
    margin-bottom: 8px;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--brand);
    background: rgba(214, 181, 109, .06);
}

.social-icon {
    font-size: 22px;
}

.working-hours {
    background: #fafafa;
    padding: 16px;
    border-radius: var(--r-sm);
}

.working-hours h4 {
    margin-bottom: 8px;
    color: var(--text);
}

.working-hours p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 14px;
}

/* =============================================
   TOAST — Unified
   ============================================= */
.toast {
    position: fixed;
    bottom: -80px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent);
    color: var(--brand);
    padding: 12px 28px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    z-index: 5000;
    transition: bottom .35s cubic-bezier(.4, 0, .2, 1);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.toast.show {
    bottom: 20px;
}

.error-msg {
    text-align: center;
    padding: 32px;
    color: #c0392b;
    font-size: 16px;
}

/* =============================================
   SHARE MODAL
   ============================================= */
.share-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.share-modal.show {
    display: flex;
    animation: fadeIn .25s ease;
}

.share-modal-content {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--r-lg);
    max-width: 360px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-md);
}

.share-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--muted);
}

.share-modal-close:hover {
    color: var(--accent);
}

.share-modal h3 {
    margin-bottom: 16px;
    color: var(--text);
}

.share-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: var(--transition);
}

.share-option:hover {
    background: #fafafa;
    border-color: var(--brand);
    transform: translateY(-2px);
}

.share-option-icon {
    font-size: 26px;
}

.share-option-text {
    font-size: 13px;
    font-weight: 600;
}

/* =============================================
   IMAGE MODAL
   ============================================= */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 4000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.image-modal.show {
    display: flex;
    animation: fadeIn .25s ease;
}

.image-modal img {
    max-width: 92%;
    max-height: 85vh;
    border-radius: var(--r-md);
    object-fit: contain;
}




.btn-action {
    background: var(--accent);
    color: var(--brand);
    border: none;
    padding: 12px 20px;
    border-radius: var(--r-md);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 6px;
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
}

.btn-action:hover {
    background: #222;
}

.btn-action:active {
    transform: scale(.97);
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: var(--brand);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* =============================================
   LOAD MORE BUTTON
   ============================================= */
.load-more-btn {
    display: block;
    margin: 24px auto;
    padding: 12px 36px;
    background: var(--accent);
    color: var(--brand);
    border: none;
    border-radius: var(--r-lg);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
}

.load-more-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

/* =============================================
   NO RESULTS — Styled
   ============================================= */
.no-results,
#noResults {
    text-align: center;
    padding: 48px 20px;
    color: var(--muted);
    font-size: 16px;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: .5;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (min-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-image {
        height: 200px;
    }

    .slider-container {
        height: 140px;
    }

    .slide-text {
        font-size: 24px;
    }

    h1 {
        font-size: 28px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-image {
        height: 220px;
    }

    .product-detail {
        grid-template-columns: 1fr 1fr;
    }

    .main-content {
        padding: 20px 24px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .products-grid {
        gap: 8px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 13px;
    }

    .product-price,
    .sale-price {
        font-size: 15px;
    }

    .btn-icon-circle {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .header {
        padding: 10px 12px;
    }

    .slider-container {
        height: 110px;
    }

    .slide-text {
        font-size: 16px;
    }
}


/* Header Responsive */
@media (max-width: 480px) {
    .logo-tagline-new {
        display: none;
    }
}

/* =============================================
/* =============================================
   MAIN FOOTER — Minimal Luxury
   ============================================= */
.main-footer {
    background: linear-gradient(to bottom, #FDFBF7, #F9F5EC);
    /* Soft Gold/Cream Gradient */
    color: var(--text);
    padding: 80px 0 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s ease-out, transform .5s ease-out;
}

.main-footer.footer-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 300px;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    border-bottom: none;
    padding-bottom: 0;
}

/* Small underline for headings */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: var(--brand);
    transition: width 0.3s;
}

.footer-col:hover h3::after {
    width: 50px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.footer-social a {
    font-size: 20px;
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: #fff;
}

.footer-social a:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: translateY(-4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
}

.footer-contact-list a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-contact-list a:hover {
    color: var(--brand-dark);
}

.footer-form textarea {
    width: 100%;
    height: 110px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-md);
    color: var(--text);
    padding: 16px;
    margin: 16px 0;
    font-family: var(--font);
    resize: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.footer-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 4px 16px rgba(214, 181, 109, 0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }
}

/* =============================================
   SEARCH OVERLAY
   ============================================= */
.search-results-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-radius: 0 0 16px 16px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #fafafa;
}

.search-result-item img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    background: #f9f9f9;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.search-result-price {
    color: var(--brand);
    font-size: 13px;
    font-weight: 700;
}

/* =============================================
   TRUST BAR — Vertical Minimal Stack
   ============================================= */
.trust-bar {
    background: transparent;
    padding: 20px 0;
    border: none;
    box-shadow: none;
}

.trust-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    padding: 20px;
    border-radius: var(--r-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: right;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 24px;
    color: var(--brand);
    background: rgba(214, 181, 109, 0.1);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.trust-text p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

/* =========================================================
   ABSHER STORE - LIGHT LUXURY THEME (ADD ONLY)
   Paste at END of styles.css
   ========================================================= */



/* Base */
html,
body {
    background: radial-gradient(1200px 600px at 20% -10%, rgba(216, 183, 104, .18), transparent 60%),
        radial-gradient(900px 520px at 95% 0%, rgba(17, 17, 17, .05), transparent 55%),
        var(--lux-bg) !important;
    color: var(--lux-text);
    font-family: Tahoma, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    padding-bottom: 26px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--lux-focus);
    outline-offset: 2px;
    border-radius: 12px;
}

/* Layout breath */
section {
    scroll-margin-top: 85px;
}

/* Header (Glass light) */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .84) !important;
    border-bottom: 1px solid var(--lux-line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-top {
    padding: 12px 14px !important;
    gap: 10px;
}

.logo-section .store-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 1000;
    color: #fff;
    background: linear-gradient(135deg, var(--lux-black), #2b2b2b);
    padding: 4px 10px;
    border-radius: var(--lux-pill);
    font-size: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.logo-section h1 {
    margin: 6px 0 0;
    font-weight: 1100;
    letter-spacing: .2px;
}

.logo-tagline-new {
    margin-top: 6px !important;
    font-weight: 900;
    color: var(--lux-muted);
    font-size: 12.5px;
}

/* Buttons (premium tap) */
button {
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.menu-btn,
.btn-icon,
.btn-icon-circle,
.toggle-fav {
    border: 1px solid var(--lux-line) !important;
    background: rgba(255, 255, 255, .92) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .07);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

/* CLASSIC HEART BUTTON (On Cards) - No Background */
.btn-fav {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 8px !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #888 !important;
    /* Default Gray */
    transition: transform 0.2s ease, color 0.2s ease !important;
}

.btn-fav svg {
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
    fill: none !important;
    /* Default empty */
    stroke-width: 1.5 !important;
}

.btn-fav.active,
.btn-fav:hover {
    color: #e74c3c !important;
    /* Red on hover/active */
    background: transparent !important;
    transform: scale(1.1);
}

.btn-fav.active svg {
    fill: currentColor !important;
    stroke: none !important;
}

/* CLASSIC CART BUTTON (On Cards) - No Background */
.btn-icon-circle.add-to-cart {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #333 !important;
    /* Darker clean icon */
    width: auto !important;
    height: auto !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.2s ease !important;
}

.btn-icon-circle.add-to-cart:hover {
    background: transparent !important;
    transform: scale(1.1) !important;
}


.menu-btn:active,
.btn-icon:active,
.btn-icon-circle:active,
.btn-fav:active,
.toggle-fav:active {
    transform: scale(.985);
}

/* Primary cart icon button - REMOVED TO ALLOW CLASSIC STYLE */
/* 
.btn-icon-circle.add-to-cart {
    background: linear-gradient(135deg, var(--lux-black), #2a2a2a) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .14) !important;
} 
*/

/* Fav state */
.toggle-fav.active {
    background: rgba(216, 183, 104, .18) !important;
    border-color: rgba(216, 183, 104, .38) !important;
}

/* Titles */
.section-title {
    font-weight: 1100;
    letter-spacing: .15px;
    margin: 16px 0 12px !important;
}

/* Grid */
.products-grid {
    display: grid;
    gap: 14px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px 2px;
}

@media (min-width: 720px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Product Card (lux) */
.product-card {
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid var(--lux-line) !important;
    border-radius: var(--lux-r) !important;
    overflow: hidden;
    box-shadow: var(--lux-shadow-soft);
    transition: transform .14s ease, box-shadow .14s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lux-shadow);
}

.product-image-link img,
.product-card img {
    width: 100% !important;
    height: 215px !important;
    object-fit: cover !important;
    background: #f1f1f1 !important;
    border-bottom: 1px solid var(--lux-line);
}

.product-info {
    padding: 12px 12px 14px !important;
}

.product-title {
    font-weight: 1050 !important;
    line-height: 1.35;
    font-size: 14.6px;
    margin: 0 0 10px;
}

/* Price */
.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 1050;
}

.old-price {
    color: rgba(0, 0, 0, .40);
    text-decoration: line-through;
    font-weight: 950;
}

.sale-price {
    background: linear-gradient(135deg, rgba(216, 183, 104, .25), rgba(236, 217, 166, .35));
    border: 1px solid rgba(216, 183, 104, .32);
    padding: 5px 10px;
    border-radius: var(--lux-pill);
    font-weight: 1100;
}

/* Actions row */
.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

/* Toast */
.toast,
#toast {
    background: rgba(17, 17, 17, .92) !important;
    color: #fff !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
    padding: 10px 14px !important;
    font-weight: 950;
}

/* Inputs (soft) */
input,
textarea,
select {
    border-radius: 16px !important;
    border: 1px solid var(--lux-line) !important;
    padding: 10px 12px !important;
    font-family: inherit;
    background: rgba(255, 255, 255, .96) !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(216, 183, 104, .52) !important;
    box-shadow: 0 0 0 3px rgba(216, 183, 104, .20) !important;
}

/* Cart (premium cards) */
.cart-item {
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid var(--lux-line) !important;
    border-radius: var(--lux-r) !important;
    box-shadow: var(--lux-shadow-soft);
    padding: 10px !important;
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

.cart-img {
    width: 88px !important;
    height: 88px !important;
    border-radius: 18px !important;
    object-fit: cover !important;
    border: 1px solid var(--lux-line);
}

.cart-info h3 {
    margin: 0 0 6px;
    font-weight: 1100;
    font-size: 14px;
    line-height: 1.35;
}

.cart-meta {
    display: flex;
    gap: 10px;
    color: var(--lux-muted);
    font-weight: 900;
    font-size: 13px;
}

.item-total {
    margin-top: 6px;
    font-weight: 1100;
    color: var(--lux-black);
}

/* Remove X top-left */
.cart-item .remove-btn {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 14px !important;
    border: 0 !important;
    background: linear-gradient(135deg, var(--lux-black), #2a2a2a) !important;
    color: #fff !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .20);
    cursor: pointer;
    transition: transform .12s ease;
}

.cart-item .remove-btn:active {
    transform: scale(.985);
}

/* Footer (clean + luxury) */
.main-footer {
    margin-top: 26px !important;
    border-top: 1px solid var(--lux-line);
    background: rgba(255, 255, 255, .92);
}

.main-footer .footer-container {
    padding: 16px 14px !important;
}

.main-footer h3 {
    font-weight: 1100;
    margin-bottom: 10px;
}

.main-footer p,
.main-footer a {
    color: rgba(0, 0, 0, .70);
    font-weight: 850;
    line-height: 1.75;
}

.main-footer .social-icons a {
    display: inline-block;
    margin: 6px 6px 0 0;
    padding: 8px 10px;
    border-radius: var(--lux-pill);
    border: 1px solid var(--lux-line);
    background: rgba(0, 0, 0, .03);
    transition: transform .12s ease, box-shadow .12s ease;
}

.main-footer .social-icons a:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
}



/* Back to top */
.back-to-top {
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .92) !important;
    border: 1px solid var(--lux-line) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

/* Optional: nicer scrollbars on desktop */
@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, .12);
        border-radius: 999px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }
}

/* =========================================================
   ABSHER - LUXURY PRO LAYER (ADD ONLY)
   Paste AFTER the Light Luxury theme in styles.css
   ========================================================= */

/* ---- Premium glass + gold glow accents (very subtle) ---- */


/* Micro-interactions: smoothness */
* {
    transition-timing-function: cubic-bezier(.2, .8, .2, 1);
}

/* Slightly richer cards (no functional changes) */
.product-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)) !important;
    border-color: var(--pro-line) !important;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(900px 220px at 20% 0%, var(--pro-glow-2), transparent 55%),
        radial-gradient(700px 220px at 85% 0%, rgba(0, 0, 0, .04), transparent 60%);
    opacity: .45;
    mix-blend-mode: normal;
}

.product-card {
    position: relative;
}

.product-card:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .12) !important;
}

/* Image polish */
.product-image-link img,
.product-card img {
    filter: saturate(1.02) contrast(1.03);
}

.product-card:hover .product-image-link img {
    transform: scale(1.015);
    transition: transform .35s ease;
}

/* Buttons: premium depth */
.btn-icon-circle.add-to-cart {
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16) !important;
}

.btn-icon-circle.add-to-cart:hover {
    box-shadow: 0 22px 55px rgba(0, 0, 0, .18) !important;
}

.toggle-fav.active {
    box-shadow: 0 14px 36px rgba(216, 183, 104, .18) !important;
}

/* Chips / filter buttons (if any) look premium */
.chip,
.abshr-chip {
    background: rgba(255, 255, 255, .92) !important;
    border-color: rgba(0, 0, 0, .07) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}

.chip.active,
.abshr-chip.active {
    background: linear-gradient(135deg, #111, #2b2b2b) !important;
    border-color: rgba(255, 255, 255, .16) !important;
}

/* =========================
   FOOTER: Global Premium Layout
   supports:
   - .main-footer (your current footer)
   - .abshr-footer (gold footer we injected earlier)
   ========================= */

/* Make footer feel like a premium "bottom sheet" */
.main-footer,
.abshr-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, .06) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .98)) !important;
}

/* Gold glow band */
.main-footer::before,
.abshr-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 240px at 15% 0%, rgba(216, 183, 104, .22), transparent 60%),
        radial-gradient(900px 240px at 90% 0%, rgba(236, 217, 166, .20), transparent 62%),
        linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .02));
    opacity: 1;
}

/* Footer container spacing */
.main-footer .footer-container {
    padding: 18px 14px 16px !important;
}

.abshr-footer .wrap {
    padding: 18px 14px 16px !important;
}

/* Footer headings */
.main-footer h3,
.abshr-footer h3 {
    font-weight: 1100;
    letter-spacing: .15px;
    color: var(--pro-ink);
}

/* Make columns look like premium cards */
.main-footer .footer-row>* {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    padding: 12px 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .07);
}

/* Social links as pills */
.main-footer .social-icons a,
.abshr-footer .links button {
    background: rgba(255, 255, 255, .78) !important;
    border: 1px solid rgba(0, 0, 0, .07) !important;
    border-radius: 999px !important;
    padding: 10px 12px !important;
    font-weight: 950 !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
}

.main-footer .social-icons a:hover,
.abshr-footer .links button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .09);
}

/* Footer links list (contact) nicer */
.main-footer .footer-contact-list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .05);
}

/* Rating block (if exists) */
.abshr-footer .ratingTitle {
    font-weight: 1100 !important;
    color: var(--pro-ink);
}

.abshr-stars .abshr-star {
    font-size: 22px !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .10));
}

.abshr-rating-note {
    font-weight: 900 !important;
    color: rgba(0, 0, 0, .58) !important;
}

/* Make footer bottom text elegant */
.main-footer .footer-bottom p {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, .10);
    font-weight: 900;
    color: rgba(0, 0, 0, .55);
}

/* Responsive: columns stack nicely on mobile */
@media (max-width: 640px) {
    .main-footer .footer-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .main-footer .footer-row>* {
        padding: 12px 12px !important;
    }
}

/* Tiny sparkle line under footer headings */
.main-footer h3::after,
.abshr-footer h3::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(216, 183, 104, .0), rgba(216, 183, 104, .85), rgba(236, 217, 166, .0));
    opacity: .9;
}

/* Premium toast (slightly nicer) */
.toast,
#toast {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .10);
}

/* Cart: more premium alignment */
.cart-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .90)) !important;
}

.cart-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(700px 220px at 20% 0%, rgba(216, 183, 104, .14), transparent 60%);
    opacity: .8;
}

.cart-item {
    overflow: hidden;
}

.cart-item .remove-btn {
    box-shadow: 0 20px 55px rgba(0, 0, 0, .22) !important;
}

/* =========================================================
   ABSHER - Product Page Upgrade (ADD ONLY)
   ========================================================= */

.icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .07);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-btn:active {
    transform: scale(.985);
}

.icon-btn .icon {
    width: 22px;
    height: 22px;
    fill: #111;
}

#addToCartBtn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 0 !important;
    /* يخفي النص بدون حذف */
    flex: 0 0 auto !important;
}

#addToCartBtn::before {
    content: "🛒";
    font-size: 20px;
    line-height: 1;
}

/* مقاسات المنتج */
.product-sizes-block {
    margin-top: 12px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .07);
}

.product-sizes-block:empty {
    display: none;
}

.product-sizes-title {
    font-weight: 1100;
    margin: 0 0 10px;
    color: #111;
}

.size-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-chip {
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    padding: 10px 12px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
    transition: transform .12s ease;
}

.size-chip:hover {
    transform: translateY(-1px);
}

/* ترتيب أزرار صفحة المنتج بدون كسر */
.product-detail-container .product-actions {
    align-items: center;
}

#whatsappOrderBtn {
    flex: 1 1 auto !important;
    border-radius: 16px !important;
}

#shareBtn {
    flex: 0 0 auto !important;
}

/* =============================================
   UNIFIED PREMIUM STYLES — Contact + Product + Footer
   ============================================= */

/* --- Contact Page Cards --- */
.contact-cards-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--r-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
}

.contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    text-align: center;
}

.contact-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--r-md);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.contact-card-btn:active {
    transform: scale(0.97);
}

.contact-card-btn-call {
    background: #1a8d1a;
    color: #fff;
}

.contact-card-btn-call:hover {
    background: #15751a;
}

.contact-card-btn-wa {
    background: #25D366;
    color: #fff;
}

.contact-card-btn-wa:hover {
    background: #1faf50;
}

/* Call Numbers Panel */
.call-numbers-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.call-numbers-panel.open {
    max-height: 200px;
    padding-top: 14px;
}

.call-number-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    margin-bottom: 8px;
    background: #f0faf0;
    border: 1px solid rgba(26, 141, 26, 0.15);
    border-radius: var(--r-sm);
    color: #1a6d1a;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    direction: ltr;
}

.call-number-row:hover {
    background: #e0f5e0;
    transform: translateY(-1px);
}

.call-number-row:last-child {
    margin-bottom: 0;
}

/* Contact Social Icons */
.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-group-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Social Circle (shared) --- */
.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text);
    transition: var(--transition);
    text-decoration: none;
}

.social-circle:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

/* --- Group Pills (shared) --- */
.group-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    font-family: var(--font);
}

.group-pill:active {
    transform: scale(0.96);
}

.group-pill-wa {
    background: #25D366;
}

.group-pill-wa:hover {
    background: #1faf50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.group-pill-tg {
    background: #0088cc;
}

.group-pill-tg:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

/* =============================================
   PRODUCT DETAIL — Premium Layout
   ============================================= */
.product-detail-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 16px 0;
}

.product-image-wrapper {
    flex: 1 1 320px;
}

.product-detail-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--r-lg);
    cursor: zoom-in;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-detail-img:hover {
    box-shadow: var(--shadow-hover);
}

.product-info-wrapper {
    flex: 1 1 320px;
}

.pd-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.pd-description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

/* Sizes block */
.pd-sizes-block {
    margin-bottom: 16px;
}

.product-sizes-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.size-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-chip {
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-pill);
    background: #f8f8f8;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.size-chip:hover {
    border-color: var(--brand);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.size-chip-na {
    cursor: default;
    color: var(--muted);
    font-style: italic;
    border-style: dashed;
}

.size-chip-na:hover {
    transform: none;
    box-shadow: none;
}

/* Price Row */
.pd-price-row {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pd-price-row .old-price {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: line-through;
}

.pd-price-row .sale-price {
    font-size: 22px;
    font-weight: 800;
    color: #c0392b;
}

.pd-price-row .product-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

/* Action Icons Row */
.pd-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.pd-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f8f8;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.pd-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.pd-action-btn:active {
    transform: scale(0.93);
}



.pd-action-wa {
    background: #25D366;
    color: #fff;
    border-color: transparent;
}

.pd-action-wa:hover {
    background: #1faf50;
}

.pd-action-call {
    background: #1a8d1a;
    color: #fff;
    border-color: transparent;
}

.pd-action-call:hover {
    background: #15751a;
}

.pd-action-share {
    background: #f0f0f0;
    color: var(--text);
}

.pd-action-share:hover {
    background: #e0e0e0;
}

/* Trust Text */
.pd-trust-text {
    background: #fafafa;
    border-radius: var(--r-sm);
    padding: 14px 16px;
    margin-bottom: 18px;
    border-right: 3px solid var(--brand);
}

.pd-trust-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.pd-visit-text {
    margin-top: 8px !important;
    font-weight: 700;
    color: var(--text) !important;
}

/* Product Social Icons */
.pd-social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Product Group Section */
.pd-groups-section {
    margin-bottom: 16px;
}

.pd-groups-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.pd-group-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER — Unified Social & Groups Section
   ============================================= */
.footer-unified-section {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.footer-unified-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--accent);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.footer-social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--accent);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-circle:hover {
    background: var(--accent);
    color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-group-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =============================================
   IMAGE MODAL — Fullscreen (Enhanced)
   ============================================= */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 4000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal .modal-content {
    max-width: 94%;
    max-height: 88vh;
    border-radius: var(--r-md);
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-modal .close-modal {
    position: fixed;
    top: 16px;
    right: 16px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 4001;
    background: rgba(0, 0, 0, 0.4);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    line-height: 1;
}

.image-modal .close-modal:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* =============================================
   RESPONSIVE — Product Detail
   ============================================= */
@media (max-width: 600px) {
    .product-detail-layout {
        flex-direction: column;
        gap: 16px;
    }

    .pd-actions-row {
        justify-content: center;
    }

    .pd-social-icons {
        justify-content: center;
    }

    .pd-group-pills {
        justify-content: center;
    }
}

/* =============================================
   PREMIUM VISUAL UPGRADE (Contact & Product)
   ============================================= */


/* Apply font only to target sections to preserve site identity elsewhere */
.contact-cards-container,
.product-detail-layout {
    font-family: 'Tajawal', sans-serif;
}

/* --- CONTACT PAGE --- */
.contact-cards-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.contact-card-title {
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text);
}

.contact-card-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

/* Premium Call Button */
.contact-card-btn-call {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    border: 1px solid rgba(22, 101, 52, 0.1);
}

.contact-card-btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 101, 52, 0.15);
}

/* WhatsApp Button - Subtle */
.contact-card-btn-wa {
    background: #fff;
    color: #25D366;
    border: 1px solid #25D366;
}

.contact-card-btn-wa:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.1);
}

/* Call Panel Animation */
.call-numbers-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease, margin 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.call-numbers-panel.open {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
}

.call-number-row {
    background: #fff;
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
}

.call-number-row:hover {
    border-color: #dcfce7;
    background: #f9fffb;
    transform: translateX(-4px);
}

.call-hint-text {
    font-size: 13px;
    color: #166534;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Group Pills - Contact Page */
.contact-group-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.group-pill {
    flex: 1;
    min-width: 140px;
    padding: 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 14px;
}

.group-pill:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.group-pill-wa {
    background: #dcf8c6;
    color: #075e54;
    border: 1px solid rgba(7, 94, 84, 0.1);
}

.group-pill-tg {
    background: #e1f5fe;
    color: #0277bd;
    border: 1px solid rgba(2, 119, 189, 0.1);
}

/* Social Icons - Unified */
.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 10px 0;
}

.social-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f5f5f5;
}

.social-circle:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--brand);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.social-circle svg {
    width: 24px;
    height: 24px;
}

/* --- PRODUCT PAGE --- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 900px) {
    .product-detail-layout {
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
    }

    .product-image-wrapper {
        position: sticky;
        top: 100px;
    }
}

/* Product Info Card */
.product-info-wrapper {
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.product-detail-img {
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    background: #fff;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-detail-img:hover {
    transform: scale(1.01);
}

.pd-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #000;
}

.pd-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pd-price-row {
    margin: 16px 0 24px 0;
    padding: 16px 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

/* Actions Row - UNIFIED BUTTONS */
.pd-actions-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

/* Common style for ALL action buttons */
.pd-action-btn {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    border: 1px solid #eaeaea;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
    color: #444;
    padding: 0;
    /* Override */
}

.pd-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.pd-action-btn:active {
    transform: scale(0.95);
}

.pd-action-btn svg {
    width: 24px;
    height: 24px;
}

/* Specific hover colors */
.pd-action-cart:hover {
    color: var(--brand);
    background: #fffcf5;
}

.pd-action-wa:hover {
    color: #25D366;
    background: #f0fdf4;
}

.pd-action-call:hover {
    color: #166534;
    background: #f0fdf4;
}

.pd-action-share:hover {
    color: #007aff;
    background: #f0f8ff;
}

/* Groups in Product Page - Icons Only */
.pd-groups-section {
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.pd-groups-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 500;
}

.pd-group-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
}



.pd-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.pd-trust-text {
    background: #fdfdfd;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px dashed #eee;
    font-size: 13px;
    color: #777;
    text-align: center;
}

.pd-visit-text {
    display: block;
    margin-top: 12px;
    font-weight: 700;
    color: var(--brand);
}

/* Account Page Styles */
.account-input {
    width: 65%;
    flex: 2;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.account-input:focus {
    border-color: var(--brand);
}

@media (max-width: 480px) {
    .account-input {
        width: 100%;
        margin-bottom: 10px;
    }

    #emailSignupForm>div {
        flex-direction: column;
    }
}

/* =========================================
   SIDE MENU REFINEMENT (Final Polish)
   ========================================= */

/* =========================================
   SIDE MENU REFINEMENT (Final Polish)
   ========================================= */

.menu-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(0, 0, 0, .08);
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    /* Reset button styles if used on button */
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: inherit;
    text-align: inherit;
    box-shadow: none;
}

.menu-row .menu-ic {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

.menu-row .menu-txt {
    flex: 1;
    text-align: right;
    /* RTL alignment */
    white-space: nowrap;
    /* Prevent wrapping */
}

.menu-row .menu-chevron {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    /* Push to far left in RTL */
    opacity: .7;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.menu-row:hover,
.menu-row.active,
.menu-row[aria-expanded="true"] {
    background: rgba(255, 255, 255, .4);
    border-color: rgba(0, 0, 0, .15);
}

/* Submenu Styling */
.menu-submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px 10px 10px 10px;
    width: 100%;
}

.menu-submenu[hidden] {
    display: none !important;
}

.menu-subrow {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    /* Slightly smaller padding */
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    /* Lighter background */
    border: 1px solid rgba(0, 0, 0, .05);
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    /* Slightly lighter weight */
    font-size: .9rem;
    /* Slightly smaller font */
    margin-right: 15px;
    /* Indentation for RTL */
    transition: background 0.2s;
}

.menu-subrow:hover {
    background: rgba(255, 255, 255, .2);
}

/* Chevron Rotation */
.menu-toggle[aria-expanded="true"] .menu-chevron {
    transform: rotate(180deg);
}

/* =========================================
   BOTTOM NAVIGATION BAR
   ========================================= */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0 !important;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding-bottom: 0 !important;
    direction: ltr;
    /* order is LTR per user request */
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    font-size: 10px;
    font-weight: 600;
    gap: 3px;
    flex: 1;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 54px;
}

.bottom-nav__item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.bottom-nav__item span.bnav-label {
    font-size: 10px;
    line-height: 1;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

/* Active state */
.bottom-nav__item.bnav-active {
    color: var(--primary-color, #C9A227);
}

.bottom-nav__item.bnav-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: var(--primary-color, #C9A227);
}

.bottom-nav__item:active {
    transform: scale(0.92);
}

/* Badge on bottom bar */
.bottom-nav__badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    min-width: 16px;
    height: 16px;
    background: #e74c3c;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.bottom-nav__badge:empty,
.bottom-nav__badge[data-count="0"] {
    display: none;
}

/* Push page content above bottom bar */
body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
}

/* Desktop: make it a bit more compact */
@media (min-width: 769px) {
    .bottom-nav {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 18px 18px 0 0;
    }
}

/* === Bottom Nav Offers CTA FORCE === */
a.bn-cta,
button.bn-cta {
    position: relative !important;
    transform: translateY(-12px) !important;
    border-radius: 999px !important;
    min-width: 64px !important;
    height: 64px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25) !important;
    border: 1px solid rgba(255, 255, 255, .35) !important;
    background: linear-gradient(135deg, #111, #C9A227) !important;
    color: #fff !important;
    gap: 2px !important;
    padding: 0 !important;
}

a.bn-cta svg,
button.bn-cta svg {
    width: 26px !important;
    height: 26px !important;
    stroke: #fff !important;
    fill: none !important;
}

a.bn-cta .bnav-label {
    font-size: 8px !important;
    color: rgba(255, 255, 255, .9) !important;
}

a.bn-cta:active,
button.bn-cta:active {
    transform: translateY(-10px) scale(.96) !important;
}

a.bn-cta.bnav-active::before {
    display: none !important;
}

/* === Premium Header Styling === */
.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9998 !important;
    background: rgba(255, 255, 255, .92) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
}

.header-top {
    max-width: 480px;
    margin: 0 auto;
    padding: 12px 14px !important;
}

.logo-text h1 {
    font-weight: 800 !important;
    letter-spacing: .2px !important;
}

.logo-tagline-new {
    opacity: .85 !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
}

.header-icons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-left: auto !important;
}

.header-search-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
    background: rgba(255, 255, 255, .85) !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08) !important;
}

.header-search-btn svg {
    opacity: .9 !important;
}

.header-search-btn:active {
    transform: scale(.98) !important;
}

/* === Snapchat Icon Sizing === */
a[title="Snapchat"] .icon,
a[aria-label="Snapchat"] .icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    opacity: .92;
}

/* =========================================================
   RESPONSIVE DESIGN + PREMIUM VISUAL IDENTITY — ABSHER GOLD
   ========================================================= */

/* --- A) Global Layout Wrapper (Desktop Centering) --- */
main,
.main-content,
.page-content {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

@media (min-width: 769px) {

    main,
    .main-content,
    .page-content {
        max-width: 1100px;
    }
}

/* --- B) Contact Page Responsive Grid --- */
@media (min-width: 768px) {
    .contact-cards-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        max-width: 720px;
        margin: 0 auto;
    }

    .contact-card {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 767px) {
    .contact-cards-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* Contact social icons row */
.contact-social-icons {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 14px !important;
}

.contact-social-icons .social-circle {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--border) !important;
    background: var(--card) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
}

.contact-social-icons .social-circle:hover {
    box-shadow: var(--shadow) !important;
    transform: translateY(-2px) !important;
}

/* Group pills equal height/width */
.contact-group-pills {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.contact-group-pills .group-pill {
    flex: 1 1 0 !important;
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: var(--r-md) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

/* --- C) Cards Premium Styling --- */
.contact-card {
    border-radius: 20px !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    background: var(--card) !important;
    padding: 18px !important;
    transition: var(--transition) !important;
}

.contact-card:hover {
    box-shadow: var(--shadow) !important;
}

/* --- D) Buttons Premium --- */
.contact-card-btn {
    border-radius: var(--r-md) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    min-height: 52px !important;
    border: 1px solid var(--border) !important;
    transition: var(--transition) !important;
}

.contact-card-btn-call {
    background: var(--card) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
}

.contact-card-btn-call:hover {
    background: var(--gold-soft) !important;
    border-color: var(--gold) !important;
}

.contact-card-btn-wa {
    background: #25D366 !important;
    color: #fff !important;
    border: none !important;
}

.contact-card-btn-wa:hover {
    background: #20bd5a !important;
}

/* --- E) Typography Polishing --- */
body {
    background: var(--bg) !important;
    font-family: var(--font) !important;
    color: var(--text) !important;
    -webkit-font-smoothing: antialiased !important;
}

.contact-card-title {
    font-family: var(--font) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* --- F) Footer Social Consistency --- */
.footer-social-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--border) !important;
    background: var(--card) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
}

.footer-social-circle:hover {
    box-shadow: var(--shadow) !important;
    transform: translateY(-2px) !important;
}

.footer-social-circle svg {
    width: 20px !important;
    height: 20px !important;
}

/* --- G) Product Page Social Row --- */
.pd-social-row .social-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--border) !important;
    background: var(--card) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
}

.pd-social-row .social-circle:hover {
    box-shadow: var(--shadow) !important;
    transform: translateY(-2px) !important;
}

/* --- H) Safe-Area + Spacing --- */
body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

/* --- I) Tablet Responsive Tweaks --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .header-top {
        max-width: 720px !important;
    }

    .bottom-nav {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* --- J) Desktop Wide Layout --- */
@media (min-width: 1025px) {
    .header-top {
        max-width: 1100px !important;
    }

    .bottom-nav {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* --- K) Mobile Tightening (<360px) --- */
@media (max-width: 359px) {
    :root {
        --pad: 12px;
    }

    .contact-group-pills .group-pill {
        font-size: 12px !important;
        min-height: 44px !important;
    }

    .bottom-nav__item {
        gap: 2px !important;
    }

    .bnav-label {
        font-size: 9px !important;
    }
}

/* === Product Actions — Force Icon Consistency === */
.pd-actions-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
}

.pd-action-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--border) !important;
    background: var(--card, #fff) !important;
    color: var(--text, #111) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
}

.pd-action-btn:hover {
    box-shadow: var(--shadow) !important;
    transform: translateY(-2px) !important;
}

.pd-action-btn:active {
    transform: scale(.95) !important;
}

.pd-action-btn svg {
    width: 24px !important;
    height: 24px !important;
}

.pd-action-btn svg path,
.pd-action-btn svg circle,
.pd-action-btn svg line,
.pd-action-btn svg polyline {
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* Cart + Call + Share use stroke only, WhatsApp uses fill */
.pd-action-cart svg path,
.pd-action-cart svg circle,
.pd-action-cart svg line,
.pd-action-call svg path,
.pd-action-share svg path {
    fill: none !important;
}

.pd-action-wa svg path {
    fill: currentColor !important;
    stroke: none !important;
}

.pd-action-wa {
    background: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
}

/* =========================================================
   v11 GLOBAL FIX — RESPONSIVE + PREMIUM VISUAL IDENTITY
   Applied: 2026-02-13
   NO features removed. Additive overrides only.
   ========================================================= */

/* --- 1) OVERFLOW FIX (CRITICAL) --- */
html {
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden !important;
    word-break: break-word;
}

/* --- 2) GLOBAL TYPOGRAPHY REFINEMENT --- */
* {
    font-family: var(--font) !important;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -0.01em;
}

p {
    line-height: 1.75;
}

.section-title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-bottom: 10px !important;
    margin-bottom: 24px !important;
    border-bottom: 2px solid var(--brand) !important;
    position: relative !important;
}

.section-title::after {
    display: none !important;
}

/* --- 3) UNIFIED BUTTON STYLES --- */
.btn,
.btn-outline,
.slider-btn {
    font-family: var(--font) !important;
    font-weight: 700 !important;
    border-radius: var(--r-pill) !important;
    transition: var(--transition) !important;
    cursor: pointer !important;
    letter-spacing: 0.01em;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid var(--brand) !important;
    color: var(--brand) !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
}

.btn-outline:hover {
    background: var(--brand) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.3) !important;
}

/* --- 4) PRODUCT CARDS — Consistent Polish --- */
.product-card {
    border-radius: var(--r-md) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden !important;
    transition: var(--transition) !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

.product-info {
    padding: 14px 16px !important;
}

.product-title {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    color: var(--text) !important;
    word-break: break-word;
    white-space: normal;
}

.product-price {
    font-weight: 800 !important;
    font-size: 16px !important;
    color: var(--text) !important;
}

.product-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    background: #FAFAFA !important;
}

/* --- 5) FLUID PRODUCT GRID --- */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
}

/* --- 6) CATEGORIES CARD POLISH --- */
.category-card {
    border-radius: var(--r-lg) !important;
    transition: var(--transition) !important;
    border: 1px solid transparent !important;
}

.category-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12) !important;
}

/* --- 7) SLIDER POLISH --- */
.slider-container {
    border-radius: var(--r-lg) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden !important;
}

.slide {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%) !important;
}

.slide-text {
    color: var(--brand) !important;
    font-weight: 700 !important;
}

/* --- 8) SOCIAL ICONS — Unified Size & Style --- */
.social-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--border) !important;
    background: var(--card) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
    color: var(--text) !important;
}

.social-circle:hover {
    box-shadow: var(--shadow) !important;
    transform: translateY(-2px) !important;
    color: var(--brand) !important;
}

.social-circle svg {
    width: 20px !important;
    height: 20px !important;
}

.pd-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

/* --- 9) TRUST BAR REFINEMENT --- */
.trust-item {
    border-radius: var(--r-md) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
}

.trust-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* --- 10) PRODUCT DETAIL PAGE REFINEMENT --- */
.product-detail-layout {
    max-width: 520px !important;
    margin: 0 auto !important;
}

.pd-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    color: var(--text) !important;
    margin-bottom: 12px !important;
}

.pd-description {
    font-size: 14px !important;
    color: var(--muted) !important;
    line-height: 1.8 !important;
    margin-bottom: 16px !important;
}

.pd-price-row {
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.pd-trust-text {
    margin: 20px 0 !important;
    padding: 16px !important;
    background: var(--surface-alt) !important;
    border-radius: var(--r-md) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.pd-trust-text p {
    font-size: 13px !important;
    color: var(--muted) !important;
    line-height: 1.8 !important;
    margin: 0 0 6px !important;
}

.pd-visit-text {
    color: var(--brand) !important;
    font-weight: 600 !important;
}

.pd-groups-section {
    margin: 20px 0 !important;
    text-align: center !important;
}

.pd-groups-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    margin-bottom: 12px !important;
}

.pd-group-pills {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

/* --- 11) PRODUCT SIZE BLOCK --- */
.pd-sizes-block {
    margin-bottom: 16px !important;
}

/* --- 12) RESPONSIVE: MOBILE (360px+) --- */
@media (max-width: 480px) {
    :root {
        --pad: 16px;
    }

    .main-content {
        padding: 12px var(--pad) !important;
    }

    .products-grid {
        gap: 10px !important;
    }

    .product-image {
        height: 180px !important;
    }

    .slider-container {
        height: 120px !important;
    }

    .slide-text {
        font-size: 17px !important;
    }

    .categories-grid {
        gap: 10px !important;
    }

    .category-card {
        padding: 20px 12px !important;
    }

    .header-top {
        padding: 10px 14px !important;
    }

    .logo-text h1 {
        font-size: 22px !important;
    }

    .product-detail-layout {
        max-width: 100% !important;
    }
}

/* --- 13) RESPONSIVE: SMALL MOBILE (<360px) --- */
@media (max-width: 359px) {
    :root {
        --pad: 12px;
    }

    .product-image {
        height: 160px !important;
    }

    .slider-container {
        height: 110px !important;
    }

    .slide-text {
        font-size: 15px !important;
    }

    .product-title {
        font-size: 12px !important;
    }

    .product-price {
        font-size: 14px !important;
    }
}

/* --- 14) RESPONSIVE: TABLET (768px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .main-content {
        max-width: 720px !important;
        margin: 0 auto !important;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px !important;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .slider-container {
        height: 160px !important;
    }

    .slide-text {
        font-size: 22px !important;
    }

    .product-detail-layout {
        max-width: 600px !important;
    }

    .header-top {
        max-width: 720px !important;
        margin: 0 auto !important;
    }
}

/* --- 15) RESPONSIVE: DESKTOP (1366px+) --- */
@media (min-width: 1025px) {
    .main-content {
        max-width: 1100px !important;
        margin: 0 auto !important;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }

    .slider-container {
        height: 180px !important;
        border-radius: var(--r-lg) !important;
    }

    .slide-text {
        font-size: 26px !important;
    }

    .product-card:hover {
        transform: translateY(-6px) !important;
    }

    .product-image {
        height: 240px !important;
    }

    .product-detail-layout {
        max-width: 700px !important;
    }

    .header-top {
        max-width: 1100px !important;
        margin: 0 auto !important;
    }

    .trust-container {
        flex-direction: row !important;
        gap: 20px !important;
    }

    .trust-item {
        flex: 1 !important;
    }

    .contact-cards-container {
        max-width: 800px !important;
        margin: 0 auto !important;
    }
}

/* --- 16) LARGE DESKTOP (1920px+) --- */
@media (min-width: 1920px) {
    .main-content {
        max-width: 1200px !important;
    }
}

/* --- 17) SAFE AREA (iPhone notch) --- */
@supports (padding: env(safe-area-inset-bottom)) {
    body {
        padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
        padding-left: env(safe-area-inset-left, 0px) !important;
        padding-right: env(safe-area-inset-right, 0px) !important;
    }

    .bottom-nav {
        padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    }
}

/* --- 18) SIDE MENU REFINEMENT --- */
.menu-content {
    background: linear-gradient(180deg, var(--brand) 0%, #C5991E 100%) !important;
    border-radius: 0 !important;
}

.menu-row,
.menu-item-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 13px 16px !important;
    border-radius: 12px !important;
    color: #222 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
}

.menu-row:hover,
.menu-row.active,
.menu-item-row:hover,
.menu-item-row.active {
    background: rgba(0, 0, 0, 0.1) !important;
}

.menu-row .menu-ic,
.menu-item-row .menu-ic {
    color: #333 !important;
}

.menu-subrow {
    display: block !important;
    padding: 10px 20px 10px 16px !important;
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    transition: var(--transition) !important;
}

.menu-subrow:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    color: #111 !important;
}

.menu-submenu {
    padding: 4px 8px !important;
    margin-top: 4px !important;
}

/* --- 19) TOAST POLISH --- */
.toast {
    border-radius: var(--r-pill) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

/* --- 20) GLOBAL LINK POLISH --- */
a {
    transition: var(--transition) !important;
}

/* --- 21) FILTER CHIPS REFINEMENT --- */
.abshr-chip,
.type-chip,
.filter-btn,
.size-btn {
    border-radius: var(--r-pill) !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.abshr-chip.active,
.type-chip.active,
.filter-btn.active,
.size-btn.active {
    background: var(--accent) !important;
    color: var(--brand) !important;
    border-color: var(--accent) !important;
}

/* --- 22) FOOTER POLISH --- */
.abshr-footer {
    border-top: 1px solid var(--line) !important;
}

.abshr-footer .wrap {
    max-width: 520px !important;
    margin: 0 auto !important;
}

@media (min-width: 1025px) {
    .abshr-footer .wrap {
        max-width: 700px !important;
    }
}

.footer-unified-section {
    text-align: center !important;
    padding: 0 16px !important;
}

.footer-unified-title {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--text) !important;
    margin-bottom: 12px !important;
}

.footer-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.footer-group-pills {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.group-pill {
    border-radius: var(--r-md) !important;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    transition: var(--transition) !important;
}

.group-pill:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
}

.group-pill-wa {
    background: #25D366 !important;
    color: #fff !important;
}

.group-pill-tg {
    background: #0088cc !important;
    color: #fff !important;
}

/* --- 23) CART PAGE POLISH --- */
.cart-item {
    border-radius: var(--r-md) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition) !important;
}

/* --- 24) CHECKOUT PAGE POLISH --- */
.form-group input,
.form-group select,
.form-group textarea {
    border-radius: var(--r-sm) !important;
    border: 1px solid var(--line) !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
    transition: var(--transition) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 3px rgba(214, 181, 109, 0.15) !important;
    outline: none !important;
}

/* --- PRODUCT PAGE: Cart Icon = Bottom Nav Cart (FINAL) --- */

/* 1. Container Styles (Top Cart Only) - CLASSIC STYLE */
.pd-action-cart {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: transparent !important;
    /* No Background */
    border: none !important;
    /* No Border */
    box-shadow: none !important;
    /* No Shadow */
    color: #333 !important;
    /* Darker clean icon */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
}

.pd-action-cart:hover {
    color: var(--primary-color, #C9A227) !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: scale(1.1) !important;
    /* Slight grow instead of lift */
    border-color: transparent !important;
}

/* 2. SHARED Icon Styles (Top & Bottom Carts) */
.nav-cart-icon svg,
.pd-action-cart svg {
    width: 22px !important;
    height: 22px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    transition: transform 0.2s ease !important;
}

.nav-cart-icon svg path,
.nav-cart-icon svg circle,
.pd-action-cart svg path,
.pd-action-cart svg circle {
    stroke: currentColor !important;
    fill: none !important;
}

/* 3. Responsive Adjustments */
@media (max-width: 768px) {
    .pd-actions-row {
        gap: 10px !important;
    }

    .pd-action-cart {
        /* Ensure touch target remains easy to hit */
        width: 44px !important;
        height: 44px !important;
    }
}

/* --- PRODUCT PAGE: Group Pills = Proper Buttons with Icons --- */
.pd-group-pills {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.pd-group-pills .group-pill {
    flex: 0 1 auto !important;
    width: auto !important;
    height: auto !important;
    min-width: auto !important;
    border-radius: 50px !important;
    padding: 12px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    color: #fff !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    cursor: pointer !important;
}

.pd-group-pills .group-pill span {
    white-space: nowrap !important;
}

.pd-group-pills .group-pill svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

.pd-group-pills .group-pill-wa {
    background: #25D366 !important;
    color: #fff !important;
    border: none !important;
}

.pd-group-pills .group-pill-wa:hover {
    background: #1faf50 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3) !important;
}

.pd-group-pills .group-pill-tg {
    background: #0088cc !important;
    color: #fff !important;
    border: none !important;
}

.pd-group-pills .group-pill-tg:hover {
    background: #0077b5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.3) !important;
}

/* --- END v11 GLOBAL FIX --- */
/* ===== Brand (DAR MODEXA | دار موديكسا) — Ultra Luxury Fashion House ===== */
.header .logo-section {
    align-items: center;
}

.header .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 6px 0;
}

.header .store-label {
    display: none;
}

/* DAR MODEXA Brand Logo — Royal Luxury Style */
.brand-lumar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin: 0;
    padding: 2px 16px;
    line-height: 1;
}

.brand-lumar .brand-en {
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    /* Royal Gold Gradient */
    background: linear-gradient(135deg, #C6A75E 0%, #E8D7A8 45%, #C6A75E 65%, #D4B96A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Tajawal', sans-serif;
    line-height: 1.15;
    margin-right: -6px;
    /* Subtle gold glow */
    filter: drop-shadow(0 0 6px rgba(198, 167, 94, 0.25));
    transition: filter 0.4s ease;
}

.brand-lumar:hover .brand-en {
    filter: drop-shadow(0 0 10px rgba(198, 167, 94, 0.4));
}

.brand-lumar .brand-ar {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #C6A75E;
    font-family: 'Tajawal', sans-serif;
    line-height: 1.5;
    margin-top: 2px;
    margin-right: -3px;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.brand-lumar:hover .brand-ar {
    opacity: 1;
}

.header .logo-text h1 {
    margin: 0;
    line-height: 1;
}

.header .logo-text h1::after {
    content: none;
}

.header .logo-tagline-new {
    display: none;
}

/* Header — Deep Ultra Black Background */
.header {
    padding-top: 14px;
    padding-bottom: 14px;
    background: #0A0A0A !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.header-top {
    min-height: 68px;
}

/* Header icons & menu button — white with gold hover */
.header .menu-btn,
.header .header-search-btn {
    color: rgba(255, 255, 255, 0.8) !important;
}

.header .header-icons svg {
    stroke: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive */
@media (max-width: 480px) {
    .brand-lumar .brand-en {
        font-size: 20px;
        letter-spacing: 4px;
        margin-right: -4px;
    }

    .brand-lumar .brand-ar {
        font-size: 9px;
        letter-spacing: 2px;
        margin-right: -2px;
    }

    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header-top {
        min-height: 56px;
    }
}

/* ===== HERO SLIDE (Image Slide) ===== */
.slide-hero {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 230px;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    display: block;
    /* Ensure visibility */
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
    color: #fff;
}

.slide-hero .slide-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .2px;
}

.slide-hero .slider-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

@media (min-width: 768px) {
    .slide-hero {
        min-height: 290px;
    }

    .slide-hero .slide-text {
        font-size: 26px;
    }
}

/* --- Hero image for FIRST slider slide only --- */
.slide.hero-slide {
    position: relative;
    overflow: hidden;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* dark overlay for readability (luxury look) */
.slide.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

/* keep slide content above overlay */
.slide.hero-slide>* {
    position: relative;
    z-index: 1;
}

/* optional: make button more luxury */
.slide.hero-slide .slider-btn {
    border: 1px solid rgba(214, 181, 109, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.20);
}

/* --- GROUP ICONS (Monochrome) --- */
.group-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    /* Monochrome gray */
    transition: all 0.2s ease;
}

.group-icon-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.group-icon-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #555;
}

.group-icon-btn:active {
    transform: scale(0.95);
}

/* Force groups icons to be bold black and clear */
.group-icon-btn,
/* Adapter for my specific class */
.pd-group-pills a,
/* Adapter for container */
.groups-icons a,
.groups-icons button,
.group-row a,
.group-row button {
    color: #000 !important;
    opacity: 1 !important;
    filter: none !important;
}

.group-icon-btn svg,
/* Adapter */
.pd-group-pills a svg,
/* Adapter */
.groups-icons svg,
.group-row svg {
    width: 24px !important;
    height: 24px !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    opacity: 1 !important;
}

/* ===== Product page social layout (clean & premium) ===== */
.product-social-block {
    text-align: center;
    margin: 18px auto 6px;
    padding: 0 14px;
    max-width: 520px;
}

.product-social-block .follow-text {
    margin: 10px 0 14px;
    font-size: 14px;
    line-height: 1.8;
    color: #111;
    font-weight: 600;
}

.product-social-block .join-title {
    margin: 18px 0 10px;
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Main social icons row */
.social-main a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
}

.social-main a:active {
    transform: scale(0.96);
}

/* Groups icons row (Telegram/WhatsApp) */
.social-groups a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
}

.social-groups a:active {
    transform: scale(0.96);
}

/* Force all social SVG icons to be solid black (fix Snapchat faded) */
.product-social-block a,
.product-social-block svg {
    color: #000 !important;
    opacity: 1 !important;
    filter: none !important;
}

.product-social-block svg {
    width: 24px !important;
    height: 24px !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* Mobile spacing */
@media (max-width: 480px) {
    .product-social-block .follow-text {
        font-size: 13px;
    }

    .social-row {
        gap: 14px;
    }
}

/* ===== UNIFIED SOCIAL & ICON SYSTEM (FINAL) ===== */

/* 1. Global Social Icon Button (Shared Class) */
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    /* Fully circular */
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    color: #111;
    /* Solid Black Default */
    transition: all 0.2s ease;
    text-decoration: none;
    margin: 0;
    padding: 0;
    position: relative;
    /* Reset any potential filters */
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.social-icon-btn:hover {
    color: #D4AF37;
    /* Gold on Hover */
    border-color: #D4AF37;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-icon-btn:active {
    transform: scale(0.96);
}

/* Ensure SVG is clean and inherits color */
.social-icon-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: none;
    /* Default for filled icons */
    transition: none;
    /* Color controlled by parent */
    opacity: 1 !important;
    filter: none !important;
}

/* Exception for stroked icons if needed (e.g. some cart icons) */
.social-icon-btn.stroked-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* 2. Product Page Layout Specifics */
.product-social-block {
    text-align: center;
    margin: 18px auto 6px;
    padding: 0 14px;
    max-width: 520px;
}

.product-social-block .follow-text,
.product-social-block .join-title {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px 0;
    letter-spacing: 0;
}

.product-social-block .join-title {
    margin-top: 18px;
    /* Space between rows */
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    /* Standardized gap */
    flex-wrap: wrap;
}

/* ===== FORCE FIXED HEADER (User Request) ===== */
.header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #0A0A0A !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}

.header-top,
.logo-section,
.header-icons {
    transform: none !important;
    transition: none !important;
}

body {
    padding-top: 78px !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 72px !important;
    }
}

@media (max-width: 380px) {
    body {
        padding-top: 68px !important;
    }
}

html,
body {
    overflow-x: hidden;
}

/* 3. Mobile Adjustments */
@media (max-width: 480px) {
    .social-icon-btn {
        width: 44px;
        /* Slightly smaller on very small screens */
        height: 44px;
    }
}

/* Disable emoji before add to cart if exists */
#addToCartBtn::before {
    content: none !important;
    display: none !important;
}

/* ===== Header Final Fix (All Devices) ===== */
html,
body {
    height: 100%;
    overscroll-behavior-y: none;
}

body {
    -webkit-overflow-scrolling: touch;
}

.header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Prevent content from hiding behind header */
.main-content {
    padding-top: 90px !important;
}

/* ===== Premium Header Upgrade ===== */
.header {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
    padding: 10px 18px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text h1 {
    font-size: 22px !important;
    letter-spacing: 0.5px;
}

.store-label {
    font-size: 11px !important;
    letter-spacing: 1px;
}

.menu-btn,
.header-search-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu-btn:hover,
.header-search-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* =========================================================
   ABSHER — ULTRA LUX HEADER (FINAL FIX)  ✅ Add Only
   Works: iPhone Safari / Android / Desktop (No Header Jitter)
   ========================================================= */

/* (1) iOS/Safari Anti-Jitter + Smooth Scroll Fix */
html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior-y: none;
}

body {
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
}

/* السطرين الحاسمين لتثبيت الهيدر على iOS */
@supports (-webkit-touch-callout: none) {
    body {
        overscroll-behavior-y: none;
    }

    .header {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* (2) Force Header Fixed (overrides any old sticky rules) */
.header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;

    /* Premium Glass */
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);

    /* Elegant Border + Shadow */
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.7) inset !important;

    /* Comfortable Height */
    padding: 10px 18px 10px !important;
}

/* (3) Header Inner Layout Polish */
.header-top {
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px !important;
}

.menu-btn,
.header-search-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0, 0, 0, .06) !important;
    background: rgba(255, 255, 255, .75) !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .06) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.menu-btn:hover,
.header-search-btn:hover {
    background: rgba(0, 0, 0, .04) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08) !important;
}

.menu-btn:active,
.header-search-btn:active {
    transform: scale(.98);
}

/* (4) Brand Typography (Luxury) */
.logo-text {
    line-height: 1.05 !important;
}

.store-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px !important;
    letter-spacing: 1px;
    font-weight: 800 !important;

    color: #111 !important;
    background: linear-gradient(135deg, rgba(216, 183, 104, .28), rgba(255, 255, 255, .9));
    border: 1px solid rgba(216, 183, 104, .40);
    padding: 5px 10px;
    border-radius: 999px;
    width: fit-content;

    box-shadow: 0 10px 22px rgba(216, 183, 104, .16);
}

.logo-text h1 {
    margin: 4px 0 0 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    letter-spacing: .4px;

    /* gold + ink mix */
    color: #D6B56D !important;
    text-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

/* tiny gold underline glow */
.logo-text h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(214, 181, 109, 0), rgba(214, 181, 109, .95), rgba(214, 181, 109, 0));
    opacity: .9;
}

/* (5) Ensure Search Overlay stays below fixed header */
.search-overlay {
    top: 100% !important;
    z-index: 99998 !important;
}

/* (6) Prevent Content Under Header */
.main-content {
    padding-top: 96px !important;
}

/* Responsive Fine Tuning */
@media (max-width: 768px) {
    .header {
        padding: 10px 14px !important;
    }

    .logo-text h1 {
        font-size: 20px !important;
    }

    .main-content {
        padding-top: 92px !important;
    }
}

@media (min-width: 992px) {
    .header {
        padding: 10px 22px !important;
    }

    .logo-text h1 {
        font-size: 24px !important;
    }

    .main-content {
        padding-top: 102px !important;
    }
}

/* =========================================================
   ABSHER — PREMIUM FOOTER UPGRADE (FINAL)  ✅ Add Only
   Luxury Minimal Footer + Unified Icons (Social & Groups)
   ========================================================= */

/* (1) Main Footer Container - Luxury Look */
.abshr-footer {
    margin-top: 60px;
    background: #fdfdfd !important;
    /* Extremely light grey/white */
    border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
    padding: 50px 0 80px !important;
    /* More space at bottom for nav */
    position: relative;
    overflow: hidden;
}

/* Subtle Gold Sheen at Top */
.abshr-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(214, 181, 109, 0), rgba(214, 181, 109, 0.3), rgba(214, 181, 109, 0));
}

.abshr-footer .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* (2) Columns & Text Typography */
.abshr-footer .col {
    flex: 1 1 300px;
}

.abshr-footer button {
    display: block;
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    font-size: 15px !important;
    color: #555 !important;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.abshr-footer button:hover {
    color: #D6B56D !important;
    /* Gold hover */
    transform: translateX(-4px);
}

.ratingTitle {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #111 !important;
    margin-bottom: 12px !important;
}

/* (3) UNIFIED FOOTER ICONS (Social + Groups) -> Circular 46px */
.footer-social-circle,
.group-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    /* Circle */
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #111 !important;
    /* Force Black Icon */
    text-decoration: none !important;
    margin: 0 6px !important;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;

    /* Reset Any Pill Styles */
    padding: 0 !important;
    min-width: auto !important;
}

/* Hover Effect: Luxury Lift */
.footer-social-circle:hover,
.group-pill:hover {
    background: #fff !important;
    border-color: #D6B56D !important;
    color: #D6B56D !important;
    /* Gold Icon */
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(214, 181, 109, 0.2) !important;
}

.footer-social-circle:active,
.group-pill:active {
    transform: scale(0.96) !important;
}

/* Standardize Icon Elements */
.footer-social-circle svg,
.group-pill svg {
    width: 22px !important;
    height: 22px !important;
    fill: currentColor !important;
    margin: 0 !important;
    /* Remove margin if text was there */
}

/* (4) Footer Unified Section Layout */
.footer-unified-section {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 40px;
    width: 100%;
}

.footer-unified-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.footer-social-icons,
.footer-group-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Merge Groups Row with Social Row visually if desired, or keep separate but styled same */
.footer-group-pills {
    margin-top: 0 !important;
    /* Reset margin */
}

/* Hide text if any remains (Safety) */
.footer-social-circle span,
.group-pill span {
    display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .abshr-footer {
        padding: 40px 0 100px !important;
    }

    .footer-social-circle,
    .group-pill {
        width: 42px !important;
        height: 42px !important;
    }
}

/* =========================================================
   FOOTER ICON UNIFICATION (STRICT) ✅
   Override all sizes to match exactly (44px)
   ========================================================= */
.footer-social-circle,
.group-pill,
#waGroupBtn,
#tgGroupBtn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 6px !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Ensure equal spacing and alignment */
.footer-social-icons,
.footer-group-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Unified SVG Size */
.footer-social-circle svg,
.group-pill svg,
#waGroupBtn svg,
#tgGroupBtn svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    fill: currentColor !important;
}

/* =============================================
   Payment Services Submenu
   ============================================= */
#paymentSubmenu {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--r-sm);
    padding: 10px 0;
    margin: 5px 10px 10px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

#paymentSubmenu .submenu-title {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid var(--line);
    margin-bottom: 5px;
    pointer-events: none;
}

#paymentSubmenu .menu-subrow {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

#paymentSubmenu .menu-subrow:hover {
    background: rgba(214, 181, 109, 0.1);
    color: #000;
    padding-right: 22px;
}

/* Quick Fix: Smooth Open Animation */
@keyframes menuSlideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-submenu:not([hidden]) {
    animation: menuSlideDown 0.3s ease-out forwards;
}

/* ================================
   FIX: Categories Submenu Visibility
   ================================ */
#categoriesSubmenu[hidden] {
    display: none !important;
}

#categoriesSubmenu {
    display: block;
    margin-top: 6px;
    padding-right: 36px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .2s ease, max-height .2s ease;
}

#categoriesSubmenu.is-open {
    opacity: 1;
    max-height: 260px;
}

#categoriesToggle.is-open .menu-chevron svg {
    transform: rotate(180deg);
    transition: transform .2s ease;
}

/* =========================================
   FIX: Side Menu Size + Safe Scroll Area
   ========================================= */

/* Smaller menu width */
.menu-content {
    width: 260px !important;
    padding: 18px 16px !important;
}

/* Fixed height and internal scrolling */
.side-menu .menu-content {
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;

    /* Safe areas */
    padding-top: 18px !important;
    padding-bottom: calc(18px + env(safe-area-inset-bottom)) !important;
}

/* Sticky close button */
.side-menu .close-menu {
    position: sticky !important;
    top: 0 !important;
    background: transparent;
    z-index: 5;
    padding: 6px 0 10px;
}

/* Adjusted menu rows */
.side-nav .menu-row {
    padding: 12px 12px !important;
    border-radius: 14px !important;
}

/* Spacing for submenus */
.menu-submenu {
    margin: 6px 0 10px !important;
    padding-right: 34px !important;
}

/* Ensure bottom space */
.side-nav {
    padding-bottom: 22px !important;
}

/* =========================================
   FIX: Side Menu Bottom Safe Space (Bottom Bar)
   ========================================= */

/* إذا عندك شريط سفلي ثابت، ارفع مساحة أسفل القائمة */


/* مساحة أسفل القائمة تمنع اختفاء آخر خيار */
.side-menu .menu-content {
    padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom) + 18px) !important;
}

/* لو شريطك السفلي له كلاس معروف (جرّب الأكثر شيوعًا) */
.bottom-nav,
.bottom-bar,
.bottom-navigation,
.nav-bottom,
.fixed-bottom-bar {
    height: var(--bottom-nav-h) !important;
}

/* =========================================
   GLOBAL FIX: Sticky Header + Bottom Bar
   Professional Layout Control
   ========================================= */



/* ===== 1) HEADER FIX (ثابت فعلياً بكل الأجهزة) ===== */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 9999 !important;
    backdrop-filter: blur(10px);
}

/* منع المحتوى من الاختفاء خلف الهيدر */
body {
    padding-top: var(--header-height);
}

/* ===== 2) SIDE MENU FIX (لا ينغطي أول عنصر) ===== */
.side-menu .menu-content {
    padding-top: calc(var(--header-height) + 15px) !important;
    max-height: 100vh;
    overflow-y: auto;
}

/* زر الإغلاق واضح دائماً */
.side-menu .close-menu {
    margin-top: 5px !important;
}

/* ===== 3) BOTTOM BAR FIX (ثابت بدون تخريب المحتوى) ===== */
.bottom-nav,
.bottom-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    height: var(--bottom-bar-height);
    z-index: 9998;
    backdrop-filter: blur(10px);
}

/* منع المحتوى من الاختفاء خلف الشريط السفلي */
main,
.main-content {
    padding-bottom: var(--bottom-bar-height);
}

/* ===== 4) تحسين تجربة السحب في الجوال ===== */
html,
body {
    overscroll-behavior: none;
}

/* ===== 5) توافق كامل مع الشاشات الصغيرة ===== */
@media (max-width: 768px) {
    :root {
        --header-height: 66px;
        --bottom-bar-height: 58px;
    }
}

/* =========================================
   HEADER FIX + SIDE MENU CLOSE FIX
   ADD ONLY — paste at END of styles.css
   ========================================= */

/* 1) Fix header height + align items perfectly */
.header {
    padding: 10px 0 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
}

/* Ensure inner container has padding so content doesn't hit screen edge */
.header-top {
    padding-left: 16px !important;
    padding-right: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    min-height: 64px !important;
    /* يمنع صغر الهيدر */
}

/* 2) Make left (menu) + right (search) same fixed size */
.menu-btn,
.header-search-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* 3) Center logo block and prevent "DAR MODEXA" from dropping */
.logo-section {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-width: 0 !important;
}

.logo-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.15 !important;
    text-align: center !important;
    max-width: 70vw !important;
    /* يمنع تمدد زائد بالجوال */
}

.store-label {
    margin: 0 !important;
    padding: 4px 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

.logo-text h1 {
    margin: 6px 0 0 !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    /* لا ينزل سطر جديد */
}

/* اخفاء الخط/اللمعة اللي كانت تسبب تمدد أحياناً */
.logo-text h1::after {
    display: none !important;
}

/* 4) Search icon wrapper fix */
.header-icons {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* 5) Mobile tune: keep everything inside header */
@media (max-width: 480px) {
    .header-top {
        min-height: 60px !important;
    }

    .logo-text h1 {
        font-size: 20px !important;
    }

    .store-label {
        font-size: 11px !important;
    }
}

/* ==============================
   SIDE MENU: Fix close button moving
   ============================== */

.menu-content {
    position: relative !important;
    padding-top: 56px !important;
    /* مساحة للزر الثابت */
}

/* تثبيت زر X داخل القائمة نفسها */
.close-menu {
    position: sticky !important;
    /* يبقى ثابت أعلى القائمة عند السحب */
    top: 0 !important;
    z-index: 5 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 12px 0 !important;
    background: rgba(255, 255, 255, .92) !important;
    border: 1px solid rgba(0, 0, 0, .08) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10) !important;
}

/* لو لازال يتحرك بسبب padding/scroll: نخليه fixed داخل عرض القائمة */
/* =========================================================
   GLOBAL FINAL PATCH
   (Covers Header, Side Menu, Icons, Cart, Social, Groups)
   ========================================================= */

/* -------- 1) HEADER & NAVIGATION -------- */


.header {
    height: var(--header-h-final) !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    /* Luxury look */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* Ensure Logo is centered perfectly */
.header-top {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
}

.logo-section {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
}

.logo-text h1 {
    white-space: nowrap !important;
    font-size: 20px !important;
    line-height: 1 !important;
    margin: 4px 0 0 !important;
    color: #000 !important;
}

/* Prevents content from hiding behind header */
body {
    padding-top: calc(var(--header-h-final) + 10px) !important;
}

/* -------- 2) SIDE MENU -------- */
.side-menu .menu-content {
    /* Safe Area Top/Bottom */
    padding-top: calc(var(--header-h-final) + 20px) !important;
    padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    /* Bottom Bar height */
    overflow-y: auto !important;
    height: 100vh !important;
    max-height: 100vh !important;
    width: 280px !important;
    background: #fff !important;
}

.close-menu {
    position: fixed !important;
    /* Stick to viewport relative to menu width is tricky, fixed is safer if positioned right */
    top: 15px !important;
    right: auto !important;
    /* We need it inside the menu z-index */
    z-index: 10001 !important;
    /* Higher than header */
    background: #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    /* Adjust position based on menu width */
    left: 20px !important;
}

/* Note: Since menu slides from right in RTL, 'left' position targets the inner side. */

/* -------- 3) UNIFIED ICONS (Social & Groups) -------- */
.social-icon-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    /* Circle */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    color: #000 !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

/* Unified SVG size inside icons */
.social-icon-btn svg {
    width: 22px !important;
    height: 22px !important;
    fill: currentColor !important;
}

.social-icon-btn:hover {
    border-color: #d4af37 !important;
    /* Gold */
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-2px) !important;
    color: #000 !important;
}

.social-row {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 15px 0 !important;
    flex-wrap: wrap !important;
}

.join-title,
.follow-text {
    text-align: center !important;
    font-weight: bold !important;
    margin: 20px 0 10px !important;
    color: #333 !important;
}

/* -------- 4) CART ICON (Product Page) -------- */
/* Make it match bottom bar style */
.pd-action-cart {
    width: 48px !important;
    /* Standard button height */
    height: 48px !important;
    border-radius: 12px !important;
    /* Soft corners */
    background: #000 !important;
    /* Primary action often black */
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    padding: 0 !important;
}

/* If the user wants it white with black stroke like bottom bar */
/* But bottom bar is on white/blur background. 
   Let's check the request: "Same shape/dimensions/style as bottom bar icon" 
   Bottom bar icon is just an SVG usually. 
   If "Product Page Cart Icon" is a button, we make it square-ish with soft corners.
*/
.pd-action-cart svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 2px !important;
}

/* -------- 5) MENU SCROLL FIX -------- */
/* Ensure last item (Contact) isn't cut off */
.side-nav {
    padding-bottom: 50px !important;
}

/* -------- 6) FIX SEARCH ICON POSITION -------- */
.header-search-btn {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* -------- 7) PREVENT HORIZONTAL SCROLL -------- */
html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* =========================================================
   UI ADJUSTMENT: Header Search Left / Menu Right
   (RTL Flexbox: Order 1=Right, Order 3=Left)
   ========================================================= */
.header-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* 1. Menu Button (Right side) */
.menu-btn {
    order: 1 !important;
}

/* 2. Logo (Center) */
.logo-section {
    order: 2 !important;
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
}

/* 3. Search Icon (Left side) */
.header-icons {
    order: 3 !important;
    margin-right: auto !important;
    /* Push it to the far end if needed */
    margin-left: 0 !important;
}

/* Ensure Logo text doesn't overflow */
.logo-text {
    width: 100% !important;
}

/* === LUX SIDE MENU PATCH v1 === */
/* Side menu overlay: softer + blur */
.side-menu .menu-overlay {
    background: rgba(0, 0, 0, .45) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

/* Menu panel: white luxury glass + gold hint */
.side-menu .menu-content {
    background: rgba(255, 255, 255, .92) !important;
    border-left: 1px solid rgba(0, 0, 0, .06) !important;
    box-shadow: -14px 0 50px rgba(0, 0, 0, .14) !important;
    border-top-left-radius: 22px !important;
    border-bottom-left-radius: 22px !important;
}

/* Close button: premium circle */
.side-menu .close-menu {
    position: sticky !important;
    top: 12px !important;
    z-index: 10 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid rgba(0, 0, 0, .10) !important;
    color: #111 !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14) !important;
}

/* Rows: card style */
.side-menu .side-nav .menu-row {
    background: rgba(255, 255, 255, .86) !important;
    border: 1px solid rgba(0, 0, 0, .06) !important;
    border-radius: 16px !important;
    padding: 14px 14px !important;
    margin: 6px 0 !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .07) !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease !important;
}

.side-menu .side-nav .menu-row:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .10) !important;
    border-color: rgba(212, 175, 55, .35) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, .10), rgba(255, 255, 255, .92)) !important;
}

.side-menu .side-nav .menu-row:active {
    transform: scale(.99) !important;
}

/* Active row: gold edge + subtle glow */
.side-menu .side-nav .menu-row.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, .14), rgba(255, 255, 255, .92)) !important;
    border-color: rgba(212, 175, 55, .40) !important;
    box-shadow: 0 18px 45px rgba(212, 175, 55, .16), 0 12px 30px rgba(0, 0, 0, .08) !important;
    position: relative !important;
}

.side-menu .side-nav .menu-row.active::before {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 10px !important;
    bottom: 10px !important;
    width: 4px !important;
    border-radius: 999px !important;
    background: #D4AF37 !important;
}

/* Icons + text */
.side-menu .menu-ic {
    color: #111 !important;
    opacity: .95 !important;
}

.side-menu .menu-txt {
    color: #111 !important;
    font-weight: 700 !important;
    letter-spacing: .1px !important;
}

.side-menu .menu-chevron {
    color: rgba(0, 0, 0, .55) !important;
}

/* Submenu container */
.side-menu .menu-submenu {
    margin: 6px 0 10px !important;
    padding: 10px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, .10), rgba(255, 255, 255, .70)) !important;
    border: 1px solid rgba(212, 175, 55, .22) !important;
}

/* Submenu title */
.side-menu .submenu-title {
    display: block !important;
    padding: 6px 10px 10px !important;
    font-weight: 800 !important;
    color: #111 !important;
}

/* Submenu items */
.side-menu .menu-subrow {
    display: block !important;
    padding: 12px 12px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0, 0, 0, .06) !important;
    background: rgba(255, 255, 255, .80) !important;
    margin: 6px 0 !important;
    font-weight: 700 !important;
    color: #111 !important;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease !important;
}

.side-menu .menu-subrow:hover {
    transform: translateY(-1px) !important;
    border-color: rgba(212, 175, 55, .35) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .10) !important;
}







/* --- Scroll Lock Utility --- */
body.no-scroll {
    overflow: hidden !important;
    touch-action: none !important;
}

/* === GLOBAL LUXURY PATCH v1 (header line + card hover + logo glow) === */

/* --- 1) STRICT STICKY HEADER FIX (No Gaps) --- */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove old fixed-header compensation */
body,
.main-content,
main {
    padding-top: 0 !important;
}

.header {
    position: sticky !important;
    position: -webkit-sticky !important;
    /* Safari support */
    top: env(safe-area-inset-top, 0px) !important;
    margin-top: 0 !important;
    transform: none !important;
    z-index: 10000 !important;
    width: 100% !important;
}

.header::before {
    display: none !important;
}

.header-top {
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 60px !important;
}

.logo-text h1 {
    white-space: nowrap !important;
}

/* --- 2) Product Cards Luxury Hover --- */
.product-card {
    transition: transform .22s ease, box-shadow .22s ease !important;
    will-change: transform;
}

.product-card img {
    transition: transform .3s ease, filter .3s ease !important;
}

@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, .10), 0 4px 12px rgba(212, 175, 55, .08) !important;
    }

    .product-card:hover img {
        transform: scale(1.03) !important;
        filter: brightness(1.04) !important;
    }
}

@media (hover: none) {
    .product-card:active {
        transform: translateY(-1px) !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .08) !important;
    }
}

/* --- 3) Subtle Gold Glow on Logo \"DAR MODEXA\" --- */
.logo-text h1 .brand-en {
    /* Gold glow handled by filter in main brand section */
    text-shadow: none !important;
}


/* === PRODUCT CARD GALLERY (Swipe + Dots) === */
.card-gallery {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    /* Matches typical card radius */
    isolation: isolate !important;
    /* Fix for overflow radius */
}

/* Track */
.card-track {
    display: flex !important;
    width: 100% !important;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    will-change: transform !important;
}

.card-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    position: relative !important;
}

.card-slide img {
    display: block !important;
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    /* Let container handle radius */
}

/* Dots */
.card-dots {
    position: absolute !important;
    bottom: 8px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 5px !important;
    z-index: 5 !important;
    pointer-events: none !important;
}

.card-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.card-dot.active {
    background: #d4af37 !important;
    /* Gold */
    width: 16px !important;
    border-radius: 10px !important;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.6) !important;
}

/* Arrows */
.card-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 28px !important;
    height: 28px !important;
    background: rgba(0, 0, 0, 0.45) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 5 !important;
    opacity: 0 !important;
    /* Hidden default */
    transition: all 0.2s ease !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    font-size: 14px !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.card-arrow.prev {
    left: 8px !important;
}

.card-arrow.next {
    right: 8px !important;
}

.card-arrow:hover {
    background: #d4af37 !important;
    color: #000 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Show arrows on hover (Desktop) */
@media (hover: hover) {
    .card-gallery:hover .card-arrow {
        opacity: 1 !important;
    }
}

/* Mobile: Arrows visible but subtle */
@media (hover: none) {
    .card-arrow {
        opacity: 0.7 !important;
        width: 26px !important;
        height: 26px !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .card-arrow:active {
        background: #d4af37 !important;
        opacity: 1 !important;
    }
}

/* =========================================
   GLOBAL LIGHTBOX (Modal)
   ========================================= */
.lightbox {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease !important;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 1 !important;
}

.lightbox-content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lb-slider {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lb-img {
    max-width: 92vw !important;
    max-height: 78vh !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    transition: opacity 0.3s ease !important;
    user-select: none !important;
}

.lb-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 28px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: all 0.2s ease !important;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1);
}

.lb-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: all 0.2s ease !important;
}

.lb-arrow:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.lb-prev {
    left: 20px !important;
}

.lb-next {
    right: 20px !important;
}

/* Desktop: Show arrows on hover */
@media (hover: hover) {
    .lb-arrow {
        opacity: 0 !important;
    }

    .lightbox-content:hover .lb-arrow {
        opacity: 1 !important;
    }
}

/* Mobile: Arrows always visible */
@media (hover: none) {
    .lb-arrow {
        background: rgba(0, 0, 0, 0.3) !important;
        opacity: 1 !important;
    }
}

.lb-dots {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 10 !important;
}

.lb-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.lb-dot.active {
    background: #d4af37 !important;
    /* Gold */
    transform: scale(1.2);
}

/* --- Premium Cart Summary --- */
.summary-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 25px;
}

.summary-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.summary-row.total-row {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-top: 15px;
}

.summary-row.discount-row {
    color: #27ae60;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: #eaeaea;
    margin: 15px 0;
}

.discount-note {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
}

.btn-whatsapp-order {
    display: block;
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

.btn-whatsapp-order:active {
    transform: scale(0.98);
}

.summary-footer-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}

/* --- Cart Actions Row (New) --- */
.cart-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #111;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp:active {
    transform: scale(0.98);
}

/* Call Button */
.btn-call {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
}

.btn-call:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
}

.btn-call:active {
    transform: scale(0.98);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 480px) {
    .cart-actions-row {
        gap: 10px;
    }

    .btn-action {
        font-size: 14px;
        padding: 0 8px;
    }
}

/* --- Empty Cart Reordering & Premium UI --- */

.cart-empty-slot {
    margin: 10px 0 12px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Target the existing empty cart element */
#emptyCart {
    /* Reset/Override inline styles via !important */
    display: none;
    /* Controlled by JS */
    width: 100%;
    max-width: 560px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    padding: 24px 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    text-align: center;
    margin: 8px auto 10px !important;
}

/* Icon - assuming it's the first div or emoji */
#emptyCart div:first-child,
#emptyCart .empty-icon-wrapper {
    font-size: 72px;
    opacity: 0.9;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

@media (min-width: 481px) {
    #emptyCart div:first-child {
        font-size: 84px;
    }
}

/* Text */
#emptyCart .empty-message {
    font-size: 18px;
    font-weight: 800;
    margin: 6px 0 16px;
    color: #333;
    font-family: 'Tajawal', sans-serif;
}

/* Button */
#emptyCart .btn-primary {
    background: #0b0b0b;
    color: #D6B56D;
    border-radius: 999px;
    height: 44px;
    padding: 0 24px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#emptyCart .btn-primary:hover,
#emptyCart .btn-primary:active {
    transform: scale(0.98);
}

@media (max-width: 480px) {
    .cart-empty-slot {
        margin: 5px 0 10px;
    }

    #emptyCart {
        padding: 16px 14px;
        margin: 5px auto 8px !important;
        border-radius: 16px;
    }

    #emptyCart .empty-message {
        margin-bottom: 12px;
    }
}

/* --- Empty Cart Refinement (No Card / Inline Style) --- */

/* 1) Remove Card Styling */
#emptyCart,
.empty-cart,
.empty-cart--inline {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 10px auto 12px !important;
    width: min(560px, 92vw);
    text-align: center;
}

/* 2) Center Elements */
#emptyCart>*,
.empty-cart>*,
.empty-cart--inline>* {
    margin-left: auto;
    margin-right: auto;
}

/* 3) Icon Styling */
#emptyCart div:first-child,
#emptyCart .empty-icon-wrapper,
#emptyCart img,
.empty-cart img,
.empty-cart--inline img,
#emptyCart svg,
.empty-cart svg,
.empty-cart--inline svg {
    font-size: 64px !important;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 6px auto 8px !important;
    opacity: .92;
    line-height: 1;
}

/* 4) Text Styling */
#emptyCart .empty-message,
#emptyCart h2,
#emptyCart .empty-title,
.empty-cart h2,
.empty-cart .empty-title,
.empty-cart--inline h2,
.empty-cart--inline .empty-title {
    font-size: 18px !important;
    font-weight: 900 !important;
    margin: 0 auto 10px !important;
    letter-spacing: .2px;
    color: #333;
}

/* Paragraph Text */
#emptyCart p,
.empty-cart p,
.empty-cart--inline p {
    margin: 0 auto 10px !important;
}

/* 5) Button Styling */
#emptyCart .btn-primary,
#emptyCart a,
#emptyCart button,
.empty-cart a,
.empty-cart button,
.empty-cart--inline a,
.empty-cart--inline button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    background: #0b0b0b !important;
    color: #D6B56D !important;
    border: 0 !important;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
    width: auto !important;
}

/* 6) Slot Spacing */
.cart-empty-slot {
    margin: 6px 0 10px !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* 7) Mobile Responsive */
@media (max-width: 480px) {

    #emptyCart div:first-child,
    #emptyCart .empty-icon-wrapper,
    #emptyCart img,
    .empty-cart img,
    .empty-cart--inline img,
    #emptyCart svg,
    .empty-cart svg,
    .empty-cart--inline svg {
        font-size: 58px !important;
        width: auto !important;
        height: auto !important;
        margin: 4px auto 6px !important;
    }

    #emptyCart .empty-message,
    #emptyCart h2,
    #emptyCart .empty-title,
    .empty-cart h2,
    .empty-cart .empty-title,
    .empty-cart--inline h2,
    .empty-cart--inline .empty-title {
        font-size: 17px !important;
        margin-bottom: 8px !important;
    }

    #emptyCart .btn-primary,
    #emptyCart a,
    #emptyCart button,
    .empty-cart a,
    .empty-cart button,
    .empty-cart--inline a,
    .empty-cart--inline button {
        height: 40px !important;
        font-size: 13.5px !important;
        padding: 0 16px !important;
    }
}

/* --- Favorites Subtitle (VIP) --- */
.favorites-subtitle {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    margin-top: 10px;
    margin-bottom: 18px;
    line-height: 1.75;
    letter-spacing: .2px;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Tajawal', sans-serif;
}

.favorites-subtitle .gold {
    color: #C9A227;
    font-weight: 700;
}

.favorites-subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 68px;
    height: 2px;
    border-radius: 99px;
    background: rgba(201, 162, 39, .35);
}

@media (max-width: 480px) {
    .favorites-subtitle {
        font-size: 14px;
        margin-top: 8px;
        margin-bottom: 16px;
        padding-bottom: 9px;
    }
}

/* --- Favorites Subtitle Animation --- */
.favorites-subtitle {
    opacity: 0;
    transform: translateY(8px);
    animation: favSubtitleIn 0.7s ease forwards;
}

@keyframes favSubtitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .favorites-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* --- Gold Shimmer Animation --- */
.gold-shimmer {
    background: linear-gradient(90deg,
            #bfa14a 0%,
            #f3e2a9 40%,
            #bfa14a 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Standard fallbacks included if needed, but this works for intended shine */
    animation: goldMove 4s linear infinite;
    display: inline-block;
    /* Helps with transform/clip stability */
    font-weight: 700;
}

@keyframes goldMove {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gold-shimmer {
        animation: none;
    }
}

/* --- Offers Header Row --- */
.offers-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.offers-title {
    margin: 0;
}

.offers-subtitle-left {
    margin: 0;
    font-size: 0.85em;
    /* Slightly smaller than title */
    font-weight: 700;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.2;
    white-space: nowrap;
    /* Prevent wrapping */
    opacity: 0.95;
    font-family: 'Tajawal', sans-serif;
}

/* Soft Gold Shimmer */
.offers-subtitle-left .gold-shimmer {
    background: linear-gradient(90deg,
            #bfa14a 0%,
            #f6e7b9 40%,
            #bfa14a 80%);
    background-size: 180% auto;
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
    animation: goldMoveSoft 6s linear infinite;
}

@keyframes goldMoveSoft {
    0% {
        background-position: 180% center;
    }

    100% {
        background-position: -180% center;
    }
}

/* Mobile Responsive */
@media (max-width: 520px) {
    .offers-header-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .offers-subtitle-left {
        white-space: normal;
        font-size: 0.9em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .offers-subtitle-left .gold-shimmer {
        animation: none;
    }
}

/* ===== Match Favorites Header Style (Offers) ===== */
.fav-style-header {
    width: 100%;
    margin: 0 auto;
    padding: 10px 14px 6px;
}

.fav-style-header .page-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    /* Title on right like Favorites */
}

.fav-style-header .page-title {
    margin: 0;
    font-weight: 900;
    font-size: 28px;
    /* Same feel */
    color: #111;
    letter-spacing: .2px;
}

.fav-style-header .page-title-line {
    height: 2px;
    width: 180px;
    /* Approx same length */
    background: #c9a227;
    /* Gold */
    border-radius: 999px;
    margin: 10px 0 8px auto;
    /* Right alignment */
}

.fav-style-header .page-subtitle {
    margin: 0;
    font-size: 15px;
    /* Smaller than title */
    font-weight: 700;
    color: rgba(0, 0, 0, .65);
    text-align: right;
    /* Same as Favorites */
    line-height: 1.4;
    font-family: 'Tajawal', sans-serif;
}

/* Mobile: Ensure it doesn't crowd filters */
@media (max-width: 520px) {
    .fav-style-header {
        padding: 10px 12px 4px;
    }

    .fav-style-header .page-title {
        font-size: 26px;
    }

    .fav-style-header .page-title-line {
        width: 160px;
        margin-top: 8px;
        margin-bottom: 6px;
    }

    .fav-style-header .page-subtitle {
        font-size: 14px;
    }
}

/* ===== Offers Header (Match Favorites) ===== */
/* CSS Removed to use standard .section-title class */

.offersSubtitle {
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: rgba(0, 0, 0, .65);
    margin: 0;
    font-family: 'Tajawal', sans-serif;
}

/* Mobile Adjustments */
@media (max-width: 520px) {
    .offersSubtitle {
        font-size: 14px;
    }
}


/* =========================================
   ABSHER - SLIDER FINAL (Height 210 + Content Visible)
   ========================================= */

.slider-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 210px !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 0 24px !important;
    border-radius: var(--r-lg) !important;
    box-shadow: var(--shadow) !important;
}

@media (min-width:768px) {
    .slider-container {
        height: 280px !important;
    }
}

@media (min-width:1100px) {
    .slider-container {
        height: 320px !important;
    }
}

#sliderWrapper,
.slider-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    height: 100% !important;
    align-items: stretch !important;
}

#sliderWrapper .slide,
.slider-wrapper .slide,
.slide.hero-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: inherit !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

#sliderWrapper .slide img,
.slide>img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

#sliderWrapper .slide::after,
.slide::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .45)) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

#sliderWrapper .slide>div,
.slide>div {
    position: relative !important;
    z-index: 2 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 16px !important;
}

.slide-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    margin: 0 !important;
    text-shadow: 0 8px 25px rgba(0, 0, 0, .45) !important;
}

.slider-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 3 !important;
    margin-top: 12px !important;
    text-decoration: none !important;
}

/* dots ظپظˆظ‚ */
.slider-dots {
    z-index: 5 !important;
}

/* =========================================
   ABSHER - CATEGORIES GOLD/BLACK THEME ONLY
   (No HTML changes)
   ========================================= */

.categories-section {
    padding-top: 10px;
}

.categories-grid {
    gap: 14px !important;
}

.category-card {
    background: linear-gradient(145deg, #0b0b0b 0%, #141414 55%, #0a0a0a 100%) !important;
    border: 1px solid rgba(214, 181, 109, .28) !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .18) !important;
    border-radius: 18px !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
    text-decoration: none !important;
    overflow: hidden !important;
    position: relative !important;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 15% 15%,
            rgba(214, 181, 109, .20),
            rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
    z-index: 0;
}

/* Hover / Tap */
.category-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(214, 181, 109, .55) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25) !important;
}

.category-card:active {
    transform: scale(.985) !important;
}

.category-card * {
    position: relative !important;
    z-index: 2 !important;
}

.category-icon {
    background: rgba(214, 181, 109, .10) !important;
    border: 1px solid rgba(214, 181, 109, .25) !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18) !important;
    margin: 0 auto 10px auto !important;
}

.category-card h3 {
    color: #D6B56D !important;
    font-weight: 800 !important;
    letter-spacing: .2px !important;
    font-size: 16px !important;
    margin: 0 !important;
}

@media (max-width: 420px) {
    .category-card {
        border-radius: 16px !important;
    }

    .category-icon {
        width: 50px !important;
        height: 50px !important;
        border-radius: 14px !important;
        font-size: 24px !important;
    }

    .category-card h3 {
        font-size: 15px !important;
    }
}

/* =========================================
   ABSHER - CATEGORIES LUX TOUCH (Gold Glow)
   Add at VERY END of styles.css
   ========================================= */

.category-card {
    border: 1px solid rgba(214, 181, 109, .22) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16) !important;
}

@media (hover:hover) {
    .category-card:hover {
        box-shadow:
            0 18px 44px rgba(0, 0, 0, .22),
            0 0 0 1px rgba(214, 181, 109, .20),
            0 0 28px rgba(214, 181, 109, .12) !important;
    }
}

.category-card:active {
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .22),
        0 0 0 1px rgba(214, 181, 109, .25),
        0 0 34px rgba(214, 181, 109, .18) !important;
}

.category-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 12px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(214, 181, 109, 0),
            rgba(214, 181, 109, .65),
            rgba(214, 181, 109, 0));
    opacity: .55;
    pointer-events: none;
    z-index: 1;
}

.category-card h3 {
    text-shadow: 0 10px 22px rgba(0, 0, 0, .30) !important;
}

.category-icon {
    box-shadow:
        0 10px 20px rgba(0, 0, 0, .16),
        inset 0 0 0 1px rgba(214, 181, 109, .10) !important;
}

/* ===== MEN CATEGORY CARD SLIDER (isolated) ===== */
.men-cat-card[data-men-slider="true"] {
    position: relative !important;
    overflow: hidden !important;
    background: none !important;
    background-size: cover !important;
    background-position: center 25% !important;
    background-repeat: no-repeat !important;
    transform: translateZ(0);
    transition: background-image 1s ease-in-out !important;
}

/* أخفاء الأيقونة لأن الخلفية صور */
.men-cat-card[data-men-slider="true"] .category-icon {
    display: none !important;
}

/* تغميق خفيف لتحسين وضوح النص */
.men-cat-card[data-men-slider="true"]::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .55)) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* تثبيت كلمة رجالي وسط الكرت */
.men-cat-card[data-men-slider="true"] h3 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, .45) !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    letter-spacing: .3px !important;
    text-shadow: 0 10px 26px rgba(0, 0, 0, .55) !important;
    z-index: 2 !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

/* اجعل كل المحتوى فوق الطبقة */
.men-cat-card[data-men-slider="true"] * {
    position: relative !important;
    z-index: 2 !important;
}

@media (hover:hover) {
    .men-cat-card[data-men-slider="true"]:hover {
        transform: translateY(-2px) !important;
    }
}

/* ===== WOMEN CATEGORY CARD SLIDER (isolated) ===== */
.women-cat-card[data-women-slider="true"] {
    position: relative !important;
    overflow: hidden !important;
    background: none !important;
    background-size: cover !important;
    background-position: center 25% !important;
    background-repeat: no-repeat !important;
    transform: translateZ(0);
    transition: background-image 1s ease-in-out !important;
}

/* إخفاء الأيقونة لأن الخلفية صور */
.women-cat-card[data-women-slider="true"] .category-icon {
    display: none !important;
}

/* تغميق خفيف لتحسين وضوح النص */
.women-cat-card[data-women-slider="true"]::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .55)) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* تثبيت كلمة نسائي وسط الكرت */
.women-cat-card[data-women-slider="true"] h3 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, .45) !important;
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    letter-spacing: .3px !important;
    text-shadow: 0 10px 26px rgba(0, 0, 0, .55) !important;
    z-index: 2 !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

/* اجعل كل المحتوى فوق الطبقة */
.women-cat-card[data-women-slider="true"] * {
    position: relative !important;
    z-index: 2 !important;
}

@media (hover:hover) {
    .women-cat-card[data-women-slider="true"]:hover {
        transform: translateY(-2px) !important;
    }
}

/* ===== UNIFIED CATEGORY CARD HEIGHT ===== */
.category-card {
    min-height: 130px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 420px) {
    .category-card {
        min-height: 120px !important;
    }
}

/* ===== KIDS CATEGORY CARD SLIDER (isolated) ===== */
.kids-cat-card[data-kids-slider="true"] {
    position: relative !important;
    overflow: hidden !important;
    background: none !important;
    background-size: cover !important;
    background-position: center 25% !important;
    background-repeat: no-repeat !important;
    transform: translateZ(0);
    transition: background-image 1s ease-in-out !important;
}

/* إخفاء الأيقونة لأن الخلفية صور */
.kids-cat-card[data-kids-slider="true"] .category-icon {
    display: none !important;
}

/* تغميق خفيف لتحسين وضوح النص */
.kids-cat-card[data-kids-slider="true"]::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .55)) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* تثبيت كلمة ولادي واطفال وسط الكرت بشكل فخم */
.kids-cat-card[data-kids-slider="true"] h3 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 8px 20px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, .60) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3) !important;
    z-index: 2 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    white-space: nowrap !important;
}

/* اجعل كل المحتوى فوق الطبقة */
.kids-cat-card[data-kids-slider="true"] * {
    position: relative !important;
    z-index: 2 !important;
}

@media (hover:hover) {
    .kids-cat-card[data-kids-slider="true"]:hover {
        transform: translateY(-2px) !important;
    }
}

/* ===== BAGS & SHOES CATEGORY CARD SLIDER (isolated) ===== */
.bags-cat-card[data-bags-slider="true"] {
    position: relative !important;
    overflow: hidden !important;
    background: none !important;
    background-size: cover !important;
    background-position: center 25% !important;
    background-repeat: no-repeat !important;
    transform: translateZ(0);
    transition: background-image 1s ease-in-out !important;
}

/* إخفاء الأيقونة لأن الخلفية صور */
.bags-cat-card[data-bags-slider="true"] .category-icon {
    display: none !important;
}

/* تغميق خفيف لتحسين وضوح النص */
.bags-cat-card[data-bags-slider="true"]::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .55)) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* تثبيت كلمة شنط واحذيه وسط الكرت بشكل فخم */
.bags-cat-card[data-bags-slider="true"] h3 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 8px 20px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, .60) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3) !important;
    z-index: 2 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    white-space: nowrap !important;
}

/* اجعل كل المحتوى فوق الطبقة */
.bags-cat-card[data-bags-slider="true"] * {
    position: relative !important;
    z-index: 2 !important;
}

@media (hover:hover) {
    .bags-cat-card[data-bags-slider="true"]:hover {
        transform: translateY(-2px) !important;
    }
}

/* =========================================
   GLOBAL LAYOUT FIXES (Full Width)
   ========================================= */
html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
    margin: 0;
    padding: 0;
}

.header,
.bottom-nav,
.main-footer,
.abshr-footer,
.footer {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

.bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    justify-content: space-around !important;
    /* Even spacing */
    padding-bottom: env(safe-area-inset-bottom, 10px) !important;
    /* iPhone home bar */
    background: #ffffff !important;
    /* Ensure background */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08) !important;
    /* Restoration of shadow */

    /* Center items on large screens */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ===============================
   FIX: Bottom Bar Centering (Desktop/Laptop)
   Add-only safe patch
   =============================== */
@media (min-width: 768px) {
    .bottom-nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
    }

    /* Remove the ul rule as it matches nothing */

    /* Also center other fixed elements */
    .toast {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        max-width: 600px !important;
        width: auto !important;
    }

    .search-overlay>div,
    .abshr-modal .box {
        max-width: 600px !important;
        /* Keep small overlays for better UX */
    }
}

.bottom-nav__item {
    flex: 1 !important;
    max-width: none !important;
    /* Allow growing */
}

/* Ensure container content is centered but wrapper is full width */
.header-top,
.footer-container,
.abshr-footer .wrap {
    max-width: 1200px !important;
    /* Keep content constrained if designed that way */
    margin: 0 auto !important;
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* Fix for any potential "container" classes that might be too narrow */
.container,
.main-content {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =========================================
   INNER PAGE LAYOUT SAFETY PATCH
   ========================================= */
.product-detail-layout,
.cart-container,
.checkout-container,
.products-section,
.contact-cards-container,
.main-content,
.container,
.favorites-container {
    width: 100% !important;
    max-width: 1200px !important;
    /* Match header constraint */
    margin: 0 auto !important;
    padding-left: 16px !important;
    /* Safe padding for mobile */
    padding-right: 16px !important;
    box-sizing: border-box !important;
}

/* Ensure body has space for fixed bottom nav */
body {
    padding-bottom: 90px !important;
    /* Spacing for fixed bottom nav */
}

/* =========================================
   BACK TO TOP BUTTON (Missing Styles)
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #000;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 1232px) {
    .back-to-top {
        right: auto;
        left: 50%;
        margin-left: 600px;
        /* Align to edge of 1200px container */
        transform: translateX(-50%) translateY(20px);
        /* Center relative to itself */
    }

    .back-to-top.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================================
   LUXURY POLISH (Scrollbar & Selection)
   ========================================= */
/* Custom Scrollbar for Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
    background: #D6B56D;
    /* Brand Gold */
    border-radius: 4px;
    border: 2px solid #f8f8f8;
    /* Creates padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #C9A227;
    /* Darker Gold on Hover */
}

/* Custom Text Selection */
::selection {
    background: #D6B56D;
    /* Brand Gold */
    color: #fff;
}

::-moz-selection {
    background: #D6B56D;
    color: #fff;
}

/* =========================================
   SMOOTH PAGE TRANSITIONS & LOADER
   ========================================= */
html {
    opacity: 1;
    transition: opacity 0.1s ease-out;
}

html.is-loading {
    opacity: 0 !important;
    transition: none !important;
    pointer-events: none !important;
}

html.is-leaving {
    opacity: 0 !important;
    transition: opacity 0.1s ease-out !important;
    pointer-events: none !important;
}

/* Ensure body doesn't jump during transition */
body {
    background-color: var(--bg);
}

/* =============================================
   LUXURY FOOTER REDESIGN — Premium Black/White/Gold
   Target: .main-footer & .abshr-footer ONLY
   No HTML/JS changes. CSS overrides only.
   ============================================= */

/* ───────── SHARED FOOTER VARIABLES ───────── */
.main-footer,
.abshr-footer {
    --ft-black: #0B0B0C;
    --ft-white: #FFFFFF;
    --ft-gold: #D4AF37;
    --ft-gold-soft: rgba(212, 175, 55, 0.55);
    --ft-gold-glow: rgba(212, 175, 55, 0.25);
    --ft-text: rgba(255, 255, 255, 0.82);
    --ft-text-muted: rgba(255, 255, 255, 0.55);
    --ft-radius: 14px;
}

/* ───────── 1) MAIN FOOTER — Background & Border ───────── */
.main-footer {
    background: linear-gradient(180deg,
            #0e0e10 0%,
            var(--ft-black) 40%,
            #060608 100%) !important;
    border-top: 1px solid var(--ft-gold) !important;
    padding: 36px 20px 18px !important;
    margin-top: 32px !important;
    font-family: 'Tajawal', Tahoma, Arial, sans-serif !important;
    color: var(--ft-text) !important;
    direction: rtl !important;
    position: relative !important;
}

/* subtle top gold glow */
.main-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--ft-gold) 30%,
            var(--ft-gold) 70%,
            transparent);
    opacity: 0.6;
    pointer-events: none;
}

/* Container */
.main-footer .footer-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Row: flex grid */
.main-footer .footer-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 28px !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 24px !important;
}

/* Columns */
.main-footer .footer-col {
    flex: 1 1 200px !important;
    min-width: 180px !important;
}

/* Headings */
.main-footer .footer-col h3 {
    color: var(--ft-white) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
    position: relative !important;
    display: inline-block !important;
    letter-spacing: 0.3px !important;
}

.main-footer .footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--ft-gold), transparent);
    border-radius: 2px;
}

/* About text */
.main-footer .footer-col.about p {
    color: var(--ft-text) !important;
    font-size: 13.5px !important;
    line-height: 1.8 !important;
    margin: 0 !important;
}

/* Contact list */
.main-footer .footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.main-footer .footer-contact-list li {
    margin-bottom: 10px !important;
}

.main-footer .footer-contact-list a {
    color: var(--ft-text) !important;
    text-decoration: none !important;
    font-size: 13.5px !important;
    transition: color 0.25s ease, transform 0.25s ease !important;
    display: inline-block !important;
}

.main-footer .footer-contact-list a:hover {
    color: var(--ft-gold) !important;
    transform: translateX(-3px) !important;
}

/* Social links in main footer */
.main-footer .social-icons {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.main-footer .social-icons a {
    color: var(--ft-text) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
    border: 1px solid var(--ft-gold-soft) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    transition: all 0.25s ease !important;
    display: inline-block !important;
}

.main-footer .social-icons a:hover {
    color: var(--ft-gold) !important;
    border-color: var(--ft-gold) !important;
    background: rgba(212, 175, 55, 0.08) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px var(--ft-gold-glow) !important;
}

/* Footer bottom */
.main-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 16px !important;
    text-align: center !important;
}

.main-footer .footer-bottom p {
    color: var(--ft-text-muted) !important;
    font-size: 12.5px !important;
    margin: 0 !important;
    letter-spacing: 0.2px !important;
}


/* ═══════════════════════════════════════════════
   2) ABSHR FOOTER — Premium Luxury Override
   ═══════════════════════════════════════════════ */

.abshr-footer {
    background: linear-gradient(180deg,
            #0e0e10 0%,
            var(--ft-black) 40%,
            #060608 100%) !important;
    border-top: 1px solid var(--ft-gold) !important;
    padding: 32px 20px 22px !important;
    margin-top: 28px !important;
    font-family: 'Tajawal', Tahoma, Arial, sans-serif !important;
    color: var(--ft-text) !important;
    direction: rtl !important;
    position: relative !important;
}

/* Top gold glow line */
.abshr-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--ft-gold) 30%,
            var(--ft-gold) 70%,
            transparent);
    opacity: 0.6;
    pointer-events: none;
}

/* Wrap: grid layout */
.abshr-footer .wrap {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    align-items: start !important;
}

@media (max-width: 520px) {
    .abshr-footer .wrap {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Columns */
.abshr-footer .col {
    min-width: 0 !important;
}

/* ───── Links / Buttons ───── */
.abshr-footer .links {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: stretch !important;
}

.abshr-footer .links button {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--ft-text) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    font-family: 'Tajawal', Tahoma, Arial, sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-align: right !important;
    transition: all 0.25s ease !important;
    letter-spacing: 0.2px !important;
}

.abshr-footer .links button:hover {
    background: rgba(212, 175, 55, 0.08) !important;
    border-color: var(--ft-gold-soft) !important;
    color: var(--ft-gold) !important;
    transform: translateX(-3px) !important;
}

.abshr-footer .links button:active {
    transform: scale(0.98) translateX(-3px) !important;
}

/* ───── Rating Section ───── */
.abshr-footer .ratingTitle {
    color: var(--ft-white) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 6px !important;
}

.abshr-footer .ratingTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--ft-gold), transparent);
    border-radius: 2px;
}

/* Stars */
.abshr-footer .abshr-stars,
.abshr-stars {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.abshr-footer .abshr-star,
.abshr-star {
    font-size: 22px !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: transform 0.2s ease, filter 0.2s ease !important;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.15)) !important;
}

/* Gold filled stars */
.abshr-footer .abshr-star.filled,
.abshr-star.filled {
    color: var(--ft-gold) !important;
}

/* Empty stars */
.abshr-footer .abshr-star:not(.filled),
.abshr-star:not(.filled) {
    color: rgba(255, 255, 255, 0.35) !important;
}

.abshr-footer .abshr-star:hover,
.abshr-star:hover {
    transform: scale(1.2) !important;
}

/* Rating note */
.abshr-footer .abshr-rating-note,
.abshr-rating-note {
    font-size: 12.5px !important;
    margin-top: 8px !important;
    color: var(--ft-text-muted) !important;
}


/* ═════════════════════════════════════════════
   3) UNIFIED SOCIAL & GROUPS SECTION
   ═════════════════════════════════════════════ */

.abshr-footer .footer-unified-section {
    margin-top: 24px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    text-align: center !important;
}

/* Section titles */
.abshr-footer .footer-unified-title {
    color: var(--ft-white) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
    letter-spacing: 0.3px !important;
    position: relative !important;
    display: inline-block !important;
}

.abshr-footer .footer-unified-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: var(--ft-gold);
    border-radius: 2px;
    opacity: 0.7;
}

/* Social icons row */
.abshr-footer .footer-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-bottom: 8px !important;
}

/* Social icon circles */
.abshr-footer .footer-social-circle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--ft-gold-soft) !important;
    color: var(--ft-white) !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.abshr-footer .footer-social-circle svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
    transition: transform 0.25s ease !important;
}

.abshr-footer .footer-social-circle:hover {
    transform: translateY(-3px) !important;
    border-color: var(--ft-gold) !important;
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--ft-gold) !important;
    box-shadow: 0 6px 20px var(--ft-gold-glow) !important;
}

.abshr-footer .footer-social-circle:active {
    transform: translateY(-1px) scale(0.96) !important;
}

/* ───── Group pills ───── */
.abshr-footer .footer-group-pills {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-top: 4px !important;
}

.abshr-footer .group-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--ft-gold-soft) !important;
    color: var(--ft-white) !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.abshr-footer .group-pill svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
}

.abshr-footer .group-pill:hover {
    transform: translateY(-3px) !important;
    border-color: var(--ft-gold) !important;
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--ft-gold) !important;
    box-shadow: 0 6px 20px var(--ft-gold-glow) !important;
}

.abshr-footer .group-pill:active {
    transform: translateY(-1px) scale(0.96) !important;
}

/* ───── Responsive ───── */
@media (max-width: 600px) {
    .main-footer {
        padding: 28px 16px 16px !important;
    }

    .main-footer .footer-row {
        flex-direction: column !important;
        gap: 22px !important;
    }

    .main-footer .footer-col {
        min-width: 100% !important;
    }

    .abshr-footer {
        padding: 26px 16px 20px !important;
    }

    .abshr-footer .footer-social-circle,
    .abshr-footer .group-pill {
        width: 42px !important;
        height: 42px !important;
    }
}

/* =============================================
   CATEGORY FILTERS — Size Filter Bar
   ============================================= */
.category-filters {
    margin-bottom: 20px;
}

.size-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.size-filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.size-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--text);
    min-width: 44px;
    text-align: center;
    flex-shrink: 0;
}

.size-filter-chip:hover {
    border-color: var(--brand);
    background: rgba(214, 181, 109, 0.08);
    transform: translateY(-1px);
}

.size-filter-chip.active {
    background: var(--accent);
    color: var(--brand);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .size-filter-chip {
        padding: 6px 14px;
        font-size: 12px;
        min-width: 38px;
    }

    .filter-label {
        font-size: 12px;
    }
}

/* =========================================
   FILTER BAR SMOOTH SCROLLING (Additional)
   ========================================= */
.type-filter-bar {
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.type-filter-bar::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* =========================================
   QUANTITY SELECTOR STYLES (PREMIUM)
   ========================================= */
.pd-quantity-block {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.qty-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.qty-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.qty-stock {
    font-size: 13px;
    color: #27ae60;
    /* specific green for availability */
    font-weight: 500;
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.qty-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.qty-btn:active {
    background: rgba(0, 0, 0, 0.1);
}

.qty-input {
    width: 50px;
    height: 44px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
    color: var(--text);
    -moz-appearance: textfield;
    appearance: textfield;
    /* Firefox remove arrows */
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ========================================================
   DUBAI LUXURY BOUTIQUE THEME v6.0
   Black: #0A0A0A | Gold: #B8963C → #E6D08F | BG: #F2F2F2
   ======================================================== */

/* --- Subtle Shine Animation for Gold Elements --- */
@keyframes subtleShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- 1) HEADER — Deep Royal Black --- */
.header {
    background: #0A0A0A !important;
    border-bottom: 1px solid rgba(184, 150, 60, 0.10) !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25) !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.header-top {
    min-height: 68px !important;
}

.header .menu-btn {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 22px !important;
    transition: color 0.3s ease !important;
}

.header .menu-btn:hover {
    color: #B8963C !important;
}

.header .header-search-btn,
.header .header-icons button {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease !important;
}

.header .header-search-btn:hover,
.header .header-icons button:hover {
    color: #B8963C !important;
}

.header .header-icons svg,
.header .header-search-btn svg {
    stroke: currentColor !important;
}

/* --- 2) BRAND LOGO — Ultra Luxury Gold --- */
.brand-lumar .brand-en {
    background: linear-gradient(135deg, #B8963C 0%, #CDAF58 30%, #E6D08F 55%, #B8963C 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 5px rgba(184, 150, 60, 0.18)) !important;
}

.brand-lumar .brand-ar {
    color: rgba(184, 150, 60, 0.65) !important;
}

.brand-lumar:hover .brand-en {
    filter: drop-shadow(0 0 8px rgba(184, 150, 60, 0.30)) !important;
}

.brand-lumar:hover .brand-ar {
    opacity: 1 !important;
    color: #B8963C !important;
}

/* --- 3) SEARCH OVERLAY — Dark Ultra --- */
.search-overlay {
    background: rgba(11, 11, 11, 0.98) !important;
}

.search-overlay .search-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(184, 150, 60, 0.20) !important;
    color: #fff !important;
    border-radius: var(--r-pill) !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
}

.search-overlay .search-input::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.search-overlay .search-input:focus {
    border-color: rgba(184, 150, 60, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(184, 150, 60, 0.08) !important;
}

.search-overlay button {
    color: #B8963C !important;
}

/* --- 4) SIDE MENU — Ultra Dark --- */
.menu-content {
    background: #0A0A0A !important;
}

.menu-row,
.menu-item-row {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 15px 18px !important;
}

.menu-row:hover,
.menu-row.active,
.menu-item-row:hover {
    background: rgba(184, 150, 60, 0.08) !important;
    color: #E6D08F !important;
}

.menu-row .menu-ic,
.menu-item-row .menu-ic {
    color: #B8963C !important;
}

.menu-row .menu-ic svg,
.menu-item-row .menu-ic svg {
    stroke: #B8963C !important;
}

.menu-subrow {
    color: rgba(255, 255, 255, 0.55) !important;
    padding: 12px 22px 12px 18px !important;
}

.menu-subrow:hover {
    background: rgba(184, 150, 60, 0.06) !important;
    color: #E6D08F !important;
}

.submenu-title {
    color: rgba(184, 150, 60, 0.7) !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.close-menu {
    color: rgba(255, 255, 255, 0.5) !important;
}

.menu-chevron svg {
    stroke: rgba(184, 150, 60, 0.5) !important;
}

/* --- 5) SECTION TITLES — Bigger, with Gold Underline --- */
.section-title {
    color: #0A0A0A !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    letter-spacing: 0.5px !important;
    padding-bottom: 14px !important;
    margin-bottom: 28px !important;
}

.section-title::after {
    background: linear-gradient(90deg, #B8963C, #E6D08F, #B8963C) !important;
    height: 2px !important;
    border-radius: 2px !important;
    opacity: 0.7 !important;
}

/* --- 6) BUTTONS — Gold Gradient with Subtle Shine --- */
.btn {
    border-radius: 12px !important;
    font-weight: 700 !important;
    transition: all 0.35s ease !important;
    letter-spacing: 0.3px !important;
}

.btn-primary,
.btn-action,
.slider-btn {
    background: linear-gradient(135deg, #B8963C 0%, #CDAF58 40%, #E6D08F 60%, #B8963C 100%) !important;
    background-size: 200% auto !important;
    color: #0A0A0A !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(184, 150, 60, 0.20) !important;
    transition: all 0.35s ease !important;
}

.btn-primary:hover,
.btn-action:hover,
.slider-btn:hover {
    background-position: right center !important;
    box-shadow: 0 6px 22px rgba(184, 150, 60, 0.30) !important;
    transform: translateY(-1px) !important;
}

.btn-outline {
    border: 1.5px solid #B8963C !important;
    color: #B8963C !important;
    background: transparent !important;
    border-radius: 12px !important;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #B8963C, #E6D08F) !important;
    color: #0A0A0A !important;
    border-color: transparent !important;
}

.btn-secondary {
    background: #0A0A0A !important;
    color: #E6D08F !important;
    border: 1px solid rgba(184, 150, 60, 0.15) !important;
}

.btn-secondary:hover {
    background: #141414 !important;
    border-color: rgba(184, 150, 60, 0.35) !important;
}

/* --- 7) PRODUCT CARDS — Ultra Clean --- */
.product-card {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000) !important;
    overflow: hidden !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(184, 150, 60, 0.12) !important;
}

.product-card .product-title {
    color: #0A0A0A !important;
    font-weight: 600 !important;
}

.product-card .product-price,
.product-card .price {
    color: #0A0A0A !important;
    font-weight: 800 !important;
}

.product-card .sale-price,
.product-card .old-price+.sale-price,
.sale-price {
    color: #B8963C !important;
    font-weight: 800 !important;
}

.product-card .old-price {
    color: #aaa !important;
    text-decoration: line-through !important;
}

/* Product image – slightly taller display */
.product-card .product-image {
    min-height: 200px !important;
}

/* Cart & Fav on cards */
.btn-icon-circle.add-to-cart {
    background: linear-gradient(135deg, #B8963C, #CDAF58, #E6D08F) !important;
    background-size: 200% auto !important;
    color: #0A0A0A !important;
    border: none !important;
    transition: all 0.35s ease !important;
}

.btn-icon-circle.add-to-cart:hover {
    background-position: right center !important;
    box-shadow: 0 4px 14px rgba(184, 150, 60, 0.25) !important;
}

.btn-fav.active,
.btn-fav:hover {
    color: #B8963C !important;
}

.btn-fav.active svg {
    fill: #B8963C !important;
    stroke: #B8963C !important;
}

.sale-badge,
.badge-sale {
    background: #0A0A0A !important;
    color: #E6D08F !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
}

/* --- 8) CATEGORY CARDS --- */
.category-card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 16px !important;
    transition: all 0.35s ease !important;
}

.category-card:hover {
    border-color: rgba(184, 150, 60, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-2px) !important;
}

.category-card h3 {
    color: #0A0A0A !important;
    font-weight: 700 !important;
}

/* --- 9) TRUST BAR — Ultra Dark Cards --- */
.trust-item {
    background: #0A0A0A !important;
    border: 1px solid rgba(184, 150, 60, 0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
    padding: 24px !important;
}

.trust-item h3 {
    color: #E6D08F !important;
    font-weight: 700 !important;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.5) !important;
}

.trust-icon {
    color: #B8963C !important;
    background: rgba(184, 150, 60, 0.08) !important;
}

/* --- 10) SLIDER — Refined Gold Accents --- */
.slide.hero-slide .slider-btn {
    background: linear-gradient(135deg, #B8963C, #E6D08F) !important;
    color: #0A0A0A !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: var(--r-pill) !important;
}

.dot.active {
    background: #B8963C !important;
}

.dot {
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* --- 11) BOTTOM NAV — Ultra Deep Dark --- */
.bottom-nav,
.bottom-navigation,
nav.bottom-nav {
    background: #0A0A0A !important;
    border-top: 1px solid rgba(184, 150, 60, 0.08) !important;
    box-shadow: 0 -2px 25px rgba(0, 0, 0, 0.20) !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

.bottom-nav__item {
    color: rgba(255, 255, 255, 0.40) !important;
    transition: color 0.3s ease !important;
}

.bottom-nav__item svg {
    stroke: rgba(255, 255, 255, 0.40) !important;
    transition: stroke 0.3s ease !important;
}

.bottom-nav__item.bnav-active {
    color: #B8963C !important;
}

.bottom-nav__item.bnav-active svg {
    stroke: #B8963C !important;
}

.bottom-nav__item.bnav-active::before {
    background: #B8963C !important;
}

.bottom-nav__item span.bnav-label {
    color: inherit !important;
}

.bottom-nav__badge {
    background: #B8963C !important;
    color: #0A0A0A !important;
    font-weight: 800 !important;
}

/* --- 12) FOOTER — Ultra Royal Dark --- */
.main-footer,
.abshr-footer,
footer {
    background: #0A0A0A !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-top: 1px solid rgba(184, 150, 60, 0.08) !important;
    padding-top: 40px !important;
}

.main-footer h3,
.abshr-footer h3,
footer h3,
.footer-unified-title {
    color: #B8963C !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
}

.main-footer a,
.abshr-footer a,
footer a {
    color: rgba(255, 255, 255, 0.50) !important;
    transition: color 0.3s ease !important;
}

.main-footer a:hover,
.abshr-footer a:hover,
footer a:hover {
    color: #B8963C !important;
}

.footer-bottom p,
.footer-credits p {
    color: rgba(255, 255, 255, 0.30) !important;
    font-size: 12px !important;
}

.gold-text {
    color: #B8963C !important;
}

.dev-btn {
    color: rgba(184, 150, 60, 0.7) !important;
}

.dev-btn:hover {
    color: #B8963C !important;
}

/* --- 13) TOAST — Ultra Elegant --- */
.toast {
    background: #0A0A0A !important;
    color: #E6D08F !important;
    border: 1px solid rgba(184, 150, 60, 0.12) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35) !important;
    border-radius: 12px !important;
}

/* --- 14) BACK TO TOP — Gold --- */
.back-to-top {
    background: linear-gradient(135deg, #B8963C, #E6D08F) !important;
    color: #0A0A0A !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(184, 150, 60, 0.25) !important;
    border-radius: 50% !important;
}

/* --- 15) FORM INPUTS — Gold Focus --- */
.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 12px !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B8963C !important;
    box-shadow: 0 0 0 3px rgba(184, 150, 60, 0.10) !important;
}

/* --- 16) FILTER & SIZE CHIPS --- */
.abshr-chip.active,
.type-chip.active,
.filter-btn.active,
.size-btn.active,
.size-chip.active {
    background: #0A0A0A !important;
    color: #B8963C !important;
    border-color: #B8963C !important;
}

.abshr-chip,
.type-chip,
.filter-btn,
.size-btn {
    border: 1px solid var(--line) !important;
    color: var(--text) !important;
    border-radius: var(--r-pill) !important;
}

/* --- 17) CART SUMMARY --- */
#cartSummaryNew {
    background: #0A0A0A !important;
    color: #fff !important;
    border: 1px solid rgba(184, 150, 60, 0.10) !important;
    border-radius: 16px !important;
}

#cartSummaryNew .summary-label {
    color: rgba(255, 255, 255, 0.50) !important;
}

#cartSummaryNew .summary-value {
    color: #E6D08F !important;
}

#discountNote {
    color: #B8963C !important;
}

/* --- 18) PRODUCT DETAIL --- */
.product-detail-layout .product-price,
#productDetailPrice .product-price {
    color: #0A0A0A !important;
    font-weight: 800 !important;
    font-size: 22px !important;
}

#productDetailPrice .sale-price {
    color: #B8963C !important;
}

.btn-whatsapp-order {
    background: #25D366 !important;
    color: #fff !important;
    border-radius: 12px !important;
}

/* --- 19) SOCIAL ICONS --- */
.social-icon-btn {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
}

.social-icon-btn:hover {
    color: #B8963C !important;
    border-color: rgba(184, 150, 60, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* --- 20) ALT SECTION BG --- */
.products-section[style*="background:#fafafa"],
.products-section[style*="background: #fafafa"] {
    background: #EEECEA !important;
}

/* --- 21) CART ITEMS --- */
.cart-item {
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

/* --- 22) SPACING — Ultra Luxury Whitespace --- */
.products-section {
    padding: 40px 0 !important;
}

.categories-section {
    padding: 36px 16px !important;
}

.main-content {
    padding-top: 8px !important;
}

/* --- 23) SCROLLBAR — Ultra Thin Gold --- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(184, 150, 60, 0.30);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 150, 60, 0.55);
}

/* --- 24) SELECTION --- */
::selection {
    background: rgba(184, 150, 60, 0.20);
    color: #0A0A0A;
}

/* --- 25) FIXED HEADER BG OVERRIDE --- */
.header {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* --- END ULTRA LUXURY FASHION HOUSE THEME --- */

/* =========================================================
   ABSHER - MOBILE GRID FIX (Force visibility on all screens)
   ========================================================= */
@media (max-width: 768px) {
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        gap: 12px !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .category-filters,
    .filter-row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .products-section,
    .main-content {
        overflow: visible !important;
        display: block !important;
    }
}