/* ===================================
   AZURESPORT - MINIMALIST DESIGN
   Modern, Clean & Performance-Focused
   =================================== */

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

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  color: #1A1A1A;
}

h2 {
  font-size: 32px;
  color: #1A1A1A;
}

h3 {
  font-size: 24px;
  color: #1A1A1A;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: #0066CC;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004080;
}

ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #0066CC;
  border-bottom-color: #0066CC;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #0066CC;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 1001;
  transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #004080;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1A1A1A;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #0066CC;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #F5F5F5;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #0066CC;
  padding-left: 8px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: #0066CC;
  color: #FFFFFF;
  border-color: #0066CC;
}

.btn-primary:hover {
  background: #004080;
  border-color: #004080;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.btn-secondary:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-reset {
  background: #F5F5F5;
  color: #1A1A1A;
  border: 1px solid #E0E0E0;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-reset:hover {
  background: #E0E0E0;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.hero p {
  font-size: 20px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background: #FFFFFF;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 500;
  color: #0066CC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* HERO 404 */
.hero-404 {
  background: #F5F5F5;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-404 h1 {
  font-size: 120px;
  color: #0066CC;
  margin-bottom: 16px;
}

.hero-404 h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

/* FEATURES & CARDS */
.features {
  padding: 60px 20px;
  background: #FFFFFF;
}

.feature-grid,
.service-grid,
.category-grid,
.product-grid,
.sport-category-grid,
.value-grid,
.stats-grid,
.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card,
.service-card,
.category-card,
.product-card,
.sport-category-card,
.value-card,
.stat-card,
.option-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.feature-card:hover,
.service-card:hover,
.category-card:hover,
.product-card:hover,
.sport-category-card:hover,
.value-card:hover,
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #0066CC;
}

.feature-card img,
.service-card img,
.category-card img,
.value-card img,
.option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(94%) saturate(2078%) hue-rotate(197deg) brightness(95%) contrast(101%);
}

.feature-card h3,
.service-card h3,
.category-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p,
.service-card p {
  color: #666666;
  font-size: 15px;
}

/* SERVICE CARDS */
.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.service-card-detailed {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 40px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card-detailed:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #0066CC;
}

.service-card-detailed img {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(94%) saturate(2078%) hue-rotate(197deg) brightness(95%) contrast(101%);
}

.service-card-detailed h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card-detailed ul {
  margin: 20px 0;
  list-style: none;
}

.service-card-detailed ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #666666;
}

.service-card-detailed ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066CC;
  font-weight: bold;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #0066CC;
  margin: 20px 0;
}

/* PRODUCT CARDS */
.product-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image-placeholder:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.rating {
  color: #FF6B35;
  font-size: 16px;
  margin: 8px 0;
}

/* CATALOG LAYOUT */
.catalog-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.filter-sidebar {
  flex: 0 0 250px;
  background: #F5F5F5;
  padding: 24px;
  border-radius: 8px;
  position: sticky;
  top: 100px;
}

.filter-sidebar h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.filter-group input[type="range"] {
  width: 100%;
  margin-bottom: 8px;
}

.product-area {
  flex: 1;
  min-width: 300px;
}

.product-controls {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.product-controls select {
  padding: 10px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 14px;
  background: #FFFFFF;
  cursor: pointer;
}

/* TESTIMONIALS */
.testimonials {
  background: #F5F5F5;
  padding: 60px 20px;
}

.testimonial-slider,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.customer-name {
  font-weight: 600;
  color: #1A1A1A;
  font-style: normal;
  margin-bottom: 8px;
}

/* TIMELINE */
.process-timeline {
  padding: 60px 20px;
  background: #FFFFFF;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  position: relative;
}

.timeline-step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #F5F5F5;
  border-radius: 8px;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #0066CC;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 16px;
}

.timeline-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.timeline-step p {
  color: #666666;
  font-size: 14px;
}

/* STATS */
.stats {
  background: #0066CC;
  color: #FFFFFF;
  padding: 60px 20px;
}

.stats h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  font-size: 48px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.stat-card p {
  color: #FFFFFF;
  font-size: 16px;
}

/* BLOG */
.blog-categories {
  padding: 40px 20px;
  background: #F5F5F5;
}

.category-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-tabs button {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 24px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-tabs button:hover,
.category-tabs .tab-active {
  background: #0066CC;
  color: #FFFFFF;
  border-color: #0066CC;
}

.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 20px;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
}

.blog-card .category-tag {
  display: inline-block;
  background: #0066CC;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  margin: 20px 0 12px 20px;
}

.blog-card h3 {
  padding: 0 20px;
  font-size: 22px;
  margin-bottom: 12px;
}

.blog-card > p {
  padding: 0 20px;
  color: #666666;
  flex-grow: 1;
}

.post-meta {
  display: flex;
  gap: 16px;
  padding: 0 20px 12px;
  color: #999999;
  font-size: 13px;
}

.read-more {
  padding: 12px 20px 20px;
  color: #0066CC;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #004080;
}

/* NEWSLETTER */
.newsletter {
  background: #F5F5F5;
  padding: 60px 20px;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 16px;
}

/* CONTACT FORMS */
.contact-form-section {
  padding: 60px 20px;
  background: #FFFFFF;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1A1A1A;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0066CC;
}

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

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

/* STORE INFO */
.store-info-grid,
.info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.info-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #F5F5F5;
  padding: 24px;
  border-radius: 8px;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* MAP */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #F5F5F5 0%, #E0E0E0 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 18px;
  margin-top: 32px;
}

/* LEGAL PAGES */
.legal-hero {
  background: #F5F5F5;
  padding: 60px 20px;
  text-align: center;
}

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.cta-box {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #E0E0E0;
}

.cta-box h3 {
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: #F5F5F5;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #0066CC;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.link-grid,
.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.link-card,
.action-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.link-card:hover,
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #0066CC;
}

.link-card img,
.action-card img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(28%) sepia(94%) saturate(2078%) hue-rotate(197deg) brightness(95%) contrast(101%);
}

.link-card span,
.action-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
}

.action-card p {
  color: #666666;
  font-size: 14px;
}

/* LOCATION & CTA SECTIONS */
.location-info,
.contact-support,
.cta-section,
.contact-alternative {
  padding: 60px 20px;
  text-align: center;
  background: #F5F5F5;
}

.location-info h2,
.contact-support h2,
.cta-section h2,
.contact-alternative h2 {
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 250px;
}

.footer-col img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a {
  color: #CCCCCC;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.copyright {
  text-align: center;
  color: #999999;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #333333;
}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all-cookies {
  background: #0066CC;
  color: #FFFFFF;
}

#accept-all-cookies:hover {
  background: #004080;
}

#reject-all-cookies {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

#reject-all-cookies:hover {
  background: rgba(255, 255, 255, 0.1);
}

#cookie-settings {
  background: #666666;
  color: #FFFFFF;
}

#cookie-settings:hover {
  background: #555555;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #1A1A1A;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #CCCCCC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #0066CC;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.cookie-toggle.active:after {
  left: 26px;
}

.cookie-category p {
  color: #666666;
  font-size: 14px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  min-width: 150px;
}

/* SPORT DETAIL SECTIONS */
.sport-detail-section {
  background: #F5F5F5;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sport-detail-section h2 {
  margin-bottom: 16px;
}

.sport-detail-section ul {
  list-style: none;
  margin-top: 20px;
}

.sport-detail-section ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #666666;
}

.sport-detail-section ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #0066CC;
  font-weight: bold;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .hero-404 h1 {
    font-size: 80px;
  }
  
  /* Section padding */
  .section,
  .hero,
  .features,
  .testimonials,
  .process-timeline,
  .blog-post-grid {
    padding: 40px 20px;
  }
  
  /* Flex direction changes */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Cards go full width or 2-column */
  .feature-card,
  .service-card,
  .category-card,
  .product-card,
  .sport-category-card,
  .value-card,
  .stat-card,
  .option-card,
  .testimonial-card,
  .timeline-step,
  .blog-card,
  .service-card-detailed,
  .link-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Catalog sidebar */
  .catalog-layout {
    flex-direction: column;
  }
  
  .filter-sidebar {
    position: static;
    width: 100%;
    flex: none;
  }
  
  /* Footer */
  .footer-columns {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: none;
    width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
  }
  
  /* Timeline horizontal to vertical */
  .timeline {
    flex-direction: column;
  }
  
  .timeline-step {
    width: 100%;
  }
  
  /* Store info grid */
  .store-info-grid,
  .info-block {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Smaller typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Button sizing */
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Card padding */
  .feature-card,
  .service-card,
  .product-card,
  .testimonial-card,
  .service-card-detailed {
    padding: 24px;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}