/* ============================================
   SPOR.RUN - Ana Stil Dosyası
   Renk Paleti: Turuncu #F97316, Siyah #1A1A1A
   Tipografi: Montserrat + Inter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Değişkenleri ---- */
:root {
  --orange: #F97316;
  --orange-dark: #EA6C0A;
  --orange-light: #FED7AA;
  --black: #1A1A1A;
  --black-soft: #111111;
  --gray-dark: #2D2D2D;
  --gray-mid: #555555;
  --gray-light: #AAAAAA;
  --gray-bg: #F5F5F5;
  --white: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-hover: 0 8px 40px rgba(249,115,22,0.25);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ---- 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: #E3E6E6;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- Utility Classes ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.bg-black { background: var(--black-soft); }
.bg-gray { background: var(--gray-bg); }
.text-center { text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(17,17,17,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
}
.logo span { color: var(--orange); }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--orange);
  background: rgba(249,115,22,0.1);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-sm { padding: 9px 20px; font-size: 13px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--black-soft);
  padding: 48px 0 56px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-running.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.7) 0%, rgba(249,115,22,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .highlight { color: var(--orange); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(249,115,22,0.8), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section { background: var(--black-soft); padding: 80px 0; }
.map-section .section-title { color: var(--white); }
.map-section .section-subtitle { color: rgba(255,255,255,0.6); }
.map-container {
  position: relative;
  background: var(--gray-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
#turkey-map {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}
.map-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.legend-dot.easy { background: #22c55e; }
.legend-dot.medium { background: var(--orange); }
.legend-dot.hard { background: #ef4444; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  height: 160px;
  background: var(--gray-dark);
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.service-card-body { padding: 19px; }
.service-card-icon {
  width: 38px; height: 38px;
  background: rgba(249,115,22,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.service-card-link:hover { gap: 10px; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--orange);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card-img {
  height: 180px;
  background: var(--gray-bg);
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.blog-card-body { padding: 20px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--black);
}
.blog-card-title:hover { color: var(--orange); }
.blog-card-excerpt {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
.blog-author-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}
.read-more {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { gap: 8px; }

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--black-soft) 0%, var(--gray-dark) 100%);
  padding: 80px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.newsletter-desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--orange); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================
   PAGE HERO (İç Sayfalar)
   ============================================ */
.page-hero {
  background: var(--black-soft);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero-breadcrumb a:hover { color: var(--orange); }
.page-hero-breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   CONTENT CARDS
   ============================================ */
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.content-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(249,115,22,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--gray-mid); line-height: 1.7; }

/* Program Cards */
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.program-card-header {
  background: var(--black);
  padding: 28px;
  position: relative;
}
.program-level {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.level-beginner { background: rgba(34,197,94,0.2); color: #22c55e; }
.level-intermediate { background: rgba(249,115,22,0.2); color: var(--orange); }
.level-advanced { background: rgba(239,68,68,0.2); color: #ef4444; }
.program-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.program-duration {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-card-body { padding: 28px; }
.program-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.program-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-mid);
}
.program-feature::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   TRAINER CARDS
   ============================================ */
.trainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trainer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-align: center;
}
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.trainer-card-img {
  height: 240px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trainer-avatar-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
}
.trainer-card-body { padding: 24px; }
.trainer-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.trainer-title { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.trainer-tag {
  background: var(--gray-bg);
  color: var(--gray-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.trainer-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 16px;
}
.trainer-stat-item { text-align: center; }
.trainer-stat-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}
.trainer-stat-lbl { font-size: 11px; color: var(--gray-light); }

/* ============================================
   SHOP / PRODUCT CARDS
   ============================================ */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img {
  height: 220px;
  background: var(--gray-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #ef4444;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.product-wishlist:hover { background: var(--orange); color: var(--white); }
.product-body { padding: 20px; }
.product-cat { font-size: 11px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.stars { color: #f59e0b; font-size: 13px; }
.rating-count { font-size: 12px; color: var(--gray-light); }
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.price-current {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}
.price-old {
  font-size: 14px;
  color: var(--gray-light);
  text-decoration: line-through;
}
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; justify-content: center; }

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-bg);
  color: var(--gray-mid);
  transition: var(--transition);
  border: 2px solid transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ============================================
   NUTRITION SECTION
   ============================================ */
.nutrition-tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-bg);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 40px;
  width: fit-content;
}
.nutrition-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  transition: var(--transition);
  cursor: pointer;
}
.nutrition-tab.active {
  background: var(--orange);
  color: var(--white);
}
.nutrition-content { display: none; }
.nutrition-content.active { display: block; }

/* ============================================
   ACCORDION
   ============================================ */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.accordion-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--orange); }
.accordion-header.open { color: var(--orange); }
.accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  flex-shrink: 0;
}
.accordion-header.open .accordion-icon { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body.open {
  padding: 0 24px 20px;
  max-height: 500px;
}
.accordion-body p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; }

/* ============================================
   RACE CALENDAR
   ============================================ */
.race-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.race-table thead { background: var(--black); }
.race-table th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.race-table tbody tr { border-bottom: 1px solid rgba(0,0,0,0.06); transition: var(--transition); }
.race-table tbody tr:hover { background: rgba(249,115,22,0.04); }
.race-table td { padding: 16px 20px; font-size: 14px; }
.race-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.race-badge.sprint { background: rgba(34,197,94,0.1); color: #22c55e; }
.race-badge.olympic { background: rgba(249,115,22,0.1); color: var(--orange); }
.race-badge.ironman { background: rgba(239,68,68,0.1); color: #ef4444; }
.race-badge.marathon { background: rgba(99,102,241,0.1); color: #6366f1; }
.race-badge.trail { background: rgba(16,185,129,0.1); color: #10b981; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trainer-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .trainer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .filter-bar { justify-content: center; }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); background: rgba(249,115,22,0.1); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   BREADCRUMB & MISC
   ============================================ */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
  margin: 0;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--gray-bg);
  color: var(--gray-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.tag:hover { background: var(--orange); color: var(--white); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  background: var(--gray-bg);
  color: var(--gray-mid);
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--orange);
  color: var(--white);
}

/* Tooltip */
.tooltip {
  position: relative;
}
.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.tooltip:hover::after { opacity: 1; }
