/* ============================================
   REFLAX BALL — Premium Sports Store
   Dark Theme with Blue/Red/Yellow/Orange Blend
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

:root {
    --blue: #3b82f6;
    --blue-glow: #2563eb;
    --red: #ef4444;
    --red-glow: #dc2626;
    --yellow: #eab308;
    --yellow-glow: #ca8a04;
    --orange: #f97316;
    --orange-glow: #ea580c;
    --bg: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --surface: #141414;
    --surface-2: #1a1a1a;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --text-muted: #666666;
    --border: #222222;
    --gradient-brand: linear-gradient(135deg, var(--blue), var(--red), var(--orange), var(--yellow));
    --gradient-hero: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(239,68,68,0.1), rgba(249,115,22,0.12), rgba(234,179,8,0.08));
    --gradient-card-border: linear-gradient(135deg, var(--blue), var(--red), var(--orange));
    --font-ar: 'Tajawal', sans-serif;
    --font-brand: 'Orbitron', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-glow: 0 0 40px rgba(59,130,246,0.15), 0 0 80px rgba(239,68,68,0.08);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ar);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--red)); border-radius: 10px; }

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.header-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.preloader-logo-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px;
    background: var(--gradient-brand);
    border-radius: 10px;
}

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

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 40px 8px 16px;
    color: var(--text);
    font-family: var(--font-ar);
    font-size: 13px;
    width: 220px;
    transition: var(--transition);
    direction: rtl;
}

.search-box input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 15px rgba(59,130,246,0.2);
    width: 280px;
}

.search-box input::placeholder { color: var(--text-muted); }

.search-icon {
    position: absolute;
    right: 12px;
    font-size: 14px;
    pointer-events: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    pointer-events: all;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.mobile-menu-panel {
    position: absolute;
    top: 0; right: -320px;
    width: 300px; height: 100%;
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    margin-right: auto;
    background: var(--surface-2);
    color: var(--text);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--red);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dim);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
}

.mobile-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 60px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: var(--blue);
    top: -10%; right: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: var(--red);
    bottom: -15%; left: -5%;
    animation-delay: 2s;
}

.hero-orb-3 {
    width: 350px; height: 350px;
    background: var(--orange);
    top: 30%; left: 20%;
    animation-delay: 4s;
    opacity: 0.25;
}

.hero-orb-4 {
    width: 300px; height: 300px;
    background: var(--yellow);
    bottom: 10%; right: 25%;
    animation-delay: 6s;
    opacity: 0.2;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    opacity: 0;
}

body.loaded .hero-badge {
    animation: fadeInUp 0.6s ease-out both;
}

.hero-center-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    opacity: 0;
}

body.loaded .hero-center-logo {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.welcome-text {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.circle-logo-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(249,115,22,0.5), 0 0 120px rgba(239,68,68,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid rgba(249,115,22,0.5);
}

.inner-circle-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-brand);
    line-height: 1;
}

.inner-circle-logo .tf-part {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(to bottom, #60a5fa, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(59,130,246,0.5));
}

.inner-circle-logo .sport-part {
    font-size: 20px;
    font-weight: 800;
    color: #f97316;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(249,115,22,0.8);
}

.hero-title {
    display: flex;
    direction: ltr;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-brand);
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-title-tf {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(236,72,153,0.3));
}

.hero-title-sport {
    background: linear-gradient(135deg, #f43f5e, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(249,115,22,0.3));
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
    opacity: 0;
}

body.loaded .hero-subtitle {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

body.loaded .hero-actions {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-buttons-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-ar);
    transition: var(--transition);
    text-align: center;
}

.hero-btn-primary {
    flex: 1;
    background: linear-gradient(90deg, #ec4899, #f43f5e, #f97316, #eab308); 
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(244,63,94,0.4);
    border: none;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244,63,94,0.6);
}

.hero-btn-secondary {
    flex: 1;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

.hero-btn-outline-full {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-btn-outline-full:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0;
}

body.loaded .hero-stats {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-brand);
    font-size: 28px;
    font-weight: 800;
}

.stat-wilaya .hero-stat-num { color: #f43f5e; text-shadow: 0 0 15px rgba(244,63,94,0.5); }
.stat-categories .hero-stat-num { color: #f97316; text-shadow: 0 0 15px rgba(249,115,22,0.5); }
.stat-products .hero-stat-num { color: #f472b6; text-shadow: 0 0 15px rgba(244,114,182,0.5); }

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 4px;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--gradient-brand);
    padding: 16px 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-content span {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 30px;
    white-space: nowrap;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-section {
    padding: 80px 30px;
    position: relative;
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    /* Desktop: 4 columns in 2 rows of 4 = 8 categories */
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    height: 260px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.12);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card-bg {
    transform: scale(1.15);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    transition: var(--transition);
}

/* Per-category unique color overlays */
.cat-boxing .category-card-overlay    { background: linear-gradient(to top, rgba(239,68,68,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.cat-handball .category-card-overlay  { background: linear-gradient(to top, rgba(34,197,94,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.cat-clothing .category-card-overlay  { background: linear-gradient(to top, rgba(249,115,22,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.cat-swimming .category-card-overlay  { background: linear-gradient(to top, rgba(59,130,246,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.cat-football .category-card-overlay  { background: linear-gradient(to top, rgba(234,179,8,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.cat-judo .category-card-overlay      { background: linear-gradient(to top, rgba(168,85,247,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.cat-mma .category-card-overlay       { background: linear-gradient(to top, rgba(239,68,68,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.cat-home .category-card-overlay      { background: linear-gradient(to top, rgba(59,130,246,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }

.category-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.category-icon {
    font-size: 36px;
    margin-bottom: 4px;
}

.category-card-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.category-count {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.3);
    padding: 3px 12px;
    border-radius: 20px;
}

.special-category-card {
    grid-column: 3;
}

/* ============================================
   FILTER TABS
   ============================================ */
.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-ar);
    color: var(--text-dim);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: rgba(255,255,255,0.15);
    color: var(--text);
}

.filter-tab.active {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(59,130,246,0.25);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section {
    padding: 80px 30px;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* === PRODUCT CARD === */
.product-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: cardAppear 0.5s ease-out forwards;
}

.product-card:hover {
    border-color: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
}

/* Click animation */
.product-card.clicked {
    animation: cardClick 0.4s ease;
}

@keyframes cardClick {
    0% { transform: scale(1); }
    20% { transform: scale(0.96) rotate(-1deg); }
    40% { transform: scale(1.02) rotate(0.5deg); }
    60% { transform: scale(0.99) rotate(-0.3deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #0d0d0d;
}

.product-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.discount-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(239,68,68,0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.product-card-color-line {
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-color-line {
    opacity: 1;
}

.product-card-info {
    padding: 16px;
}

.product-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-card-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--yellow);
    font-family: var(--font-brand);
    letter-spacing: 0.5px;
}

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

.product-card-order-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--surface-2);
    border: 1px solid var(--border);
    transition: var(--transition);
    font-family: var(--font-ar);
}

.product-card-order-btn:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

/* ============================================
   LOAD MORE
   ============================================ */
.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 14px 48px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-ar);
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.load-more-btn:hover {
    border-color: var(--blue);
    background: rgba(59,130,246,0.1);
    box-shadow: 0 4px 20px rgba(59,130,246,0.2);
}

.load-dots { letter-spacing: 3px; }

/* ============================================
   MODALS (Product & Comments)
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.open {
    pointer-events: all;
    opacity: 1;
}

.modal.open .modal-content {
    transform: scale(1) translateY(0);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal.open .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px; left: 16px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--red);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image-section {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius) 0 0 var(--radius);
}

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

.modal-discount-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--red);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(239,68,68,0.4);
}

.modal-info-section {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.modal-product-name {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
}

.modal-product-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
}

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-price {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-brand);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-old-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.modal-qty-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-qty-row label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 40px; height: 40px;
    background: var(--surface-2);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.qty-btn:hover { background: rgba(255,255,255,0.1); }

.qty-control span {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background: #25d366;
    transition: var(--transition);
    margin-top: 8px;
    font-family: var(--font-ar);
}

.order-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.3);
}

.order-btn-icon {
    font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    padding: 80px 30px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 200px;
    background: var(--gradient-brand);
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-icon { font-size: 36px; }

.footer-logo-text {
    font-family: var(--font-brand);
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.8;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-links-group a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--text);
    padding-right: 6px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.footer-social-icon svg {
    width: 18px; height: 18px;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-social-icon.whatsapp:hover { background: #25d366; border-color: #25d366; }
.footer-social-icon.whatsapp:hover svg { color: #fff; }

.footer-social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743); border-color: #dc2743; }
.footer-social-icon.instagram:hover svg { color: #fff; }

.footer-social-icon.facebook:hover { background: #1877f2; border-color: #1877f2; }
.footer-social-icon.facebook:hover svg { color: #fff; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom strong {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: bounce-soft 3s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 28px; height: 28px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #222;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================
   ORDER BUTTONS WRAPPER (Modal)
   ============================================ */
.order-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.order-btn-number {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 2px;
    letter-spacing: 1px;
    font-family: var(--font-brand);
}

.order-btn-alt {
    background: #128c7e;
}

.order-btn-alt:hover {
    background: #0e7a6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(18,140,126,0.3);
}

/* ============================================
   FLOATING SOCIAL CONTAINER
   ============================================ */
.floating-social {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.floating-social .whatsapp-float {
    position: relative;
    bottom: auto;
    left: auto;
}

.instagram-float {
    width: 56px;
    height: 56px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(225,48,108,0.4);
    transition: var(--transition);
    animation: bounce-soft 3s ease-in-out infinite;
    animation-delay: 0.5s;
    position: relative;
}

.instagram-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.instagram-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(225,48,108,0.5);
}

.instagram-tooltip {
    position: absolute;
    left: 70px;
    background: #222;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.instagram-float:hover .instagram-tooltip {
    opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

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

@keyframes cardAppear {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.4); }
}

@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 80px 30px;
    position: relative;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    display: block;
    position: relative;
}

.map-container:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
    transform: translateY(-5px);
}

.map-link {
    cursor: pointer;
    text-decoration: none;
}

.map-overlay-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(239,68,68,0.95), rgba(249,115,22,0.95));
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ar);
    font-size: 16px;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 6px 30px rgba(239,68,68,0.5);
    transition: var(--transition);
    animation: bounce-soft 3s ease-in-out infinite;
    white-space: nowrap;
}

.map-link:hover .map-overlay-btn {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 8px 40px rgba(239,68,68,0.7);
}

.map-overlay-icon {
    font-size: 22px;
}

.map-overlay-text {
    letter-spacing: 0.5px;
}

.club-map-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.map-container:hover .club-map-img {
    transform: scale(1.05);
}

/* ============================================
   SPECIAL OFFER BADGE (on product image)
   ============================================ */
.special-offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316, #eab308);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    z-index: 5;
    box-shadow: 0 2px 15px rgba(239,68,68,0.6), 0 0 25px rgba(249,115,22,0.3);
    animation: special-offer-pulse 2s ease-in-out infinite;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.25);
}

@keyframes special-offer-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 15px rgba(239,68,68,0.6), 0 0 25px rgba(249,115,22,0.3); }
    50% { transform: scale(1.1); box-shadow: 0 4px 25px rgba(239,68,68,0.8), 0 0 40px rgba(249,115,22,0.5); }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 30px;
    position: relative;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: var(--shadow-glow);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.stars {
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 18px;
    font-style: italic;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-brand);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.preloader-text {
    font-family: var(--font-brand);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.pulsing-icon {
    animation: pulse-glow 1.5s ease-in-out infinite;
}

/* ============================================
   PRODUCT CARD SPECIAL OFFER TEXT
   ============================================ */
.special-offer-text {
    color: #ef4444;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    margin-bottom: 5px;
    animation: special-offer-pulse 2s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — Full 50% Mobile / 50% PC
   ============================================ */

/* === Large Desktop (1400px+) === */
@media (min-width: 1400px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
    .category-card { height: 300px; }
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* === Regular Desktop / Laptop (1024–1399px) === */
@media (max-width: 1399px) and (min-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .category-card { height: 260px; }
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .footer-content { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* === Tablet (768–1023px) === */
@media (max-width: 1023px) and (min-width: 768px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .search-box input { width: 160px; }
    .search-box input:focus { width: 200px; }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .category-card { height: 230px; }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .modal-body { grid-template-columns: 1fr; }
    .modal-image-section { border-radius: var(--radius) var(--radius) 0 0; aspect-ratio: 16/9; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .map-overlay-btn { font-size: 14px; padding: 12px 24px; }
}

/* === Mobile (below 768px) — fully optimized === */
@media (max-width: 767px) {
    /* Header */
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .header-inner { padding: 10px 16px; }
    .logo-text { font-size: 18px; }
    .search-box input { width: 130px; font-size: 12px; }
    .search-box input:focus { width: 170px; }

    /* Hero */
    .hero { padding: 90px 16px 40px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .hero-stat-num { font-size: 26px; }
    .hero-stat-label { font-size: 12px; }
    .hero-actions { gap: 10px; }
    .hero-btn { padding: 12px 24px; font-size: 14px; }

    /* Sections */
    .categories-section { padding: 48px 14px; }
    .products-section   { padding: 48px 14px; }
    .section-header { margin-bottom: 32px; }

    /* CATEGORIES — 2 columns, 4 rows */
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .category-card {
        height: 160px;
        border-radius: 14px;
    }
    .category-icon { font-size: 28px; }
    .category-card-content h3 {
        font-size: 13px;
        font-weight: 800;
    }
    .category-count { font-size: 11px; padding: 2px 8px; }

    /* PRODUCTS — 2 columns on mobile */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .product-card-info { padding: 10px; }
    .product-card-name { font-size: 12px; margin-bottom: 6px; }
    .product-card-price { font-size: 14px; }
    .product-card-price-row { margin-bottom: 10px; gap: 6px; }
    .product-card-order-btn {
        padding: 8px 6px;
        font-size: 12px;
        border-radius: 8px;
    }
    .discount-badge { font-size: 10px; padding: 3px 8px; }
    .special-offer-badge { font-size: 10px; padding: 4px 10px; top: 8px; right: 8px; }

    /* Filter tabs */
    .filter-tabs { gap: 6px; padding: 0 14px; }
    .filter-tab { padding: 8px 12px; font-size: 11px; }

    /* Modal */
    .modal-content { width: 94%; border-radius: 14px; }
    .modal-body { grid-template-columns: 1fr; }
    .modal-image-section {
        border-radius: 14px 14px 0 0;
        aspect-ratio: 4/3;
    }
    .modal-info-section { padding: 16px; gap: 12px; }
    .modal-product-name { font-size: 18px; }
    .modal-price { font-size: 22px; }

    /* Testimonials */
    .testimonials-section { padding: 48px 14px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 24px; }

    /* Map */
    .map-section { padding: 48px 14px; }
    .map-overlay-btn { 
        font-size: 13px; 
        padding: 10px 16px; 
        bottom: 16px; 
        width: 90%; 
        white-space: normal; 
        text-align: center;
        justify-content: center;
    }
    .map-overlay-icon { font-size: 16px; flex-shrink: 0; }

    /* Footer */
    .footer { padding: 48px 16px 0; }
    .footer-content { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   VARIANTS
   ============================================ */
.modal-variants {
    margin: 8px 0 16px;
}
.modal-variants label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    display: block;
    margin-bottom: 12px;
}
.variants-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.variant-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-ar);
    cursor: pointer;
    transition: var(--transition);
}
.variant-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
}
.variant-btn.selected {
    border-color: var(--orange);
    background: rgba(249,115,22, 0.1);
    box-shadow: 0 0 12px rgba(249,115,22, 0.15);
    color: #fff;
}
.variant-color-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
}

/* ============================================
   IMAGE GALLERY (Clothing Products)
   ============================================ */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.65);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 42px; height: 42px;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}
.gallery-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 18px rgba(59,130,246,0.5);
}
.gallery-prev { right: 12px; }
.gallery-next { left: 12px; }

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%; transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}
.gallery-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}
.gallery-dot.active {
    background: var(--blue);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(59,130,246,0.6);
}

/* Fade animation for gallery image swap */
@keyframes gallery-fade {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}
.gallery-fade-in {
    animation: gallery-fade 0.3s ease-out forwards;
}

/* ============================================
   SIZE BUTTONS (Clothing / Footwear)
   ============================================ */
.sizes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.size-btn {
    min-width: 46px;
    height: 36px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    color: var(--text-dim);
    font-family: var(--font-ar);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-btn:hover {
    border-color: rgba(255,255,255,0.25);
    color: var(--text);
}

.size-btn.selected {
    border-color: var(--blue);
    background: rgba(59,130,246,0.15);
    color: #fff;
    box-shadow: 0 0 10px rgba(59,130,246,0.25);
}

/* ============================================
   CUSTOM CURSOR — Disabled
   ============================================ */
.custom-cursor,
.custom-cursor-follower { display: none !important; }

/* (placeholder to prevent dead-code removal) */
@media (min-width: 9999px) {
    * { cursor: none !important; }

    .custom-cursor {
        position: fixed;
        top: 0; left: 0;
        width: 32px;
        height: 32px;
        pointer-events: none;
        z-index: 99999;
        will-change: transform;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-cursor::after {
        content: '🥊';
        font-size: 22px;
        display: block;
        line-height: 1;
        filter: drop-shadow(0 0 5px rgba(239,68,68,0.7));
        transition: transform 0.15s cubic-bezier(0.4,0,0.2,1),
                    filter 0.15s ease;
        transform-origin: center center;
    }

    .custom-cursor.hovering::after {
        transform: scale(1.45) rotate(-25deg);
        filter: drop-shadow(0 0 12px rgba(239,68,68,1))
                drop-shadow(0 0 20px rgba(249,115,22,0.8));
    }

    .custom-cursor-follower {
        position: fixed;
        top: 0; left: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 2px solid rgba(239,68,68,0.45);
        pointer-events: none;
        z-index: 99998;
        will-change: transform;
        background: rgba(239,68,68,0.04);
        transition: width 0.3s cubic-bezier(0.4,0,0.2,1),
                    height 0.3s cubic-bezier(0.4,0,0.2,1),
                    border-color 0.3s ease,
                    background 0.3s ease,
                    box-shadow 0.3s ease;
    }

    .custom-cursor-follower.hovering {
        width: 60px;
        height: 60px;
        border-color: rgba(239,68,68,0.9);
        background: rgba(239,68,68,0.07);
        box-shadow:
            0 0 20px rgba(239,68,68,0.3),
            0 0 40px rgba(239,68,68,0.12),
            inset 0 0 12px rgba(239,68,68,0.08);
    }
}

@media (max-width: 1023px) {
    * { cursor: auto !important; }
    .custom-cursor,
    .custom-cursor-follower { display: none !important; }
}

