/* =====================================================
   NAMAN SPORTS — Premium Sports Catalogue
   Light/Dark Theme with Toggle
   Fonts: Poppins + Montserrat
   ===================================================== */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS CUSTOM PROPERTIES (LIGHT — Default) ---------- */
/* ---------- CSS CUSTOM PROPERTIES (LIGHT — UPDATED FOR NAMAN SPORTS) ---------- */
:root {
  /* ================= BACKGROUNDS ================= */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f7;
  --bg-tertiary: #efefef;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);

  /* ================= BRAND COLORS ================= */
  /* Main Brand Red (from logo feel) */
  --accent-red: #d71920;
  --accent-red-glow: rgba(215, 25, 32, 0.25);

  /* Remove blue dominance */
  --accent-blue: #d71920;
  /* fallback replace blue with red */
  --accent-blue-light: #c8102e;
  --accent-blue-glow: rgba(215, 25, 32, 0.25);

  /* Optional metallic gold for trophies section */
  --accent-gold: #c48a00;
  --accent-gold-glow: rgba(196, 138, 0, 0.25);

  --accent-green: #25d366;

  /* ================= TEXT ================= */
  --text-primary: #1a1a2e;
  /* Strong dark for headings */
  --text-secondary: #2b2b2b;
  /* Dark grey for paragraphs */
  --text-muted: #6b7280;
  /* Muted but readable */

  /* ================= BORDERS ================= */
  --border-glass: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(215, 25, 32, 0.45);

  /* ================= GRADIENTS ================= */
  --gradient-accent: linear-gradient(135deg, #d71920, #b31217);
  --gradient-red: linear-gradient(135deg, #d71920, #b31217);
  --gradient-gold: linear-gradient(135deg, #c48a00, #9e6f00);

  /* HERO OVERLAY — much cleaner */
  --gradient-hero: linear-gradient(180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.15) 45%,
      rgba(255, 255, 255, 0.75) 100%);

  /* ================= TOKENS ================= */
  --radius-sm: 6px;
  /* slightly sharper edges */
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 6px 20px var(--accent-red-glow);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);

  /* ================= FONTS ================= */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* ================= COMPONENT HELPERS ================= */
  --navbar-bg: rgba(255, 255, 255, 0.92);
  --navbar-scrolled-bg: rgba(255, 255, 255, 0.98);
  --navbar-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);

  --hero-overlay: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.45) 55%,
      rgba(255, 255, 255, 0.88) 100%);

  --page-hero-overlay: linear-gradient(180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.7) 100%);

  --cat-overlay: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.25) 100%);

  --preloader-bar-bg: rgba(0, 0, 0, 0.08);

  --medical-card-bg: rgba(0, 0, 0, 0.03);
  --medical-card-border: rgba(0, 0, 0, 0.1);

  --cat-brand-color: rgba(255, 255, 255, 0.95);

  --map-filter: brightness(1) contrast(1.05);
}

/* ---------- DARK THEME OVERRIDE ---------- */
[data-theme="dark"] {
  --bg-primary: #08090d;
  --bg-secondary: #0e1117;
  --bg-tertiary: #151922;
  --bg-card: #12151e;
  --bg-glass: rgba(18, 21, 30, 0.65);

  --accent-blue-light: #e53e3e;
  --accent-blue-glow: rgba(229, 62, 62, 0.35);
  --accent-red: #e53e3e;
  --accent-red-glow: rgba(229, 62, 62, 0.35);
  --accent-gold: #f5b731;
  --accent-gold-glow: rgba(245, 183, 49, 0.35);

  --text-primary: #f0f2f5;
  --text-secondary: #8892a4;
  --text-muted: #555d6e;

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(229, 62, 62, 0.4);

  --gradient-hero: linear-gradient(180deg, rgba(8, 9, 13, 0.3) 0%, rgba(8, 9, 13, 0.65) 50%, rgba(8, 9, 13, 0.97) 100%);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);

  --navbar-bg: rgba(8, 9, 13, 0.65);
  --navbar-scrolled-bg: rgba(8, 9, 13, 0.92);
  --navbar-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  --hero-overlay: linear-gradient(180deg, rgba(8, 9, 13, 0.3) 0%, rgba(8, 9, 13, 0.65) 50%, rgba(8, 9, 13, 0.97) 100%);
  --page-hero-overlay: linear-gradient(180deg, rgba(8, 9, 13, 0.5) 0%, rgba(8, 9, 13, 0.85) 60%, rgba(8, 9, 13, 1) 100%);
  --cat-overlay: linear-gradient(to top, rgba(8, 9, 13, 0.95) 0%, rgba(8, 9, 13, 0.3) 100%);
  --preloader-bar-bg: rgba(255, 255, 255, 0.08);
  --medical-card-bg: rgba(255, 255, 255, 0.03);
  --medical-card-border: rgba(255, 255, 255, 0.12);
  --cat-brand-color: rgba(255, 255, 255, 0.8);
  --map-filter: brightness(0.85) contrast(1.1);
}

/* Dark theme overrides for hardcoded hero colors */
[data-theme="dark"] .hero-content {
  background: rgba(8, 9, 13, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f0f2f5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .hero-title {
  color: #f0f2f5;
}

[data-theme="dark"] .hero-subtitle {
  color: #8892a4;
}

[data-theme="dark"] .hero-badge {
  background: rgba(229, 62, 62, 0.12);
  border-color: rgba(229, 62, 62, 0.25);
}

[data-theme="dark"] .stat-label {
  color: #8892a4;
}

[data-theme="dark"] .hero-scroll-indicator {
  color: #555d6e;
}

[data-theme="dark"] .hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f0f2f5;
}

[data-theme="dark"] .hero-ctas .btn-ghost:hover {
  background: rgba(229, 62, 62, 0.12);
  color: #e53e3e;
}

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

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

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

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
  animation: logoPulse 0.8s ease infinite alternate;
}

@keyframes logoPulse {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.06)
  }
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--preloader-bar-bg);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: fillBar 1.8s ease forwards;
}

@keyframes fillBar {
  to {
    width: 100%
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
  padding: 0.7rem 0;
}

.navbar.scrolled {
  background: var(--navbar-scrolled-bg);
  box-shadow: var(--navbar-shadow);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-logo .logo-img {
  width: 48px;
  height: 48px;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  color: var(--accent-blue);
  transform: rotate(20deg);
}

.theme-toggle .fa-sun {
  display: none;
}

.theme-toggle .fa-moon {
  display: inline;
}

[data-theme="dark"] .theme-toggle .fa-sun {
  display: inline;
}

[data-theme="dark"] .theme-toggle .fa-moon {
  display: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.logo-text span {
  color: var(--accent-blue-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-green);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-blue-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.btn-ghost:hover {
  border-color: var(--accent-red);
  background: rgba(215, 25, 32, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-glass);
}

.btn-outline:hover {
  border-color: var(--accent-red);
  background: rgba(215, 25, 32, 0.06);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--gradient-red);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-red-glow);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--accent-red-glow);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #111;
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue-light);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.section-title .accent {
  color: var(--accent-blue-light);
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 105vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease;
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-bg:not(.active) {
  opacity: 0;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.8rem 2rem 1.5rem;
  max-width: 960px;
  margin-top: 80px;
  color: #1a1a2e;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(215, 25, 32, 0.08);
  border: 1px solid rgba(215, 25, 32, 0.2);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #1a1a2e;
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, #d71920 0%, #ff4d4d 25%, #d71920 50%, #b31217 75%, #d71920 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShimmer 3s ease-in-out infinite;
}

/* Hero CTA pulse glow */
.hero-ctas .btn-primary {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px var(--accent-red-glow);
  }

  50% {
    box-shadow: 0 6px 35px rgba(215, 25, 32, 0.5), 0 0 60px rgba(215, 25, 32, 0.15);
  }
}

@keyframes textShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #3a3a3a;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

/* Ghost button — glassmorphism in hero */
.hero-ctas .btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
  font-weight: 600;
}

.hero-ctas .btn-ghost:hover {
  background: rgba(215, 25, 32, 0.08);
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s ease 0.5s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-red);
  text-shadow: none;
}

.stat-label {
  font-size: 0.75rem;
  color: #3a3a3a;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
  align-self: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #888;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.scroll-arrow {
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Floating sport icons */
.floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(215, 25, 32, 0.15);
  left: var(--x);
  top: var(--y);
  animation: floatAnim 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(215, 25, 32, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-red);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---------- CATEGORIES SLIDER ---------- */
.cat-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 3rem;
}

.cat-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
  cursor: grab;
  user-select: none;
}

.cat-slider-track.dragging {
  transition: none;
  cursor: grabbing;
}

.cat-slider .cat-card {
  flex: 0 0 280px;
  min-width: 280px;
}

/* Slider Arrows */
.cat-slider-arrow {
  position: absolute;
  top: calc(50% - 1.5rem);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cat-slider-arrow:hover {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
  box-shadow: 0 4px 20px var(--accent-red-glow);
}

.cat-slider-prev {
  left: 0.5rem;
}

.cat-slider-next {
  right: 0.5rem;
}

/* Slider Dots */
.cat-slider-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cat-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-glass);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.cat-slider-dot.active {
  background: var(--accent-red);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--accent-red-glow);
}

.cat-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
}

.cat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(215, 25, 32, 0.25);
}

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

.cat-card:hover .cat-card-bg {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--cat-overlay);
}

.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.cat-card h3 {
  color: #ffffff;
}

.cat-card p {
  opacity: 0.95;
}

.cat-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cat-card p {
  font-size: 0.8rem;
  color: #ffffff;
}

.cat-brands {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.cat-brands span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

/* ---------- EXPERTISE / HIGHLIGHT ---------- */
.expertise-section {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(245, 183, 49, 0.08) 0%, transparent 60%),
    var(--bg-secondary);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.expertise-visual {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.expertise-visual i {
  font-size: 8rem;
  color: var(--accent-gold);
  text-shadow: 0 0 60px var(--accent-gold-glow);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 40px var(--accent-gold-glow);
  }

  50% {
    filter: brightness(1.3);
    text-shadow: 0 0 80px var(--accent-gold-glow), 0 0 120px rgba(245, 183, 49, 0.15);
  }
}

.expertise-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.expertise-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---------- PRODUCTS PAGE ---------- */
/* Filter bar */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-accent);
  color: #fff;
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

/* Product section */
.product-section {
  padding: 4rem 0;
}

.product-section:nth-child(even) {
  background: var(--bg-secondary);
}

.product-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-section-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.product-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
}

.product-section-title small {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

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

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

.product-card-body {
  padding: 1.2rem 1.3rem 1.5rem;
}

/* Section banner image */
.product-section-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.product-section-banner:hover {
  opacity: 0.9;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(215, 25, 32, 0.15);
}

.product-card i {
  font-size: 1.8rem;
  color: var(--accent-blue-light);
  margin-bottom: 0.8rem;
}

.product-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.product-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.product-card .brand-list {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.product-card .brand-list span {
  font-size: 0.65rem;
  background: rgba(215, 25, 32, 0.1);
  color: var(--accent-red);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-weight: 600;
}

/* Service note */
.service-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(215, 25, 32, 0.08);
  border: 1px solid rgba(215, 25, 32, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  color: var(--accent-red);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Boxing themed section */
.boxing-section {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(229, 62, 62, 0.12) 0%, transparent 70%),
    var(--bg-primary) !important;
}

.boxing-section .product-section-icon {
  background: var(--gradient-red);
}

.boxing-section .product-card:hover {
  border-color: rgba(229, 62, 62, 0.4);
  box-shadow: 0 8px 30px var(--accent-red-glow);
}

/* Swimming themed section */
.swimming-section {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(215, 25, 32, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(215, 25, 32, 0.05) 0%, transparent 50%),
    var(--bg-primary) !important;
  position: relative;
}

.swimming-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(215, 25, 32, 0.03) 100px);
  pointer-events: none;
}

.badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Trophies themed */
.trophy-section {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(245, 183, 49, 0.1) 0%, transparent 60%),
    var(--bg-secondary) !important;
}

.trophy-section .product-section-icon {
  background: var(--gradient-gold);
}

.trophy-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.trophy-card i {
  font-size: 3rem;
  color: var(--accent-gold);
  text-shadow: 0 0 40px var(--accent-gold-glow);
  transition: var(--transition);
}

.trophy-card:hover i {
  transform: rotateY(180deg) scale(1.1);
  text-shadow: 0 0 60px var(--accent-gold-glow);
}

.trophy-card:hover {
  border-color: rgba(245, 183, 49, 0.3);
  box-shadow: 0 8px 30px var(--accent-gold-glow);
}

/* Medical section */
.medical-section {
  background: var(--bg-secondary) !important;
}

.medical-card {
  background: var(--medical-card-bg) !important;
  border-color: var(--medical-card-border) !important;
}

.medical-card i {
  color: #4ade80 !important;
}

.medical-card:hover {
  border-color: rgba(74, 222, 128, 0.3) !important;
  box-shadow: 0 8px 30px rgba(74, 222, 128, 0.1) !important;
}

/* ---------- SERVICES PAGE ---------- */
.page-hero {
  padding: 11rem 0 5rem;
  text-align: center;
  position: relative;
  background:
    var(--page-hero-overlay),
    url('images/hero-1.jpg') center/cover no-repeat;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 0.8rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.page-hero .hero-badge {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: none;
}

.page-hero .gradient-text {
  background: linear-gradient(90deg, #ff4d4d, #ff6b6b, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(215, 25, 32, 0.15);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-blue-light);
  font-size: 1rem;
}

.service-cta-section {
  text-align: center;
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.service-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.service-cta-section p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 42px;
  height: 42px;
  background: rgba(215, 25, 32, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-red);
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-item a {
  color: var(--accent-blue-light);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Success toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--accent-green);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 5000;
  transition: 0.4s ease;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Map */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: var(--map-filter);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.store-info-wrapper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .store-info-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer p,
.footer li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

.footer a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--accent-blue-light);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}



.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-accent);
  color: #fff;
  border-color: var(--accent-red);
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expertise-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    border-left: 1px solid var(--border-glass);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ---------- UTILITY ---------- */
.text-accent {
  color: var(--accent-blue-light);
}

.text-red {
  color: var(--accent-red);
}

.text-gold {
  color: var(--accent-gold);
}

.bg-dark {
  background: var(--bg-secondary);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* ---------- AND MANY MORE SECTION ---------- */
.many-more-section {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.many-more-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(215, 25, 32, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: dotPulse 4s ease-in-out infinite alternate;
}

@keyframes dotPulse {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.many-more-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}

.many-more-badge i {
  font-size: 1rem;
}

.many-more-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.many-more-subtitle {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.many-more-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.many-more-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}

.many-more-item i {
  color: var(--accent-blue-light);
  font-size: 1rem;
}

.many-more-item:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.many-more-item-highlight {
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.15), rgba(212, 175, 55, 0.15));
  border-color: var(--accent-red);
  color: var(--text-primary);
  font-weight: 700;
}

.many-more-item-highlight i {
  color: var(--accent-gold);
}

.many-more-tagline {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.many-more-tagline i {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin: 0 0.3rem;
  opacity: 0.6;
}

.many-more-tagline strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.many-more-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .many-more-section {
    padding: 3rem 0;
  }

  .many-more-grid {
    gap: 0.6rem;
  }

  .many-more-item {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  .many-more-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== RESPONSIVE — TABLET & BELOW ========== */
@media (max-width: 768px) {

  /* Navbar — mobile menu */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .desktop-only {
    display: none !important;
  }

  .theme-toggle {
    z-index: 1000;
  }

  /* Hero section — mobile */
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    margin-top: 30px;
    padding: 1.2rem 1rem 1rem;
    max-width: 100%;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.5);
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-stats {
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Category slider — mobile */
  .cat-slider .cat-card {
    flex: 0 0 240px;
    min-width: 240px;
    height: 240px;
  }

  .cat-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .cat-slider-prev {
    left: 0.3rem;
  }

  .cat-slider-next {
    right: 0.3rem;
  }

  /* Page hero — mobile */
  .page-hero {
    padding: 8rem 0 3rem;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  /* Section headers */
  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .section {
    padding: 3rem 0;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .why-card {
    padding: 1.2rem 0.8rem;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  /* Product grid — products page */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .filter-bar {
    gap: 0.4rem;
  }

  .filter-btn {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
  }

  /* Service grid */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Product section — mobile */
  .product-section {
    padding: 2.5rem 0;
  }

  .product-section-banner {
    height: 180px;
    border-radius: var(--radius-sm);
  }

  .product-section-header {
    gap: 0.8rem;
  }

  .product-section-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .product-section-title {
    font-size: 1.2rem;
  }

  .product-section-title small {
    font-size: 0.75rem;
  }

  .product-card-img {
    height: 120px;
  }

  .product-card-body {
    padding: 0.8rem 0.9rem 1rem;
  }

  .product-card h4 {
    font-size: 0.88rem;
  }

  .product-card p {
    font-size: 0.75rem;
  }

  .filter-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-note {
    font-size: 0.78rem;
    padding: 0.6rem 1rem;
  }

  /* Service card — mobile */
  .service-card {
    padding: 1.5rem 1.2rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  .service-price {
    font-size: 0.8rem;
  }

  .service-cta-section {
    padding: 3rem 0;
  }

  .service-cta-section h2 {
    font-size: 1.3rem;
  }

  /* Contact page — mobile */
  .contact-info-card {
    padding: 1.5rem 1rem;
  }

  .contact-item {
    gap: 0.8rem;
  }

  .contact-item i {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .contact-item h4 {
    font-size: 0.88rem;
  }

  .contact-item p {
    font-size: 0.82rem;
  }

  .map-container iframe {
    height: 280px !important;
  }

  /* Badge highlight — mobile */
  .badge-highlight {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
  }
}

/* ========== RESPONSIVE — SMALL MOBILE ========== */
@media (max-width: 480px) {

  .container {
    padding: 0 1rem;
  }

  .hero-content {
    margin-top: 20px;
    padding: 1rem 0.8rem 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .hero-stats {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  /* Category slider — small mobile */
  .cat-slider .cat-card {
    flex: 0 0 200px;
    min-width: 200px;
    height: 220px;
  }

  .cat-card h3 {
    font-size: 0.95rem;
  }

  .cat-card p {
    font-size: 0.72rem;
  }

  .cat-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  /* Product grid — 2x2 Amazon-style */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .product-card-body {
    padding: 0.6rem 0.6rem 0.8rem;
  }

  .product-card h4 {
    font-size: 0.78rem;
  }

  .product-card p {
    font-size: 0.68rem;
  }

  .product-card .brand-list span {
    font-size: 0.58rem;
    padding: 0.1rem 0.4rem;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Page hero */
  .page-hero {
    padding: 7rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .page-hero p {
    font-size: 0.82rem;
  }

  /* Product section — small mobile */
  .product-section-banner {
    height: 150px;
  }

  .product-section-title {
    font-size: 1.05rem;
  }

  .product-card-img {
    height: 100px;
  }

  /* Service card — small mobile */
  .service-card {
    padding: 1.2rem 1rem;
  }

  .service-card img {
    height: 120px !important;
  }

  /* Contact — small mobile */
  .contact-info-card {
    padding: 1.2rem 0.8rem;
  }

  .map-container iframe {
    height: 220px !important;
  }
}