/* ===== MODERN DESIGN SYSTEM ===== */

/* CSS Custom Properties */
:root {
  /* Colors */
  --primary-color: #0d6efd;
  --primary-dark: #0b5ed7;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #0dcaf0;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --dark: #000000;
  
  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
  --border-radius-pill: 50rem;
  
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --shadow-xl: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

/* ===== RESET & BASE STYLES ===== */

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  font-weight: var(--font-weight-normal);
}

/* ===== LAYOUT COMPONENTS ===== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--spacing-sm));
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  padding: 0 var(--spacing-sm);
}

/* ===== HEADER & NAVIGATION ===== */

.header {
  position: relative;
}

.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition-normal);
  padding: var(--spacing-md) 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color) !important;
  text-decoration: none;
  transition: var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link {
  font-weight: var(--font-weight-medium);
  color: var(--gray-700) !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background-color: var(--gray-100);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* ===== HERO SECTION ===== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Improved hero buttons styling */
.hero-section .btn-lg {
  border-radius: var(--border-radius-pill);
  padding: 0.9rem 1.25rem;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  box-shadow: 0 10px 18px rgba(13, 110, 253, 0.3);
}

.hero-section .btn-primary:active {
  box-shadow: var(--shadow-sm);
}

.hero-section .btn-outline-light {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

/* ===== CATEGORIES SECTION ===== */

.categories-section {
  background: var(--white);
  padding: var(--spacing-3xl) 0;
}

.category-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  border: 1px solid var(--gray-200);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--info-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition-normal);
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-title {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--gray-800);
}

.category-description {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== ANIMATED CATEGORY CARDS ===== */
.animated-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  height: 280px;
  display: flex;
  flex-direction: column;
}

.category-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.animated-card:hover .category-animation {
  opacity: 1;
}

.category-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-xl);
  padding: 1rem;
  margin-top: auto;
  backdrop-filter: blur(10px);
}

/* ===== WINDSURFING ANIMATION ===== */
.windsurfing-scene {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #87CEEB 0%, #4682B4 100%);
}

.water-surface {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, #4682B4 0%, #1E90FF 100%);
  animation: waterWave 3s ease-in-out infinite;
}

.windsurfer {
  position: absolute;
  bottom: 25%;
  left: 20%;
  animation: windsurfingMove 4s ease-in-out infinite;
}

.board {
  width: 60px;
  height: 8px;
  background: #8B4513;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sail {
  position: absolute;
  bottom: 8px;
  left: 15px;
  transform-origin: bottom center;
  animation: sailSwing 2s ease-in-out infinite;
}

.sail-fabric {
  width: 25px;
  height: 40px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border-radius: 0 20px 0 0;
  transform: skew(-10deg);
}

.mast {
  width: 2px;
  height: 45px;
  background: #8B4513;
  position: absolute;
  bottom: 0;
  left: 0;
}

.boom {
  width: 30px;
  height: 2px;
  background: #8B4513;
  position: absolute;
  bottom: 15px;
  left: -5px;
}

.rider {
  width: 8px;
  height: 20px;
  background: #FF6B6B;
  border-radius: 4px;
  position: absolute;
  bottom: 8px;
  left: 25px;
  animation: riderBalance 1.5s ease-in-out infinite;
}

.wind-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: windFlow 3s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 30%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 60%; left: 50%; animation-delay: 1s; }
.particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 50%; left: 90%; animation-delay: 2s; }

/* ===== KITESURFING ANIMATION ===== */
.kitesurfing-scene {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #87CEEB 0%, #4682B4 100%);
}

.kitesurfer {
  position: absolute;
  bottom: 25%;
  left: 15%;
  animation: kitesurfingMove 5s ease-in-out infinite;
}

.kite {
  position: absolute;
  top: -30px;
  left: 20px;
  animation: kiteFloat 3s ease-in-out infinite;
}

.kite-canopy {
  width: 30px;
  height: 20px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  border-radius: 50% 50% 0 0;
  position: relative;
}

.kite-lines {
  width: 1px;
  height: 30px;
  background: #333;
  position: absolute;
  bottom: -30px;
  left: 15px;
}

/* ===== FOILING ANIMATION ===== */
.foiling-scene {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #87CEEB 0%, #4682B4 100%);
}

.foiler {
  position: absolute;
  bottom: 35%;
  left: 20%;
  animation: foilingGlide 6s ease-in-out infinite;
}

.foil {
  position: absolute;
  bottom: -15px;
  left: 25px;
}

.foil-mast {
  width: 2px;
  height: 20px;
  background: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}

.foil-wing {
  width: 15px;
  height: 3px;
  background: #666;
  position: absolute;
  bottom: 5px;
  left: -6px;
  border-radius: 2px;
}

.water-splash {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.splash {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: waterSplash 2s ease-out infinite;
}

.splash:nth-child(1) { bottom: 10%; left: 30%; animation-delay: 0s; }
.splash:nth-child(2) { bottom: 15%; left: 60%; animation-delay: 0.5s; }
.splash:nth-child(3) { bottom: 20%; left: 80%; animation-delay: 1s; }

/* ===== WINGSURFING ANIMATION ===== */
.wingsurfing-scene {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #87CEEB 0%, #4682B4 100%);
}

.wingsurfer {
  position: absolute;
  bottom: 25%;
  left: 20%;
  animation: wingsurfingMove 4.5s ease-in-out infinite;
}

.wing {
  position: absolute;
  top: -20px;
  left: 15px;
  animation: wingWave 2.5s ease-in-out infinite;
}

.wing-fabric {
  width: 35px;
  height: 15px;
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.wing-handles {
  width: 20px;
  height: 2px;
  background: #333;
  position: absolute;
  bottom: 5px;
  left: 7px;
}

/* ===== PRODUCTS SECTION ===== */

.products-section {
  background: var(--gray-100);
  padding: var(--spacing-3xl) 0;
}

/* Minimal Value Props strip */
.value-props .value-prop {
  font-weight: var(--font-weight-medium);
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.value-props i {
  color: var(--primary-color);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--gray-800);
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.btn-filter {
  padding: var(--spacing-sm) var(--spacing-lg);
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  border-radius: var(--border-radius-pill);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-filter:hover,
.btn-filter.active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== PRODUCT CARDS ===== */

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  border: 1px solid var(--gray-200);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.product-img-container {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  transition: var(--transition-normal);
  display: block;
  image-orientation: from-image;
}

.product-card:hover .product-img {
  transform: none;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.product-card:hover .product-overlay .btn {
  transform: translateY(0);
}

.card-body {
  padding: var(--spacing-lg);
}

.card-title {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--gray-800);
  font-size: 1.1rem;
}

.card-text {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
}

.product-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* ===== BADGES ===== */

.badge-new {
  background: linear-gradient(135deg, var(--success-color), #20c997);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-used {
  background: linear-gradient(135deg, var(--warning-color), #fd7e14);
  color: var(--gray-800);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ABOUT SECTION ===== */

.about-section {
  background: var(--white);
  padding: var(--spacing-3xl) 0;
}

.about-content {
  padding-right: var(--spacing-xl);
}

.about-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--gray-100);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CART ===== */

.cart-items {
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  background: var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--gray-200);
}

.cart-summary {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

/* ===== FOOTER ===== */

.footer {
  background: var(--gray-900) !important;
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-brand h5 {
  color: var(--primary-color);
}

.footer a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-toast);
  max-width: 400px;
  display: none;
}

.cookie-content {
  padding: var(--spacing-lg);
}

.cookie-text {
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary-color);
}

.cookie-actions {
  text-align: right;
}

/* ===== BUTTONS ===== */

.btn {
  font-weight: var(--font-weight-medium);
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  /* Tighten heading spacing to compensate for larger button gap */
  .hero-title { margin-bottom: 0.5rem; }
  .hero-subtitle { margin-bottom: 0.75rem; }

  /* Hide floating info card in hero and the entire categories section on mobile */
  .floating-card {
    display: none !important;
  }
  
  .categories-section {
    display: none !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .floating-card {
    margin-top: var(--spacing-xl);
  }
  
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-filter {
    width: 100%;
    max-width: 300px;
  }

  /* Mobile hero buttons spacing: 20px between buttons */
  .hero-buttons {
    flex-direction: column;
    gap: 0;
  }
  .hero-buttons .btn { margin-bottom: 20px; }
  .hero-buttons .btn:last-child { margin-bottom: 0; }
  
  .about-content {
    padding-right: 0;
    margin-bottom: var(--spacing-xl);
  }
  
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: none;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .category-card {
    padding: var(--spacing-lg);
  }
  
  .product-img-container {
    height: 220px;
  }
}

/* Feature support fallbacks */
@supports not (backdrop-filter: blur(2px)) {
  .navbar { background: #ffffff !important; }
  .category-content { background: #ffffff; }
  .hero-section .btn-outline-light { background: rgba(255,255,255,0.15); }
}

/* Ensures consistent size in browsers without aspect-ratio quirks */
@supports not (aspect-ratio: 1 / 1) {
  .product-img-container { height: 320px; }
}

/* ===== UTILITY CLASSES ===== */

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-info { color: var(--info-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-success { background-color: var(--success-color) !important; }
.bg-warning { background-color: var(--warning-color) !important; }
.bg-danger { background-color: var(--danger-color) !important; }
.bg-info { background-color: var(--info-color) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }

.rounded-sm { border-radius: var(--border-radius-sm) !important; }
.rounded-md { border-radius: var(--border-radius-md) !important; }
.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.rounded-xl { border-radius: var(--border-radius-xl) !important; }
.rounded-pill { border-radius: var(--border-radius-pill) !important; }

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0000ff;
    --gray-800: #000000;
    --gray-600: #333333;
  }
}

/* ===== SECRET ADMIN ACCESS ===== */

#secret-u {
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 2px;
  padding: 1px 2px;
}

#secret-u:hover {
  color: var(--primary-color) !important;
  text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.1);
}

#secret-u:active {
  transform: scale(0.95);
}

#secret-access {
  transition: all 0.3s ease;
  animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== WATER SPORTS ANIMATION KEYFRAMES ===== */
@keyframes waterWave {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

@keyframes windsurfingMove {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(10px) translateY(-5px); }
  50% { transform: translateX(20px) translateY(0px); }
  75% { transform: translateX(10px) translateY(-3px); }
}

@keyframes sailSwing {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

@keyframes riderBalance {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

@keyframes windFlow {
  0% { transform: translateX(-100px) translateY(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100px) translateY(-20px); opacity: 0; }
}

@keyframes kitesurfingMove {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(15px) translateY(-8px); }
  50% { transform: translateX(30px) translateY(0px); }
  75% { transform: translateX(15px) translateY(-5px); }
}

@keyframes kiteFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes foilingGlide {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(12px) translateY(-10px); }
  50% { transform: translateX(25px) translateY(-15px); }
  75% { transform: translateX(12px) translateY(-8px); }
}

@keyframes waterSplash {
  0% { transform: translateY(0px) scale(0); opacity: 1; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.8; }
  100% { transform: translateY(-40px) scale(0); opacity: 0; }
}

@keyframes wingsurfingMove {
  0%, 100% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(8px) translateY(-6px); }
  50% { transform: translateX(18px) translateY(0px); }
  75% { transform: translateX(8px) translateY(-4px); }
}

@keyframes wingWave {
  0%, 100% { transform: rotate(-15deg) translateY(0px); }
  50% { transform: rotate(-10deg) translateY(-5px); }
}