/* ══════════════════════════════════════════════════════════
   HABIB PROTEIN — Gym Supplement Store CSS
   Bold · Athletic · Yellow/Black Power Aesthetic
   Peak-End Rule: Peak = product card hover, End = order CTA
   ══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600;700&family=Noto+Kufi+Arabic:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:     #F5C800;
  --yellow2:    #FFD700;
  --yellow-dark: #C9A200;
  --yellow-bg:  #FFF8DC;
  --black:      #0D0D0D;
  --black2:     #1A1A1A;
  --black3:     #2A2A2A;
  --ink:        #111111;
  --ink2:       #333333;
  --ink3:       #666666;
  --white:      #FAFAFA;
  --off-white:  #F5F5F5;
  --green:      #25d366;
  --danger:     #c0392b;
  --nav-h:      70px;
  --font-cond:  'Barlow Condensed', 'Impact', sans-serif;
  --font-body:  'Barlow', sans-serif;
  --font-ar:    'Noto Kufi Arabic', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════
   ARABIC / RTL — Full override block
   All letter-spacing reset to 0, Noto Kufi Arabic everywhere,
   layout flipped, sizes adjusted for Arabic text metrics
   ══════════════════════════════════════════════════════════ */

/* — Base body font — */
html[dir="rtl"] body,
html[dir="rtl"] {
  font-family: var(--font-ar);
  letter-spacing: 0 !important;
}

/* — Every condensed/heading element switches to Arabic font — */
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-eyebrow,
html[dir="rtl"] .hero-desc,
html[dir="rtl"] .stat-item strong,
html[dir="rtl"] .stat-item span,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .section-link,
html[dir="rtl"] .shop-card-name,
html[dir="rtl"] .shop-card-cat,
html[dir="rtl"] .shop-card-price,
html[dir="rtl"] .shop-pill,
html[dir="rtl"] .shop-size-chip,
html[dir="rtl"] .cat-bar-btn,
html[dir="rtl"] .about-eyebrow,
html[dir="rtl"] .about-inner h2,
html[dir="rtl"] .about-inner p,
html[dir="rtl"] .end-eyebrow,
html[dir="rtl"] .end-section h2,
html[dir="rtl"] .end-section p,
html[dir="rtl"] .modal-category,
html[dir="rtl"] .modal-title,
html[dir="rtl"] .modal-desc,
html[dir="rtl"] .modal-price,
html[dir="rtl"] .modal-sizes-label,
html[dir="rtl"] .modal-colors-label,
html[dir="rtl"] .page-header h1,
html[dir="rtl"] .breadcrumb,
html[dir="rtl"] .btn,
html[dir="rtl"] .nav-links a,
html[dir="rtl"] .logo-text,
html[dir="rtl"] .footer-brand p,
html[dir="rtl"] .footer-links a,
html[dir="rtl"] .footer-links h4,
html[dir="rtl"] .footer-contact h4,
html[dir="rtl"] .footer-contact p,
html[dir="rtl"] .footer-bottom p,
html[dir="rtl"] .drawer-nav a,
html[dir="rtl"] .badge-tag,
html[dir="rtl"] .size-btn,
html[dir="rtl"] .shop-count,
html[dir="rtl"] .shop-search input,
html[dir="rtl"] .shop-search input::placeholder,
html[dir="rtl"] .end-whatsapp {
  font-family: var(--font-ar) !important;
  letter-spacing: 0 !important;
  font-style: normal !important;
}

/* — Hero title sizing — Arabic is naturally larger optically — */
html[dir="rtl"] .hero-title {
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 1.15;
}

/* — Headings — */
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .about-inner h2,
html[dir="rtl"] .end-section h2,
html[dir="rtl"] .page-header h1 {
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0 !important;
}

/* — No italic in Arabic — */
html[dir="rtl"] .hero-title em,
html[dir="rtl"] .section-head h2 em,
html[dir="rtl"] .about-inner h2 em,
html[dir="rtl"] .end-section h2 em {
  font-style: normal !important;
  color: var(--yellow);
}

/* — No clipped corners (clip-path) on btn for RTL — Arabic text needs room — */
html[dir="rtl"] .btn-primary {
  clip-path: none;
  border-radius: 4px;
}
html[dir="rtl"] .shop-pill {
  clip-path: none;
  border-radius: 4px;
}
html[dir="rtl"] .end-whatsapp {
  clip-path: none;
  border-radius: 4px;
}

/* — Nav links eyebrow lines flip — */
html[dir="rtl"] .hero-eyebrow::before,
html[dir="rtl"] .about-eyebrow::before {
  content: none;
}
html[dir="rtl"] .hero-eyebrow::after,
html[dir="rtl"] .about-eyebrow::after {
  content: '';
  width: 40px; height: 2px;
  background: var(--yellow);
  display: inline-block;
  margin-right: 12px;
  order: -1;
}
html[dir="rtl"] .hero-eyebrow,
html[dir="rtl"] .about-eyebrow {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* — Nav link underline from right — */
html[dir="rtl"] .nav-links a::after {
  transform-origin: right;
}

/* — Section rule gradient flips — */
html[dir="rtl"] .section-rule {
  background: linear-gradient(to left, var(--yellow), transparent);
}

/* — Footer underline accent flip — */
html[dir="rtl"] .section-head {
  flex-direction: row-reverse;
}

/* — Modal: image on right, info on left — */
html[dir="rtl"] .product-modal {
  direction: rtl;
}
html[dir="rtl"] .modal-close {
  right: auto;
  left: 16px;
}
html[dir="rtl"] .modal-badges {
  left: auto;
  right: 14px;
}
html[dir="rtl"] .modal-info {
  border-left: none;
  border-right: 2px solid rgba(245,200,0,.2);
}

/* — Shop card text align — */
html[dir="rtl"] .shop-card-body {
  text-align: right;
}
html[dir="rtl"] .shop-card-bottom {
  flex-direction: row-reverse;
}
html[dir="rtl"] .shop-card-badges {
  left: auto;
  right: 14px;
}
html[dir="rtl"] .shop-card-quick {
  flex-direction: row-reverse;
}

/* — Footer layout — */
html[dir="rtl"] .footer-inner {
  direction: rtl;
}
html[dir="rtl"] .footer-links a,
html[dir="rtl"] .footer-contact p,
html[dir="rtl"] .footer-contact a {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* — Drawer nav — */
html[dir="rtl"] .mobile-drawer {
  left: auto;
  right: 0;
  transform: translateX(100%);
  border-right: none;
  border-left: 2px solid var(--yellow);
}
html[dir="rtl"] .mobile-drawer.open {
  transform: translateX(0);
}
html[dir="rtl"] .drawer-nav a {
  border-left: none;
  border-right: 3px solid transparent;
  text-align: right;
}
html[dir="rtl"] .drawer-nav a:hover {
  border-right-color: var(--yellow);
  padding-left: 28px;
  padding-right: 34px;
}

/* — Stats band — */
html[dir="rtl"] .stats-inner {
  flex-direction: row-reverse;
}

/* — Search bar — */
html[dir="rtl"] .shop-search {
  flex-direction: row-reverse;
}
html[dir="rtl"] .shop-search input {
  text-align: right;
}

/* — Pills wrap right to left — */
html[dir="rtl"] .shop-pills {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* — Breadcrumb — */
html[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

/* — Admin login modal — */
html[dir="rtl"] .admin-login-modal {
  direction: rtl;
}
html[dir="rtl"] .form-group label {
  text-align: right;
}
html[dir="rtl"] .form-group input {
  text-align: right;
}

/* — Lang dropdown — */
html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}
html[dir="rtl"] .lang-dropdown button {
  text-align: right;
}
html[dir="rtl"] .lang-dropdown button:hover {
  padding-right: 24px;
  padding-left: 18px;
}

/* — Hero content direction — */
html[dir="rtl"] .hero-ctas {
  flex-direction: row-reverse;
}

/* — Toolbar — */
html[dir="rtl"] .home-shop-toolbar,
html[dir="rtl"] .shop-toolbar {
  flex-direction: row-reverse;
}

/* — End section whatsapp icon flip — */
html[dir="rtl"] .end-whatsapp {
  flex-direction: row-reverse;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

/* ══════════════════ LOGO ══════════════════ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1;
}

/* ══════════════════ NAVBAR ══════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--yellow);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(245, 200, 0, .15);
}

.nav-inner {
  height: var(--nav-h);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250,250,250,.6);
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  position: relative;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 2px;
  border: 1px solid rgba(245,200,0,.3);
  background: none;
  color: rgba(250,250,250,.5);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: all .15s;
}
.nav-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--black2);
  border: 1px solid rgba(245,200,0,.3);
  border-radius: 4px;
  overflow: hidden;
  display: none;
  min-width: 140px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 11px 18px;
  text-align: left;
  background: none;
  border: none;
  color: rgba(250,250,250,.5);
  font-size: .82rem;
  letter-spacing: .04em;
  transition: all .15s;
}
.lang-dropdown button:hover {
  background: var(--black3);
  color: var(--yellow);
  padding-left: 24px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--yellow);
  transition: all .25s;
}

/* Category bar */
.cat-bar-wrap {
  border-top: 1px solid rgba(245,200,0,.15);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--black);
}
.cat-bar-wrap::-webkit-scrollbar { display: none; }
.cat-bar {
  display: flex;
  padding: 0 clamp(20px, 4vw, 60px);
  min-width: max-content;
}
.cat-bar-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: rgba(250,250,250,.4);
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  text-decoration: none;
}
.cat-bar-btn:hover { color: var(--white); }
.cat-bar-btn.active { color: var(--yellow); border-bottom-color: var(--yellow); }

/* ══════════════════ MOBILE DRAWER ══════════════════ */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 150;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 290px; height: 100vh;
  background: var(--black2);
  border-right: 2px solid var(--yellow);
  z-index: 151;
  transform: translateX(-100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-header {
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid rgba(245,200,0,.2);
  gap: 6px;
}
.drawer-header button {
  margin-left: auto; background: none; border: none;
  color: rgba(250,250,250,.5); font-size: 1rem;
}
.drawer-nav { display: flex; flex-direction: column; padding: 24px 0; flex: 1; }
.drawer-nav a {
  padding: 14px 28px;
  font-family: var(--font-cond);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,250,250,.5);
  border-left: 3px solid transparent;
  transition: all .15s;
}
.drawer-nav a:hover {
  color: var(--yellow);
  border-left-color: var(--yellow);
  background: rgba(245,200,0,.05);
  padding-left: 34px;
}
.drawer-langs {
  display: flex; gap: 8px;
  padding: 20px 24px;
  border-top: 1px solid rgba(245,200,0,.15);
}
.drawer-langs button {
  flex: 1; padding: 8px;
  background: none; border: 1px solid rgba(245,200,0,.3);
  color: rgba(250,250,250,.5); border-radius: 2px;
  font-size: .75rem; letter-spacing: .08em;
  transition: all .15s;
}
.drawer-langs button:hover { border-color: var(--yellow); color: var(--yellow); }

/* ══════════════════ BUTTONS ══════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 36px;
  border-radius: 2px;
  font-family: var(--font-cond);
  font-size: .9rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
  border: none; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--yellow); color: var(--black);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: var(--yellow2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,200,0,.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}
.btn-gold {
  background: var(--yellow); color: var(--black);
}
.btn-gold:hover { background: var(--yellow2); }
.btn-whatsapp {
  background: var(--green); color: var(--white);
  border-radius: 2px;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
}
.w-full { width: 100%; }

/* ══════════════════ HERO ══════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 6vw, 100px) clamp(60px, 8vh, 100px);
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg.has-banner {
  background-position: 65% center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,1) 0%,
    rgba(13,13,13,.97) 28%,
    rgba(13,13,13,.65) 55%,
    rgba(13,13,13,.08) 100%
  );
}

/* Decorative diagonal stripe */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 30%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(245,200,0,.2), transparent);
  opacity: 1;
}

/* Yellow corner accent */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 200px solid rgba(245,200,0,.06);
  border-left: 200px solid transparent;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-cond);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--yellow);
}

.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(3.8rem, 9vw, 9rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--yellow);
  -webkit-text-stroke: 0px;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: .1s; }
.hero-title-line:nth-child(2) { animation-delay: .25s; }
.hero-title-line:nth-child(3) { animation-delay: .4s; }

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

.hero-desc {
  font-size: 1rem;
  color: rgba(250,250,250,.55);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .55s forwards;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .7s forwards;
}

/* Big decorative text */
.hero-year {
  position: absolute;
  bottom: clamp(32px, 6vh, 60px);
  right: clamp(20px, 3vw, 48px);
  z-index: 2;
  text-align: right;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .9s forwards;
  mix-blend-mode: screen;
}
.hero-year strong {
  display: block;
  font-family: var(--font-cond);
  font-size: clamp(4rem, 8vw, 10rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,200,0,.2);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-year span {
  font-family: var(--font-cond);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(250,250,250,.25);
}

/* ══════════════════ STATS BAND ══════════════════ */
.stats-band {
  background: var(--yellow);
  padding: 0 clamp(20px, 4vw, 60px);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px;
  gap: 4px; flex: 1;
}
.stat-item strong {
  font-family: var(--font-cond);
  font-size: 2.4rem; font-weight: 900;
  color: var(--black);
  line-height: 1;
  text-transform: uppercase;
}
.stat-item span {
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(13,13,13,.6);
}
.stat-divider { width: 1px; height: 36px; background: rgba(13,13,13,.15); flex-shrink: 0; }

/* ══════════════════ SECTION HEADERS ══════════════════ */
.section-head {
  max-width: 1360px;
  margin: 0 auto 44px;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex; align-items: baseline; gap: 20px;
}
.section-head h2 {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: .04em;
}
.section-head h2 em { font-style: italic; color: var(--yellow-dark); }
.section-rule {
  flex: 1; height: 2px;
  background: linear-gradient(to right, var(--yellow), transparent);
}
.section-link {
  font-family: var(--font-cond);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink3); white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.section-link:hover { color: var(--yellow-dark); }

/* ══════════════════ PILLS ══════════════════ */
.shop-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.shop-pill {
  padding: 8px 20px;
  border-radius: 2px;
  border: 2px solid rgba(13,13,13,.15);
  background: none;
  color: var(--ink3);
  font-family: var(--font-cond);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .15s;
  font-family: var(--font-cond);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.shop-pill:hover { border-color: var(--yellow-dark); color: var(--ink); }
.shop-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--yellow);
}

/* ══════════════════ SEARCH ══════════════════ */
.shop-search {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 2px solid rgba(13,13,13,.1);
  border-radius: 2px;
  padding: 11px 18px;
  transition: border-color .2s;
  max-width: 380px;
}
.shop-search:focus-within { border-color: var(--yellow-dark); }
.shop-search i { color: var(--ink3); font-size: .85rem; }
.shop-search input {
  background: none; border: none;
  color: var(--ink); font-size: .88rem;
  outline: none; flex: 1;
}
.shop-search input::placeholder { color: var(--ink3); }
.shop-count {
  font-family: var(--font-cond);
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3);
}

/* ══════════════════ PRODUCT CARDS — THE PEAK ══════════════════ */
.home-shop-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.shop-card {
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  outline: 2px solid rgba(13,13,13,.06);
  transition: outline-color .3s;
}
.shop-card:hover { outline-color: var(--yellow); z-index: 2; }

.shop-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.shop-card-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s ease;
  filter: brightness(1.0);
}
.shop-card:hover .shop-card-img {
  transform: scale(1.06);
  filter: brightness(1.04);
}
.shop-card-placeholder {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  color: rgba(13,13,13,.1); font-size: 3rem;
  background: var(--off-white);
}

/* Badges */
.shop-card-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 5px; z-index: 2;
}
.badge-tag {
  padding: 4px 10px;
  font-family: var(--font-cond);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 1px;
}
.badge-new { background: var(--yellow); color: var(--black); }
.badge-sale { background: var(--danger); color: var(--white); }
.badge-out  { background: #555; color: #ccc; }
.shop-card-quick--oos {
  display: flex; align-items: center; justify-content: center;
  background: #222; color: #555; font-size: .75rem; font-weight: 600;
  cursor: not-allowed; letter-spacing: .05em; text-transform: uppercase;
  padding: 0 16px; border-radius: 0;
  position: absolute; bottom: 0; left: 0; right: 0; height: 42px;
  font-family: var(--font-cond);
}

/* PEAK: Order CTA slides up */
.shop-card-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: var(--yellow);
  color: var(--black);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-cond);
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  z-index: 3;
}
.shop-card:hover .shop-card-quick {
  transform: translateY(0);
}

.shop-card-body { padding: 16px 18px 18px; }
.shop-card-cat {
  font-family: var(--font-cond);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow-dark); margin-bottom: 4px;
}
.shop-card-name {
  font-family: var(--font-cond);
  font-size: 1.15rem; font-weight: 800;
  text-transform: uppercase;
  color: var(--ink); margin-bottom: 10px;
  line-height: 1.2;
  transition: color .2s;
  letter-spacing: .02em;
}
.shop-card:hover .shop-card-name { color: var(--yellow-dark); }

.shop-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.shop-card-price {
  font-family: var(--font-cond);
  font-size: 1.2rem; font-weight: 900;
  color: var(--ink);
  transition: transform .2s;
}
.shop-card:hover .shop-card-price { transform: translateY(-2px); }
.shop-card-old {
  font-size: .8rem; color: var(--ink3);
  text-decoration: line-through; margin-left: 6px;
}
.shop-card-sizes {
  display: flex; gap: 3px; flex-wrap: wrap;
}
.shop-size-chip {
  font-family: var(--font-cond);
  font-size: .65rem; font-weight: 700; color: var(--ink3);
  border: 1px solid rgba(13,13,13,.15);
  border-radius: 1px; padding: 2px 6px;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ══════════════════ HOME SHOP SECTION ══════════════════ */
.home-shop-section { padding: 80px 0 100px; background: var(--off-white); }
.home-shop-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.home-shop-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.shop-empty { text-align: center; padding: 80px 20px; color: var(--ink3); display: none; }
.shop-empty i { font-size: 2rem; color: rgba(13,13,13,.1); margin-bottom: 14px; display: block; }
.shop-loading { grid-column: 1/-1; text-align: center; padding: 80px; color: var(--yellow); font-size: 1.5rem; }

/* ══════════════════ ABOUT ══════════════════ */
.about-section {
  padding: 100px clamp(20px, 6vw, 100px);
  background: var(--black2);
  position: relative; overflow: hidden;
}
.about-section::before {
  content: 'FORCE';
  position: absolute;
  right: -2%;
  top: 50%; transform: translateY(-50%);
  font-family: var(--font-cond);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,200,0,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-inner {
  max-width: 700px;
  position: relative; z-index: 1;
}
.about-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 24px;
}
.about-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--yellow); }
.about-inner h2 {
  font-family: var(--font-cond);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1;
  text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: .02em;
}
.about-inner h2 em { font-style: italic; color: var(--yellow); }
.about-inner p {
  color: rgba(250,250,250,.45);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 520px; font-size: .95rem;
}

/* ══════════════════ CONTACT / END SECTION ══════════════════ */
.end-section {
  padding: 100px clamp(20px, 6vw, 100px);
  background: var(--yellow);
  text-align: center;
  position: relative; overflow: hidden;
}
.end-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--black));
}
.end-inner { max-width: 560px; margin: 0 auto; padding-top: 20px; }
.end-eyebrow {
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(13,13,13,.6); margin-bottom: 20px;
}
.end-section h2 {
  font-family: var(--font-cond);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1;
  text-transform: uppercase;
  color: var(--black); margin-bottom: 16px;
  letter-spacing: .02em;
}
.end-section h2 em { font-style: italic; }
.end-section p {
  color: rgba(13,13,13,.65); line-height: 1.7;
  margin-bottom: 36px; font-size: .92rem;
}
.end-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 48px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 2px;
  font-family: var(--font-cond);
  font-size: .9rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  transition: all .25s;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.end-whatsapp i { font-size: 1.2rem; color: var(--green); }
.end-whatsapp:hover {
  background: var(--black3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(13,13,13,.25);
}

/* ══════════════════ FOOTER ══════════════════ */
.footer {
  background: var(--black);
  border-top: 2px solid rgba(245,200,0,.2);
  padding: 60px clamp(20px, 4vw, 60px) 0;
}
.footer-inner {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .logo-text { color: var(--yellow); }
.footer-brand p { font-size: .82rem; color: rgba(250,250,250,.3); margin-top: 12px; line-height: 1.6; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 18px;
}
.footer-links a,
.footer-contact a,
.footer-contact p {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(250,250,250,.3);
  margin-bottom: 10px; transition: color .15s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: .72rem; color: rgba(250,250,250,.2); letter-spacing: .06em; }

/* ══════════════════ PRODUCT MODAL ══════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 300; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.product-modal {
  background: var(--white);
  width: 100%; max-width: 860px; max-height: 90vh;
  overflow-y: auto; display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border: 2px solid var(--yellow);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(13,13,13,.08);
  border: none; color: var(--ink);
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; z-index: 2; transition: background .15s;
}
.modal-close:hover { background: rgba(13,13,13,.15); }
.modal-img-wrap {
  position: relative; overflow: hidden;
  background: var(--off-white);
}
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; }
.modal-info {
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  border-left: 2px solid rgba(245,200,0,.2);
}
.modal-category {
  font-family: var(--font-cond);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--yellow-dark);
}
.modal-title {
  font-family: var(--font-cond);
  font-size: 1.9rem; font-weight: 900; line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink); letter-spacing: .02em;
}
.modal-price-wrap { display: flex; align-items: baseline; gap: 10px; }
.modal-price {
  font-family: var(--font-cond);
  font-size: 1.8rem; font-weight: 900; color: var(--ink);
}
.modal-old-price { font-size: .9rem; color: var(--ink3); text-decoration: line-through; }
.modal-desc { font-size: .88rem; color: var(--ink3); line-height: 1.75; flex: 1; }
.modal-sizes, .modal-colors { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.modal-sizes-label, .modal-colors-label {
  font-family: var(--font-cond);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink3); width: 100%;
}
.size-btn {
  padding: 7px 14px;
  border: 2px solid rgba(13,13,13,.15); background: none;
  color: var(--ink3); border-radius: 1px;
  font-family: var(--font-cond);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  cursor: pointer; transition: all .15s;
}
.size-btn:hover, .size-btn.active {
  border-color: var(--yellow-dark); color: var(--ink); background: rgba(245,200,0,.1);
}
.color-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: border-color .15s; }
.color-dot.active { border-color: var(--yellow-dark); }
.color-dot-label { font-size: .7rem; color: var(--ink3); margin-top: 3px; text-align: center; }
.modal-order-btn { margin-top: auto; }

/* ══════════════════ ADMIN LOGIN ══════════════════ */
.admin-login-modal {
  background: var(--black2);
  border: 1px solid rgba(245,200,0,.3);
  border-radius: 4px;
  padding: 40px;
  width: 100%; max-width: 380px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.login-logo { text-align: center; margin-bottom: 24px; }
.admin-login-modal h3 {
  font-family: var(--font-cond);
  font-size: 1.1rem; font-weight: 800;
  margin-bottom: 28px; text-align: center; color: var(--yellow);
  letter-spacing: .1em; text-transform: uppercase;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-cond);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(250,250,250,.5);
}
.form-group input {
  background: var(--black3);
  border: 1px solid rgba(245,200,0,.2);
  color: var(--white); padding: 11px 14px;
  border-radius: 2px; font-size: .9rem;
  outline: none; transition: border .15s;
}
.form-group input:focus { border-color: var(--yellow); }
.login-error { font-size: .8rem; color: var(--danger); min-height: 18px; margin-bottom: 4px; }

.admin-trigger {
  position: fixed; bottom: 24px; left: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(13,13,13,.08);
  border: 1px solid rgba(13,13,13,.15);
  color: var(--ink3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: all .2s; z-index: 90;
}
.admin-trigger:hover { background: rgba(13,13,13,.12); color: var(--ink); border-color: var(--yellow); }

/* ══════════════════ PRODUCTS PAGE ══════════════════ */
.products-body {
  padding-top: calc(var(--nav-h) + 41px);
  background: var(--off-white);
}
.page-header {
  padding: 48px clamp(20px, 4vw, 60px) 40px;
  border-bottom: 1px solid rgba(13,13,13,.08);
  background: var(--white);
}
.page-header-inner { max-width: 1360px; margin: 0 auto; }
.page-header h1 {
  font-family: var(--font-cond);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
  letter-spacing: .02em;
}
.page-header h1 em { font-style: italic; color: var(--yellow-dark); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink3);
}
.breadcrumb i { font-size: .6rem; }
.breadcrumb a { color: var(--ink3); transition: color .15s; }
.breadcrumb a:hover { color: var(--yellow-dark); }
.shop-wrap { max-width: 1360px; margin: 0 auto; padding: 48px clamp(20px,4vw,60px) 100px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 24px; padding: 0 clamp(16px, 3vw, 40px); }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 45%; padding: 24px 16px; }
  .product-modal { grid-template-columns: 1fr; }
  .modal-img-wrap { height: 300px; }
  .modal-info { border-left: none; border-top: 2px solid rgba(245,200,0,.2); padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-year { display: none; }
  .hero { padding: calc(var(--nav-h) + 40px) clamp(16px, 3vw, 40px) clamp(40px, 6vh, 60px); }
  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn { padding: 12px 24px; font-size: .85rem; }
  .home-shop-grid, .shop-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1px; }
  .shop-card-body { padding: 12px 12px 14px; }
  .shop-card-name { font-size: .9rem; }
  .shop-card-price { font-size: 1rem; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
  .cat-bar-btn { padding: 8px 16px; font-size: .72rem; }
  .shop-pills { gap: 6px; margin-bottom: 24px; }
  .shop-pill { padding: 6px 16px; font-size: .72rem; }
  .shop-search { max-width: 100%; }
  .shop-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
  .shop-count { text-align: center; }
}

@media (max-width: 600px) {
  :root { --nav-h: 56px; }
  .nav-inner { height: 56px; gap: 12px; padding: 0 12px; }
  .nav-hamburger span { width: 20px; height: 2px; }
  .nav-logo-img { width: 38px; height: 38px; }
  .nav-btn { padding: 6px 10px; font-size: .7rem; }
  .cat-bar { padding: 0 12px; }
  .cat-bar-btn { padding: 8px 14px; font-size: .68rem; }
  .hero { min-height: 85vh; padding: calc(var(--nav-h) + 24px) 16px clamp(32px, 5vh, 48px); }
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); line-height: .92; margin-bottom: 20px; }
  .hero-eyebrow { font-size: .68rem; margin-bottom: 16px; }
  .hero-desc { font-size: .88rem; margin-bottom: 24px; max-width: 100%; }
  .hero-ctas { gap: 10px; }
  .btn { padding: 12px 20px; font-size: .82rem; gap: 6px; }
  .stats-band { padding: 0 16px; }
  .stat-item { flex: 0 0 50%; padding: 20px 12px; }
  .stat-item strong { font-size: 1.8rem; }
  .stat-item span { font-size: .65rem; }
  .section-head { margin-bottom: 24px; padding: 0 16px; gap: 12px; }
  .section-head h2 { font-size: clamp(1.4rem, 6vw, 2rem); white-space: normal; }
  .section-rule { display: none; }
  .home-shop-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .shop-card-img { aspect-ratio: 3/4; }
  .shop-card-body { padding: 10px 10px 12px; }
  .shop-card-name { font-size: .82rem; }
  .shop-card-price { font-size: .92rem; }
  .shop-card-cat { font-size: .62rem; }
  .badge-tag { padding: 3px 8px; font-size: .58rem; }
  .shop-pills { gap: 6px; margin-bottom: 18px; }
  .shop-pill { padding: 6px 12px; font-size: .68rem; }
  .shop-search { padding: 9px 14px; }
  .shop-search input { font-size: .8rem; }
  .shop-count { font-size: .68rem; }
  .shop-toolbar { flex-direction: column; gap: 10px; padding: 0 16px; }
  .about-section { padding: 60px 16px; }
  .about-inner { max-width: 100%; }
  .about-inner h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); margin-bottom: 16px; }
  .about-inner p { font-size: .88rem; margin-bottom: 20px; }
  .end-section { padding: 60px 16px; }
  .end-inner { max-width: 100%; }
  .end-section h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 16px; }
  .end-section p { font-size: .88rem; margin-bottom: 24px; }
  .end-whatsapp { padding: 14px 24px; font-size: .82rem; }
  .footer { padding: 40px 16px 24px; }
  .footer-inner { gap: 24px; }
  .footer-brand, .footer-links, .footer-contact { text-align: center; }
  .footer-logo-img { width: 44px; height: 44px; margin: 0 auto 12px; }
  .footer-brand p { font-size: .8rem; }
  .footer-links a, .footer-contact p { font-size: .8rem; }
  .product-modal { max-width: 90vw; max-height: 90vh; }
  .modal-img-wrap { height: 240px; }
  .modal-info { padding: 20px 18px; }
  .modal-title { font-size: 1.3rem; }
  .modal-price { font-size: 1.1rem; }
  .modal-desc { font-size: .8rem; }
  .modal-order-btn { width: 100%; padding: 12px 16px; font-size: .8rem; }
  .admin-trigger { width: 32px; height: 32px; font-size: .7rem; bottom: 16px; left: 16px; }
  .page-header { padding: 32px 16px 28px; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 6px; }
  .breadcrumb { font-size: .68rem; }
  .shop-wrap { padding: 32px 16px 60px; }
}

@media (max-width: 360px) {
  :root { --nav-h: 52px; }
  .nav-inner { height: 52px; gap: 8px; padding: 0 8px; }
  .nav-logo-img { width: 32px; height: 32px; }
  .nav-btn { padding: 5px 8px; font-size: .65rem; }
  .hero { min-height: 70vh; padding: calc(var(--nav-h) + 16px) 12px clamp(24px, 4vh, 32px); }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 16px; }
  .hero-eyebrow { font-size: .62rem; margin-bottom: 12px; }
  .hero-desc { font-size: .8rem; margin-bottom: 16px; }
  .btn { padding: 10px 16px; font-size: .78rem; }
  .stat-item { flex: 0 0 50%; padding: 16px 8px; }
  .stat-item strong { font-size: 1.5rem; }
  .section-head { margin-bottom: 20px; padding: 0 12px; }
  .home-shop-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .shop-card-body { padding: 8px 8px 10px; }
  .shop-card-name { font-size: .75rem; }
  .about-section { padding: 40px 12px; }
  .about-inner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .end-section { padding: 40px 12px; }
  .end-section h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .footer { padding: 32px 12px 20px; }
  .modal-img-wrap { height: 200px; }
  .modal-info { padding: 16px 14px; }
  .modal-title { font-size: 1.1rem; }
  .shop-wrap { padding: 24px 12px 40px; }
}

/* ══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS SYSTEM (unchanged from original)
   ══════════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

[data-reveal="up"] { transform: translateY(48px); }
[data-reveal="down"] { transform: translateY(-32px); }
[data-reveal="left"] { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal="fade"] { transform: none; }
[data-reveal="rotate"] { transform: rotate(-4deg) translateY(32px); }
[data-reveal="clip"] {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transition-property: clip-path !important;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0% 0 0);
  transition-duration: var(--reveal-dur, .85s);
  transition-delay: var(--reveal-delay, 0s);
  transition-property: opacity, transform, clip-path;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-stagger].revealed > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: .15s; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: .25s; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: .35s; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: .45s; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: .55s; }
[data-stagger].revealed > *:nth-child(7) { transition-delay: .65s; }
[data-stagger].revealed > *:nth-child(8) { transition-delay: .75s; }
[data-stagger].revealed > * {
  opacity: 1;
  transform: none;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(4deg);
  transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
}
.split-active .split-char { opacity: 1; transform: none; }

.count-up { display: inline-block; }

.hero-bg {
  transform-origin: center;
  will-change: transform;
}

.reveal-line {
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), transparent);
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
}
.reveal-line.revealed { width: 100%; }

.btn-magnetic {
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}

.about-section {
  overflow: hidden;
}
.about-section::before {
  transition: transform 1.5s cubic-bezier(.16,1,.3,1), opacity 1.5s ease;
  transform: translateX(60px);
  opacity: 0;
}
.about-section.revealed::before {
  transform: translateX(0);
  opacity: 1;
}

.section-rule {
  width: 0 !important;
  transition: width 1.4s cubic-bezier(.16,1,.3,1) .3s !important;
}
.section-head.revealed .section-rule { width: 100% !important; }

.end-whatsapp {
  position: relative;
}
.end-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 3px;
  border: 2px solid rgba(13,13,13,.3);
  opacity: 0;
  transform: scale(1);
  transition: opacity .3s, transform .3s;
}
.end-whatsapp:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.shop-pill {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.16,1,.3,1),
              background .15s, border-color .15s, color .15s;
}
.pills-revealed .shop-pill { opacity: 1; transform: none; }
.pills-revealed .shop-pill:nth-child(1) { transition-delay: .0s; }
.pills-revealed .shop-pill:nth-child(2) { transition-delay: .06s; }
.pills-revealed .shop-pill:nth-child(3) { transition-delay: .12s; }
.pills-revealed .shop-pill:nth-child(4) { transition-delay: .18s; }
.pills-revealed .shop-pill:nth-child(5) { transition-delay: .24s; }
.pills-revealed .shop-pill:nth-child(6) { transition-delay: .30s; }

.shop-card-img {
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s ease, opacity .4s ease;
  opacity: .88;
}
.shop-card.card-visible .shop-card-img { opacity: 1; }
.shop-card:hover .shop-card-img {
  transform: scale(1.07);
  filter: brightness(1.05);
  opacity: 1;
}

.footer-inner > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.footer.revealed .footer-inner > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.footer.revealed .footer-inner > *:nth-child(2) { opacity:1; transform:none; transition-delay:.15s; }
.footer.revealed .footer-inner > *:nth-child(3) { opacity:1; transform:none; transition-delay:.25s; }

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.stats-band.revealed .stat-item:nth-child(1) { opacity:1;transform:none;transition-delay:.0s; }
.stats-band.revealed .stat-item:nth-child(3) { opacity:1;transform:none;transition-delay:.1s; }
.stats-band.revealed .stat-item:nth-child(5) { opacity:1;transform:none;transition-delay:.2s; }
.stats-band.revealed .stat-item:nth-child(7) { opacity:1;transform:none;transition-delay:.3s; }
.stat-divider { opacity: 0; transition: opacity .4s ease .5s; }
.stats-band.revealed .stat-divider { opacity: 1; }

/* ══════════════════ LOGO IMAGE ══════════════════ */
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .2s ease;
}
.logo-wrap:hover .nav-logo-img {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 0 3px rgba(245,200,0,.3);
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(245,200,0,.4);
  opacity: .9;
  transition: opacity .2s ease, transform .3s cubic-bezier(.16,1,.3,1);
}
.logo-wrap:hover .footer-logo-img {
  opacity: 1;
  transform: scale(1.06);
}

.drawer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--yellow);
}

.login-logo img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid var(--yellow);
}

/* ── Color dot with image indicator ── */
.color-dot {
  position: relative;
  overflow: visible;
}
.color-dot.has-img {
  box-shadow: 0 0 0 2px var(--yellow-dark);
}
.color-dot-cam {
  position: absolute;
  bottom: -4px; right: -4px;
  font-size: .45rem;
  background: var(--yellow);
  color: var(--black);
  width: 12px; height: 12px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

#modalImg {
  transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
  width: 100%; height: 100%; object-fit: cover;
}

/* ══════════════════ CARD HOVER IMAGE CYCLE ══════════════════ */
.card-img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 4;
  opacity: 0;
  transition: opacity .2s ease;
}
.shop-card:hover .card-img-dots { opacity: 1; }

.card-img-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .2s ease, transform .2s ease;
}
.card-img-dot.active {
  background: var(--yellow);
  transform: scale(1.4);
}

.card-color-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(13,13,13,.85);
  color: var(--yellow);
  font-family: var(--font-cond);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 1px;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 4;
  pointer-events: none;
}

/* — Hero text stays WHITE in Arabic (dark overlay) — */
html[dir="rtl"] .hero-title { color: var(--white); }
html[dir="rtl"] .hero-title em { color: var(--yellow); }
html[dir="rtl"] .hero-eyebrow { color: var(--yellow); }
html[dir="rtl"] .hero-desc { color: rgba(250,250,250,.6); }

/* — About section background big text — */
html[dir="rtl"] .about-section::before { content: 'قوة'; direction: ltr; }

/* — Remove text-transform for Arabic (breaks Arabic letters) — */
html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .about-inner h2,
html[dir="rtl"] .end-section h2,
html[dir="rtl"] .page-header h1,
html[dir="rtl"] .shop-card-name,
html[dir="rtl"] .modal-title,
html[dir="rtl"] .btn,
html[dir="rtl"] .cat-bar-btn,
html[dir="rtl"] .shop-pill,
html[dir="rtl"] .badge-tag,
html[dir="rtl"] .nav-links a,
html[dir="rtl"] .drawer-nav a,
html[dir="rtl"] .hero-eyebrow,
html[dir="rtl"] .about-eyebrow,
html[dir="rtl"] .end-eyebrow,
html[dir="rtl"] .modal-category,
html[dir="rtl"] .footer-links h4,
html[dir="rtl"] .footer-contact h4,
html[dir="rtl"] .section-link {
  text-transform: none !important;
}

/* — End section Arabic — stays yellow bg with black text — */
html[dir="rtl"] .end-section h2 { color: var(--black); }
html[dir="rtl"] .end-section p  { color: rgba(13,13,13,.7); }
html[dir="rtl"] .end-eyebrow    { color: rgba(13,13,13,.6); }
html[dir="rtl"] .end-whatsapp   { background: var(--black); color: var(--yellow); }

