:root {
    --red: #e60000;
    --red-dark: #b30000;
    --red-glow: rgba(230,0,0,0.4);
    --black: #0a0a0a;
    --black2: #111111;
    --black3: #1a1a1a;
    --white: #ffffff;
    --white2: #f5f5f5;
    --gray: #888888;
    --gray2: #444444;
    --font-display: 'Bebas Neue', cursive;
    --font-latin: 'Rajdhani', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --shadow: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-red: 0 4px 24px rgba(230,0,0,0.3);
  }
  html[lang="en"] { direction: ltr; }
  html[lang="ar"] { direction: rtl; }
  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-arabic);
    overflow-x: hidden;
    cursor: default;
  }
  html[lang="en"] body { font-family: var(--font-latin); }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--black2); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

  /* ─── TOP BAR ─── */
#topbar {
    background: var(--red);
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;  /* ← allow dropdown to escape */
    z-index: 1000;      /* ← above the sticky header */
}
#topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0, transparent 40px,
        rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px
    );
    pointer-events: none;
    z-index: 0;  /* behind text */
}

/* keep topbar children above the stripe */
#topbar-text,
#lang-switcher {
    position: relative;
    z-index: 1;
}
  @keyframes topbarSlide { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:none; } }
  
  #lang-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: inherit;
  }
  #lang-btn:hover { background: rgba(255,255,255,0.25); }
  #lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-end: 0;
    background: var(--black2);
    border: 1px solid var(--gray2);
    border-radius: 6px;
    overflow: hidden;
    display: none;
    z-index: 9999;
    min-width: 120px;
    box-shadow: var(--shadow);
  }
 #lang-dropdown.open { display: block; animation: dropIn 0.2s ease both; }
  @keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
  .lang-option {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
  }
  .lang-option:hover { background: var(--red); }
  .lang-option.active { color: var(--red); }

  /* ─── HEADER ─── */
  #header {
    background: var(--black2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 20px rgba(0,0,0,0.8);
  }
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    gap: 20px;
  }
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
  }
  .logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    animation: logoShine 3s infinite;
  }
  @keyframes logoShine { 0%,100%{transform:rotate(0)translateX(-100%)} 50%{transform:rotate(0)translateX(100%)} }
  .logo-text { line-height: 1; }
  .logo-text .brand { font-family: var(--font-display); font-size: 22px; color: var(--white); letter-spacing: 2px; }
  .logo-text .sub { font-size: 10px; letter-spacing: 3px; color: var(--red); font-weight: 700; text-transform: uppercase; }

  /* Search */
  .search-wrap {
    flex: 1;
    max-width: 500px;
    position: relative;
  }
  .search-wrap input {
    width: 100%;
    background: var(--black3);
    border: 1px solid var(--gray2);
    color: var(--white);
    padding: 10px 20px 10px 48px;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
  }
  html[lang="ar"] .search-wrap input { padding: 10px 48px 10px 20px; }
  .search-wrap input:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
  .search-wrap input::placeholder { color: var(--gray); }
  .search-icon {
    position: absolute;
    inset-inline-start: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 14px;
    pointer-events: none;
  }
  .search-results {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    width: 100%;
    background: var(--black2);
    border: 1px solid var(--gray2);
    border-radius: 8px;
    z-index: 800;
    display: none;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .search-results.open { display: block; animation: dropIn 0.2s ease both; }
  .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .search-result-item:hover { background: var(--black3); }
  .search-result-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    background: var(--black3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--red);
    flex-shrink: 0;
  }
  .search-result-info .name { font-size: 13px; font-weight: 600; }
  .search-result-info .price { font-size: 12px; color: var(--red); }

  /* Cart Button */
  .cart-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    flex-shrink: 0;
    overflow: hidden;
  }
  .cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  }
  .cart-btn:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(230,0,0,0.5); }
  .cart-btn:active { transform: translateY(0); }
  .cart-badge {
    background: white;
    color: var(--red);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .cart-total { font-size: 14px; }
  .cart-info { display: flex; flex-direction: column; align-items: flex-start; }
  .cart-label { font-size: 10px; opacity: 0.8; }

  /* ─── NAVBAR CATEGORIES ─── */
  .nav-cats {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-cats::-webkit-scrollbar { display: none; }
  .nav-cat-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
  }
  .nav-cat-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
  }
  .nav-cat-link:hover { color: var(--white); }
  .nav-cat-link:hover::after { width: 100%; }
  .nav-cat-special { color: var(--red) !important; font-weight: 700; }
  .nav-cat-special:hover { color: var(--white) !important; }

  /* ─── HERO BANNER ─── */
  #hero {
    position: relative;
    height: 580px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.05);
    animation: heroBgIn 1.2s ease both;
  }
  @keyframes heroBgIn { from { transform:scale(1.15); opacity:0; } to { transform:scale(1.05); opacity:1; } }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.6) 50%,
      rgba(0,0,0,0.2) 100%
    );
  }
  html[lang="ar"] .hero-overlay {
    background: linear-gradient(
      270deg,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.6) 50%,
      rgba(0,0,0,0.2) 100%
    );
  }
  .hero-overlay2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.9) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 640px;
  }
  html[lang="ar"] .hero-content { margin-inline-start: auto; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    animation: heroEl 0.8s 0.3s ease both;
    text-transform: uppercase;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: heroEl 0.8s 0.5s ease both;
  }
  html[lang="ar"] .hero-title { font-family: var(--font-arabic); font-weight: 900; font-size: clamp(36px,5vw,64px); line-height: 1.1; }
  .hero-title span { color: var(--red); }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: heroEl 0.8s 0.7s ease both;
  }
  .hero-cta {
    display: flex;
    gap: 14px;
    animation: heroEl 0.8s 0.9s ease both;
    flex-wrap: wrap;
  }
  @keyframes heroEl { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
  .btn-primary {
    background: var(--red);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
  .hero-stats {
    position: absolute;
    bottom: 40px;
    inset-inline-end: 60px;
    display: flex;
    gap: 32px;
    z-index: 2;
    animation: heroEl 0.8s 1.1s ease both;
  }
  .hero-stat { text-align: center; }
  .hero-stat-num { font-family: var(--font-display); font-size: 36px; color: var(--red); line-height: 1; }
  .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

  /* ─── SECTION CONTAINER ─── */
  .section { padding: 60px 40px; }
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: 38px;
    letter-spacing: 2px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  html[lang="ar"] .section-title { font-family: var(--font-arabic); font-weight: 900; font-size: 28px; letter-spacing: 0; }
  .section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 36px;
    background: var(--red);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--red);
  }
  .see-all {
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
  }
  .see-all:hover { gap: 10px; }

  /* ─── PRODUCTS HORIZONTAL ROW ─── */
  .products-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--black3);
    scroll-snap-type: x mandatory;
  }
  .products-row::-webkit-scrollbar { height: 4px; }
  .products-row::-webkit-scrollbar-track { background: var(--black3); }
  .products-row::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

  /* ─── PRODUCT CARD ─── */
  .product-card {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    min-width: 220px;
    max-width: 220px;
    cursor: pointer;
    transition: var(--transition);
    scroll-snap-align: start;
    position: relative;
    flex-shrink: 0;
  }
  .product-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(230,0,0,0.2);
  }
  .product-card:hover .product-img img { transform: scale(1.08); }
  .product-img {
    height: 200px;
    background: var(--black3);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .product-img .img-placeholder {
    font-size: 60px;
    color: rgba(230,0,0,0.3);
  }
  .product-badge {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .product-body { padding: 14px; }
  .product-cat { font-size: 10px; color: var(--red); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
  .product-name { font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
  .product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
  .product-price { font-size: 18px; font-weight: 900; color: var(--red); }
  .product-price-old { font-size: 12px; color: var(--gray); text-decoration: line-through; margin-top: 2px; }
  .product-actions { display: flex; gap: 6px; }
  .btn-add-cart {
    background: var(--red);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .btn-add-cart:hover { background: var(--red-dark); transform: scale(1.1); }
  .btn-buy-now {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
    height: 34px;
    padding: 0 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    font-family: inherit;
    transition: var(--transition);
    white-space: nowrap;
  }
  .btn-buy-now:hover { background: var(--red); color: white; }

  /* ─── CATEGORIES SECTION ─── */
  .cats-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .cats-grid::-webkit-scrollbar { display: none; }
  .cat-card {
    position: relative;
    min-width: 180px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .cat-card:hover { transform: translateY(-4px); }
  .cat-card:hover .cat-img { transform: scale(1.08); }
  .cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
  }
  .cat-name {
    font-size: 16px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
  }
  html[lang="ar"] .cat-name { letter-spacing: 0; }
  .cat-count { font-size: 11px; color: var(--red); margin-top: 3px; }
  .cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: var(--transition);
    z-index: 2;
  }
  .cat-card:hover::before { border-color: var(--red); }

  /* ─── BEST SELLERS ─── */
  #bestsellers { background: var(--black2); }
  .bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  .bestsellers-grid .product-card { min-width: unset; max-width: unset; }

  /* ─── PROMO BANNER ─── */
  .promo-strip {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #ff3333 100%);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    gap: 20px;
  }
  .promo-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 20L20 0L40 20L20 40z'/%3E%3C/g%3E%3C/svg%3E");
  }
  .promo-text { position: relative; }
  .promo-text h2 { font-family: var(--font-display); font-size: 48px; letter-spacing: 2px; line-height: 1; }
  html[lang="ar"] .promo-text h2 { font-family: var(--font-arabic); font-weight: 900; font-size: 32px; }
  .promo-text p { font-size: 16px; opacity: 0.9; margin-top: 8px; }
  .promo-cta { position: relative; }
  .btn-white {
    background: white;
    color: var(--red);
    border: none;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    display: inline-block;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 40px 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand .brand-name { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 12px; }
  html[lang="ar"] .footer-brand .brand-name { font-family: var(--font-arabic); font-weight: 900; font-size: 22px; }
  .footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
  }
  .social-link:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-2px); }
  .footer-col h4 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-col h4::before { content: ''; display: block; width: 16px; height: 2px; background: var(--red); }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-links a:hover { color: var(--red); gap: 10px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray);
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bottom a { color: var(--red); text-decoration: none; }

  /* ─── CART DRAWER ─── */
  #cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(4px);
  }
  #cart-overlay.open { display: block; animation: fadeIn 0.3s ease both; }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }
  #cart-drawer {
    position: fixed;
    top: 0;
    inset-inline-end: -420px;
    width: 400px;
    height: 100vh;
    background: var(--black2);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: inset-inline-end 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  html[lang="ar"] #cart-drawer {
    inset-inline-end: auto;
    inset-inline-start: -420px;
    box-shadow: 10px 0 40px rgba(0,0,0,0.5);
  }
  #cart-drawer.open { inset-inline-end: 0; }
  html[lang="ar"] #cart-drawer.open { inset-inline-start: 0; }
  .cart-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .cart-drawer-title { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
  html[lang="ar"] .cart-drawer-title { font-family: var(--font-arabic); font-weight: 900; font-size: 20px; }
  .cart-drawer-title .count-badge {
    background: var(--red);
    color: white;
    font-family: var(--font-arabic);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
  }
  .cart-close {
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .cart-close:hover { background: var(--red); border-color: var(--red); }
  .cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
  }
  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 14px;
    color: var(--gray);
  }
  .cart-empty i { font-size: 64px; opacity: 0.2; }
  .cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: slideItem 0.3s ease both;
    align-items: center;
  }
  @keyframes slideItem { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:none} }
  .cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: var(--black3);
    object-fit: cover;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--red);
  }
  .cart-item-info { flex: 1; min-width: 0; }
  .cart-item-name { font-size: 13px; font-weight: 700; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cart-item-price { font-size: 15px; color: var(--red); font-weight: 900; }
  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }
  .qty-btn {
    width: 26px;
    height: 26px;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .qty-btn:hover { background: var(--red); border-color: var(--red); }
  .qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
  .cart-item-del {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .cart-item-del:hover { color: var(--red); }
  .cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .cart-total-label { font-size: 14px; color: var(--gray); }
  .cart-total-amount { font-size: 24px; font-weight: 900; color: var(--red); }
  .btn-checkout {
    width: 100%;
    background: var(--red);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-red);
  }
  .btn-checkout:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ─── PRODUCT PAGE OVERLAY ─── */
  #product-page {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 950;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  #product-page.open { transform: translateX(0); }
  .product-page-nav {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: var(--black2);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .back-btn {
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
  }
  .back-btn:hover { background: var(--red); border-color: var(--red); }
  .product-page-content { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
  .product-page-gallery { position: relative; }
  .product-page-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    background: var(--black2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(230,0,0,0.3);
  }
  .product-page-main-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
  .product-page-info {}
  .product-page-cat { font-size: 12px; color: var(--red); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
  .product-page-name { font-family: var(--font-display); font-size: 48px; letter-spacing: 1px; line-height: 1; margin-bottom: 16px; }
  html[lang="ar"] .product-page-name { font-family: var(--font-arabic); font-weight: 900; font-size: 32px; line-height: 1.2; }
  .product-page-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
  .stars { color: #ffd700; font-size: 14px; }
  .rating-count { font-size: 13px; color: var(--gray); }
  .product-page-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
  .product-page-price .current { font-size: 40px; font-weight: 900; color: var(--red); }
  .product-page-price .old { font-size: 20px; color: var(--gray); text-decoration: line-through; }
  .product-page-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 28px; }
  .product-page-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .product-page-actions .btn-primary { flex: 1; min-width: 140px; justify-content: center; font-size: 14px; padding: 14px 24px; }
  .product-page-actions .btn-outline { flex: 1; min-width: 140px; justify-content: center; font-size: 14px; padding: 14px 24px; }
  .suggested-title { font-family: var(--font-display); font-size: 30px; letter-spacing: 1px; padding: 0 40px; margin-bottom: 20px; }
  html[lang="ar"] .suggested-title { font-family: var(--font-arabic); font-weight: 900; font-size: 22px; }

  /* ─── CATEGORY PAGE OVERLAY ─── */
  #category-page {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 950;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  #category-page.open { transform: translateY(0); }
  .category-page-header {
    background: var(--black2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .cat-page-title { font-family: var(--font-display); font-size: 36px; letter-spacing: 2px; display: flex; align-items: center; gap: 14px; }
  html[lang="ar"] .cat-page-title { font-family: var(--font-arabic); font-weight: 900; font-size: 26px; }
  .cat-page-title i { color: var(--red); }
  .category-products-grid { padding: 40px; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }

  /* ─── POPUP / MODAL ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
  }
  .modal-overlay.open { display: flex; animation: fadeIn 0.3s ease both; }
  .modal {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px;
    width: 100%;
    max-width: 460px;
    animation: modalIn 0.3s ease both;
    position: relative;
  }
  @keyframes modalIn { from{opacity:0;transform:scale(0.9)translateY(20px)} to{opacity:1;transform:none} }
  .modal-close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .modal-close:hover { background: var(--red); border-color: var(--red); }
  .modal-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
  .modal-logo .logo-icon { width: 36px; height: 36px; font-size: 16px; }
  .modal-logo span { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; }
  html[lang="ar"] .modal-logo span { font-family: var(--font-arabic); font-weight: 900; font-size: 18px; }
  .modal h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 6px; }
  html[lang="ar"] .modal h3 { font-family: var(--font-arabic); font-weight: 900; font-size: 22px; }
  .modal p { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
  .modal-product-preview {
    background: var(--black3);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }
  .modal-product-preview .prod-img {
    width: 56px;
    height: 56px;
    background: var(--black2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--red);
    flex-shrink: 0;
  }
  .modal-product-preview .prod-name { font-size: 14px; font-weight: 700; }
  .modal-product-preview .prod-price { font-size: 16px; color: var(--red); font-weight: 900; margin-top: 4px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 7px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
  }
  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-glow);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }
  .form-group input::placeholder { color: var(--gray2); }
  .btn-submit-order {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 8px;
  }
  .btn-submit-order:hover { background: #1da851; transform: translateY(-1px); }

  /* ─── WHATSAPP FLOAT ─── */
  #wa-float {
    position: fixed;
    bottom: 30px;
    inset-inline-end: 30px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .wa-btn {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
  }
  @keyframes pulse {
    0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)}
    50%{box-shadow:0 4px 30px rgba(37,211,102,0.7)}
  }
  .wa-btn:hover { transform: scale(1.1); }
  .wa-tooltip {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
  }
  html[lang="ar"] .wa-tooltip { transform: translateX(-10px); }
  #wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

  /* ─── TOAST ─── */
  #toast {
    position: fixed;
    bottom: 100px;
    inset-inline-end: 30px;
    background: var(--black2);
    border: 1px solid var(--red);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 13px;
    font-weight: 600;
    max-width: 300px;
    box-shadow: var(--shadow-red);
  }
  #toast.show { transform: translateY(0); opacity: 1; }
  #toast i { color: var(--red); font-size: 18px; }

  /* ─── LOADING SHIMMER ─── */
  @keyframes shimmer {
    from { background-position: -200px 0; }
    to { background-position: calc(200px + 100%) 0; }
  }


  /* ─── INNER PAGES (exhibitions / gyms) ─── */
  .inner-page {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 950;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  html[lang="ar"] .inner-page { transform: translateX(100%); }
  .inner-page.open { transform: translateX(0); }
  .inner-page-header {
    background: var(--black2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    gap: 16px;
  }
  .inner-page-title {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  html[lang="ar"] .inner-page-title { font-family: var(--font-arabic); font-weight: 900; font-size: 24px; letter-spacing: 0; }

  /* ── Exhibitions ── */
  .exhibition-hero {
    position: relative;
    height: 320px;
    background: var(--black2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .exhibition-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
    opacity: 0.35;
    transform: scale(1.04);
    transition: transform 6s ease;
  }
  .exhibition-hero:hover .exhibition-hero-bg { transform: scale(1); }
  .exhibition-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
  }
  .exhibition-hero-content h2 {
    font-family: var(--font-display);
    font-size: 56px;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 12px;
  }
  html[lang="ar"] .exhibition-hero-content h2 { font-family: var(--font-arabic); font-weight: 900; font-size: 36px; }
  .exhibition-hero-content h2 span { color: var(--red); }
  .exhibition-hero-content p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }
  .exhibitions-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .info-strip-item {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-inline-end: 1px solid rgba(255,255,255,0.06);
  }
  .info-strip-item:last-child { border-inline-end: none; }
  .info-strip-icon {
    width: 48px;
    height: 48px;
    background: rgba(230,0,0,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--red);
    flex-shrink: 0;
  }
  .info-strip-text .label { font-size: 11px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
  .info-strip-text .val { font-size: 22px; font-weight: 900; margin-top: 3px; }
  html[lang="ar"] .info-strip-text .val { font-size: 18px; }
  .exhibitions-videos-section { padding: 48px 40px; }
  .exhibitions-videos-section h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  html[lang="ar"] .exhibitions-videos-section h3 { font-family: var(--font-arabic); font-weight: 900; font-size: 22px; }
  .exhibitions-videos-section h3 i { color: var(--red); }
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .video-card {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
  }
  .video-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(230,0,0,0.15); }
  .video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black3);
    overflow: hidden;
    cursor: pointer;
  }
  .video-thumb iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .video-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--black3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .video-thumb-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }
  .video-thumb-placeholder:hover img { opacity: 0.65; }
  .play-btn-overlay {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 20px rgba(230,0,0,0.5);
    transition: var(--transition);
  }
  .video-thumb-placeholder:hover .play-btn-overlay { transform: scale(1.1); }
  .video-info { padding: 16px; }
  .video-info .vtitle { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
  .video-info .vdesc { font-size: 12px; color: var(--gray); line-height: 1.6; }
  .exhibition-about { padding: 48px 40px; background: var(--black2); }
  .exhibition-about h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  html[lang="ar"] .exhibition-about h3 { font-family: var(--font-arabic); font-weight: 900; font-size: 22px; }
  .exhibition-about h3 i { color: var(--red); }
  .exhibition-about p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.9; max-width: 800px; }
  .exhibition-gallery { padding: 48px 40px; }
  .exhibition-gallery h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  html[lang="ar"] .exhibition-gallery h3 { font-family: var(--font-arabic); font-weight: 900; font-size: 22px; }
  .exhibition-gallery h3 i { color: var(--red); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
  }
  .gallery-img {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    background: var(--black2);
    cursor: pointer;
  }
  .gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
  .gallery-img:hover img { transform: scale(1.06); }

  /* ── Gyms ── */
  .gyms-grid-wrap { padding: 40px; }
  .gyms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
  .gym-card {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
  }
  .gym-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(230,0,0,0.18); }
  .gym-img-wrap {
    height: 220px;
    background: var(--black3);
    overflow: hidden;
    position: relative;
  }
  .gym-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
  .gym-card:hover .gym-img-wrap img { transform: scale(1.06); }
  .gym-num-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 2;
  }
  .gym-body { padding: 20px; }
  .gym-name { font-size: 18px; font-weight: 900; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
  .gym-name i { color: var(--red); font-size: 14px; }
  .gym-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
  }
  .gym-detail i { color: var(--red); font-size: 13px; margin-top: 2px; flex-shrink: 0; min-width: 14px; }
  .gym-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
  .gym-call-btn {
    flex: 1;
    background: var(--red);
    color: white;
    border: none;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
  }
  .gym-call-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
  .gym-wa-btn {
    flex: 1;
    background: #25D366;
    color: white;
    border: none;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
  }
  .gym-wa-btn:hover { background: #1da851; transform: translateY(-1px); }
  .gym-map-btn {
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
  }
  .gym-map-btn:hover { background: var(--red); border-color: var(--red); }

  @media (max-width: 768px) {
    .inner-page-header { padding: 16px; }
    .inner-page-title { font-size: 20px; }
    .exhibitions-info-strip { grid-template-columns: 1fr; }
    .info-strip-item { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .exhibitions-videos-section, .exhibition-about, .exhibition-gallery { padding: 32px 16px; }
    .gyms-grid-wrap { padding: 20px 16px; }
    .gyms-grid { grid-template-columns: 1fr; }
    .exhibition-hero-content h2 { font-size: 36px; }
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    .header-main { padding: 12px 16px; }
    .logo-text .brand { font-size: 18px; }
    .search-wrap { display: none; }
    .nav-cats { padding: 0 16px; }
    .section { padding: 40px 16px; }
    .hero-content { padding: 0 24px; }
    .hero-stats { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .promo-strip { flex-direction: column; text-align: center; padding: 36px 16px; }
    .product-page-content { grid-template-columns: 1fr; padding: 20px; gap: 30px; }
    .cart-drawer-title { font-size: 18px; }
    #cart-drawer { width: 100%; }
  }

  
  /* ─── HERO ─── */
  .page-hero {
    position: relative;
    height: 440px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroBgIn 1.2s ease both;
  }
  @keyframes heroBgIn { from { transform:scale(1.15); opacity:0; } to { transform:scale(1.05); opacity:1; } }
  .page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.72); }
  .page-hero-overlay2 { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,1) 100%); }
  .page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    animation: heroIn 0.9s ease both;
  }
  @keyframes heroIn { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
  .page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 4px;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  .page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  html[lang="ar"] .page-hero-title { font-family: var(--font-arabic); font-weight: 900; font-size: clamp(36px,6vw,64px); line-height: 1.1; letter-spacing: 0; }
  .page-hero-title span { color: var(--red); }
  .page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; line-height: 1.7; }

  /* ─── STATS STRIP ─── */
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--black2);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .stat-item {
    padding: 30px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-inline-end: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
  }
  .stat-item:last-child { border-inline-end: none; }
  .stat-item:hover { background: rgba(230,0,0,0.05); }
  .stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(230,0,0,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
    flex-shrink: 0;
    border: 1px solid rgba(230,0,0,0.2);
  }
  .stat-text .stat-val { font-family: var(--font-display); font-size: 36px; color: var(--red); line-height: 1; }
  html[lang="ar"] .stat-text .stat-val { font-family: var(--font-arabic); font-weight: 900; font-size: 28px; }
  .stat-text .stat-label { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
  html[lang="ar"] .stat-text .stat-label { letter-spacing: 0; }

  /* ─── SECTIONS ─── */
  .content-section { padding: 60px 40px; }
  .content-section.alt { background: var(--black2); }
  .section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-family: var(--font-display);
    font-size: 38px;
    letter-spacing: 2px;
  }
  html[lang="ar"] .section-heading h2 { font-family: var(--font-arabic); font-weight: 900; font-size: 26px; letter-spacing: 0; }
  .section-heading i { color: var(--red); font-size: 28px; }
  .section-heading::before {
    content: '';
    display: block;
    width: 4px;
    height: 36px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--red);
  }

  /* ─── ABOUT ─── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .about-text p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.9; margin-bottom: 16px; }
  .about-text p:last-child { margin-bottom: 0; }
  .about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
  .about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 14px 16px;
    transition: var(--transition);
  }
  .about-feature:hover { border-color: var(--red); background: rgba(230,0,0,0.05); }
  .about-feature i { color: var(--red); font-size: 18px; flex-shrink: 0; }
  .about-feature span { font-size: 14px; font-weight: 600; }
  .about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--black3);
  }
  .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
  .about-img-wrap:hover img { transform: scale(1.04); }
  .about-img-badge {
    position: absolute;
    bottom: 16px;
    inset-inline-start: 16px;
    background: var(--red);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-red);
  }

  /* ─── VIDEOS ─── */
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
  }
  .video-card {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
  }
  .video-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(230,0,0,0.18); }
  .video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black3);
    overflow: hidden;
  }
  .video-thumb iframe { width: 100%; height: 100%; border: none; display: block; }
  .video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }
  .video-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
  .video-placeholder:hover img { transform: scale(1.06); }
  .video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .video-placeholder:hover .video-play-overlay { background: rgba(0,0,0,0.5); }
  .play-circle {
    width: 64px;
    height: 64px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 24px rgba(230,0,0,0.6);
    transition: var(--transition);
    padding-inline-start: 4px;
  }
  .video-placeholder:hover .play-circle { transform: scale(1.12); box-shadow: 0 6px 32px rgba(230,0,0,0.8); }
  .video-duration {
    position: absolute;
    bottom: 10px;
    inset-inline-end: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .video-info { padding: 18px; }
  .video-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(230,0,0,0.12);
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    border: 1px solid rgba(230,0,0,0.2);
  }
  .video-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
  .video-desc { font-size: 12px; color: var(--gray); line-height: 1.6; }

  /* ─── GALLERY ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 14px;
  }
  .gallery-item {
    border-radius: 10px;
    overflow: hidden;
    background: var(--black2);
    cursor: pointer;
    position: relative;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; min-height: 160px; }
  .gallery-item:first-child img { min-height: 340px; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(230,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .gallery-item:hover .gallery-item-overlay { background: rgba(230,0,0,0.25); }
  .gallery-item-overlay i { font-size: 28px; color: white; opacity: 0; transform: scale(0.5); transition: var(--transition); }
  .gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

  
  /* ─── FILTERS & COUNT BAR ─── */
  .filter-bar {
    background: var(--black2);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    position: sticky;
    top: 74px;
    z-index: 50;
  }
  .filter-count {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .filter-count strong { color: var(--red); font-size: 18px; }
  .filter-search {
    position: relative;
    flex: 1;
    max-width: 320px;
  }
  .filter-search input {
    width: 100%;
    background: var(--black3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 9px 16px 9px 40px;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
  }
  html[lang="ar"] .filter-search input { padding: 9px 40px 9px 16px; }
  .filter-search input:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
  .filter-search input::placeholder { color: var(--gray); }
  .filter-search-icon {
    position: absolute;
    inset-inline-start: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 13px;
    pointer-events: none;
  }

  /* ─── GYMS GRID ─── */
  .gyms-wrap { padding: 40px; }
  .gyms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 26px;
  }
  .gym-card {
    background: var(--black2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    animation: cardIn 0.5s ease both;
  }
  @keyframes cardIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
  .gym-card:hover {
    border-color: var(--red);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(230,0,0,0.2);
  }

  /* Image */
  .gym-img-wrap {
    height: 230px;
    background: var(--black3);
    overflow: hidden;
    position: relative;
  }
  .gym-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .gym-card:hover .gym-img-wrap img { transform: scale(1.07); }
  .gym-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  }
  .gym-number {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: var(--red);
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-red);
    z-index: 2;
  }
  html[lang="ar"] .gym-number { font-family: var(--font-arabic); font-weight: 700; font-size: 12px; }
  .gym-area-tag {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 14px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .gym-area-tag i { color: var(--red); }
  .gym-status {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    background: #16a34a;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    letter-spacing: 0.5px;
  }
  .gym-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1.4s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

  /* Body */
  .gym-body { padding: 22px; }
  .gym-name {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .gym-name i { color: var(--red); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
  .gym-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .gym-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
  }
  .detail-icon {
    width: 28px;
    height: 28px;
    background: rgba(230,0,0,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--red);
    flex-shrink: 0;
    border: 1px solid rgba(230,0,0,0.15);
    margin-top: 1px;
  }
  .detail-text { line-height: 1.5; padding-top: 4px; }
  .detail-text strong { display: block; font-size: 11px; color: var(--gray); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1px; }
  html[lang="ar"] .detail-text strong { letter-spacing: 0; }

  /* Divider */
  .gym-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 20px; }

  /* Actions */
  .gym-actions { display: flex; gap: 10px; }
  .gym-btn {
    flex: 1;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    white-space: nowrap;
  }
  .gym-btn-call { background: var(--red); color: white; }
  .gym-btn-call:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red); }
  .gym-btn-wa { background: #25D366; color: white; }
  .gym-btn-wa:hover { background: #1da851; transform: translateY(-1px); }
  .gym-btn-map { background: var(--black3); color: white; border: 1px solid rgba(255,255,255,0.1) !important; border: none; flex: 0 0 auto; padding: 11px 14px; }
  .gym-btn-map:hover { background: rgba(230,0,0,0.15); border-color: var(--red) !important; color: var(--red); }

  /* ─── EMPTY STATE ─── */
  .no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
    display: none;
  }
  .no-results i { font-size: 60px; opacity: 0.2; margin-bottom: 16px; display: block; }
  .no-results p { font-size: 15px; }

  /* ─── MAP CTA ─── */
  .map-cta {
    background: var(--black2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .map-cta-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
  html[lang="ar"] .map-cta-text h3 { font-family: var(--font-arabic); font-weight: 900; font-size: 22px; }
  .map-cta-text p { font-size: 14px; color: var(--gray); }
  .map-cta-btn {
    background: var(--red);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
    text-decoration: none;
    flex-shrink: 0;
  }
  .map-cta-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

