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

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
  --bg-deep: #030B2A;
  --bg-darker: #010514;
  --primary-neon: #0066FF;
  --primary-glow: rgba(0, 102, 255, 0.4);
  --accent-neon: #00F0FF;
  --white-metallic: #F5F7FA;
  --white-muted: #8E9BB4;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-glow: rgba(0, 102, 255, 0.5);
  --font-sans: 'Outfit', sans-serif;
  --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --max-width: 1440px;
}

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

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

body {
  background-color: var(--bg-darker);
  color: var(--white-metallic);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 102, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-neon);
  box-shadow: 0 0 10px var(--primary-neon);
}

/* Background Atmosphere Glows */
body::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Global Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

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

button, input, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--white-metallic) 30%, var(--accent-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-neon {
  background: linear-gradient(135deg, #0066FF 0%, #00F0FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-btn {
  background: linear-gradient(90deg, var(--primary-neon), #00A3FF);
  color: var(--white-metallic);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
  transition: var(--transition-premium);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: 0.75s;
}

.neon-btn:hover::after {
  left: 120%;
}

.neon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.7), 0 0 15px rgba(0, 240, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.border-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white-metallic);
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-premium);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.border-btn:hover {
  background: var(--glass-bg-hover);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
  transform: translateY(-3px);
}

.section-title-wrapper {
  margin-bottom: 50px;
  text-align: center;
}

.section-tag {
  color: var(--accent-neon);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(3, 11, 42, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-premium);
}

header.scrolled {
  background: rgba(1, 5, 20, 0.9);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-premium);
}

header.scrolled .header-container {
  height: 70px;
}

.logo-wrapper img {
  height: 76px;
  width: auto;
  display: block;
  transition: var(--transition-premium);
}

header.scrolled .logo-wrapper img {
  height: 58px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white-muted);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--white-metallic);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--accent-neon));
  transition: var(--transition-premium);
  box-shadow: 0 0 8px var(--primary-neon);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Bar */
.search-box {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 6px 14px 6px 36px;
  width: 180px;
  transition: var(--transition-premium);
}

.search-box:focus-within {
  width: 240px;
  border-color: var(--primary-neon);
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.2);
}

.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--white-muted);
  stroke-width: 2px;
  width: 16px;
  height: 16px;
}

.search-input {
  background: none;
  border: none;
  font-size: 0.85rem;
  width: 100%;
  outline: none;
}

.search-input::placeholder {
  color: var(--white-muted);
}

/* Cart Icon Button */
.cart-trigger {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-premium);
}

.cart-trigger:hover {
  background: var(--glass-bg-hover);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
  color: var(--accent-neon);
  transform: scale(1.05);
}

.cart-trigger svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--primary-neon), #00C2FF);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
  animation: pulse-glow 2s infinite;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white-metallic);
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.1) brightness(0.85);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(3, 11, 42, 0.6) 0%, 
    rgba(1, 5, 20, 0.9) 85%, 
    var(--bg-darker) 100%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-content {
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-neon);
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.1);
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--white-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  animation: fadeIn 1.5s ease-out;
}

/* Glow behind the shirt */
.hero-shirt-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 65%);
  z-index: -1;
  animation: pulse-glow-bg 4s infinite alternate;
}

/* Floating 3D shirt effect */
.hero-shirt-floating {
  max-width: 90%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  animation: float-shirt 6s ease-in-out infinite;
  transition: transform 0.2s ease-out; /* For smooth mouse movement interaction */
  mix-blend-mode: screen;
}

/* Particles decoration */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================================
   HIGHLIGHT CATEGORIES SECTION
   ========================================================================== */
.highlights {
  padding: 100px 0;
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-premium);
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 11, 42, 0.9) 100%);
  z-index: 2;
  transition: var(--transition-premium);
}

.category-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: var(--transition-premium);
  z-index: 1;
}

.category-header {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.category-tag {
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 102, 255, 0.4);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-neon);
}

.category-footer {
  position: relative;
  z-index: 3;
}

.category-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
  transition: var(--transition-premium);
}

.category-price {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-price strong {
  color: var(--white-metallic);
  font-size: 1.15rem;
  font-weight: 700;
}

.category-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-premium);
  width: 100%;
  justify-content: center;
}

.category-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
  transition: var(--transition-premium);
}

/* Hover Effects */
.category-card:hover {
  border-color: var(--primary-neon);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2), inset 0 0 20px rgba(0, 102, 255, 0.1);
  transform: translateY(-8px);
}

.category-card:hover .category-img {
  transform: scale(1.08);
  opacity: 0.75;
}

.category-card:hover .category-title {
  color: var(--accent-neon);
}

.category-card:hover .category-btn {
  background: var(--primary-neon);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px var(--primary-glow);
}

.category-card:hover .category-btn svg {
  transform: translateX(4px);
}

/* ==========================================================================
   LAUNCHES SECTION (CAROUSEL)
   ========================================================================== */
.launches {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(3, 11, 42, 0.4) 50%, var(--bg-darker) 100%);
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 40px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-card {
  flex: 0 0 calc((100% - 90px) / 4); /* 4 cards visible on desktop */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-premium);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #FF9900, #FF5C00);
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(255, 92, 0, 0.3);
}

.product-badge.exclusive {
  background: linear-gradient(135deg, var(--primary-neon), #00F0FF);
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.wishlist-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--white-muted);
  transition: var(--transition-premium);
}

.wishlist-btn:hover, .wishlist-btn.active {
  color: #FF2E93;
  background: rgba(255, 46, 147, 0.1);
  border-color: rgba(255, 46, 147, 0.4);
  transform: scale(1.1);
}

.wishlist-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}

.wishlist-btn.active svg {
  fill: currentColor;
}

.product-img-wrapper {
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  overflow: hidden;
}

.product-img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  border-radius: 16px;
  transition: var(--transition-premium);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--white-metallic);
  transition: var(--transition-fast);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--white-muted);
}

.product-rating svg {
  width: 14px;
  height: 14px;
  fill: #FFB800;
}

.product-price-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--white-muted);
}

.current-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-neon);
}

.price-installments {
  font-size: 0.75rem;
  color: var(--white-muted);
}

.buy-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--white-metallic);
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-premium);
  width: 100%;
}

.buy-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

/* Hover on Product Card */
.product-card:hover {
  border-color: var(--primary-neon);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
  transform: translateY(-5px);
  background: var(--glass-bg-hover);
}

.product-card:hover .product-img {
  transform: translateY(-8px) scale(1.05) rotate(2deg);
  filter: drop-shadow(0 20px 30px rgba(0, 102, 255, 0.3));
}

.product-card:hover .product-name {
  color: var(--accent-neon);
}

.product-card:hover .buy-btn {
  background: var(--primary-neon);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Carousel Nav Controls */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-premium);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--primary-neon);
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px var(--primary-glow);
  color: white;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-muted);
  opacity: 0.4;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--primary-neon);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--primary-neon);
}

/* ==========================================================================
   DIFFERENTIALS SECTION
   ========================================================================== */
.differentials {
  padding: 100px 0;
  position: relative;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-premium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diff-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-neon);
  transition: var(--transition-premium);
}

.diff-icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

.diff-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white-metallic);
}

.diff-desc {
  font-size: 0.8rem;
  color: var(--white-muted);
  line-height: 1.4;
}

/* Hover on Diff Card */
.diff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 255, 0.4);
  background: var(--glass-bg-hover);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
}

.diff-card:hover .diff-icon-wrapper {
  background: var(--primary-neon);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* ==========================================================================
   WORLD CUP HEXA BANNER
   ========================================================================== */
.hexa-banner-section {
  padding: 50px 0;
}

.hexa-banner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 480px;
  display: flex;
  align-items: center;
  border: 1px solid var(--glass-border);
}

.hexa-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(3, 11, 42, 0.95) 25%, rgba(3, 11, 42, 0.6) 60%, transparent 100%);
  z-index: 2;
}

.hexa-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
  transform: scale(1.02);
}

.hexa-banner-content {
  position: relative;
  z-index: 5;
  padding: 0 8%;
  max-width: 650px;
}

.hexa-tag {
  color: #FFD700; /* Dourado */
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.hexa-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hexa-title span {
  color: var(--accent-neon);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.hexa-desc {
  font-size: 1.15rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  padding: 100px 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  transition: var(--transition-premium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #FFB800;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-metallic);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-neon);
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-neon);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.user-info-text {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white-metallic);
}

.user-role {
  font-size: 0.75rem;
  color: var(--white-muted);
}

/* Hover testimonial card */
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 102, 255, 0.3);
  background: var(--glass-bg-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 24px;
}

.footer-slogan {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.social-link {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-premium);
  color: var(--white-muted);
}

.social-link:hover {
  background: var(--primary-neon);
  border-color: var(--primary-neon);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--primary-glow);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-metallic);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-neon);
  padding-left: 5px;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--white-muted);
}

/* ==========================================================================
   SHOPPING CART SIDEBAR
   ========================================================================== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: rgba(1, 5, 20, 0.95);
  backdrop-filter: blur(25px);
  border-left: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header-title {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-title svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-neon);
  fill: none;
  stroke-width: 2px;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  transition: var(--transition-premium);
}

.cart-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-metallic);
  transform: rotate(90deg);
}

.cart-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2px;
}

/* Cart Body Items list */
.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--white-muted);
  text-align: center;
}

.cart-empty-state svg {
  width: 80px;
  height: 80px;
  stroke: var(--white-muted);
  stroke-width: 1.5px;
  fill: none;
  margin-bottom: 20px;
  opacity: 0.3;
}

.cart-empty-text {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-empty-sub {
  font-size: 0.85rem;
  max-width: 240px;
}

/* Cart Item Row */
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img-container {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white-metallic);
  line-height: 1.3;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-top: 4px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.qty-control {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white-muted);
  transition: var(--transition-fast);
}

.qty-btn:hover {
  color: var(--accent-neon);
  background: rgba(255, 255, 255, 0.05);
}

.qty-value {
  width: 30px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-neon);
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255, 46, 147, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: #FF2E93;
  transform: scale(1.1);
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
}

/* Cart Footer */
.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(1, 5, 20, 0.4);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total-label {
  font-size: 1rem;
  color: var(--white-muted);
  font-weight: 500;
}

.cart-total-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white-metallic);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.cart-checkout-btn {
  background: linear-gradient(90deg, #25D366, #128C7E); /* Cores do WhatsApp */
  color: white;
  font-weight: 700;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition-premium);
}

.cart-checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(90deg, #30e374, #159c8d);
}

.cart-checkout-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Cart Overlay Darkener */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   PRODUCT DETAIL MODAL (QUICK VIEW)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  background: rgba(3, 11, 42, 0.95);
  border: 1px solid rgba(0, 102, 255, 0.3);
  width: 100%;
  max-width: 900px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 102, 255, 0.2);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .product-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: var(--transition-premium);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2px;
}

.modal-gallery {
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 80%), rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-main-img {
  max-width: 85%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  animation: float-shirt 5s ease-in-out infinite;
}

.modal-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-badge {
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--accent-neon);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-bottom: 20px;
}

.modal-rating svg {
  width: 14px;
  height: 14px;
  fill: #FFB800;
}

.modal-price-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.modal-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-neon);
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Size Selection */
.size-selector-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white-metallic);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.size-option {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.size-option:hover {
  border-color: var(--primary-neon);
  color: var(--accent-neon);
}

.size-option.active {
  background: var(--primary-neon);
  border-color: var(--primary-neon);
  color: white;
  box-shadow: 0 0 10px var(--primary-glow);
}

.modal-action-btn {
  width: 100%;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float-shirt {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-1.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
  }
}

@keyframes pulse-glow-bg {
  0% {
    opacity: 0.8;
    transform: scale(0.95);
  }
  100% {
    opacity: 1.2;
    transform: scale(1.05);
  }
}

/* ==========================================================================
   RESERVATION SECTION
   ========================================================================== */
.reservation-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(3, 11, 42, 0.6) 50%, var(--bg-darker) 100%);
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.reservation-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: var(--transition-premium);
}

.reservation-image-wrapper:hover {
  border-color: var(--primary-glow);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
}

.reservation-image-wrapper::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-neon) 0%, transparent 70%);
  opacity: 0.15;
  top: 10%;
  left: 10%;
  pointer-events: none;
}

.reservation-image-wrapper img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  transition: var(--transition-premium);
}

.reservation-image-wrapper:hover img {
  transform: scale(1.03);
}

.reservation-info {
  display: flex;
  flex-direction: column;
}

.product-reservation-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  color: var(--white-metallic);
  margin-bottom: 8px;
}

.reservation-price-wrapper {
  margin-bottom: 18px;
}

.reservation-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-neon);
}

.reservation-desc {
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.reservation-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 16px 20px;
  border-radius: 16px;
}

.shipping-info, .stock-warning {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.info-icon {
  font-size: 1.2rem;
}

.reservation-sizes {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.reserve-size-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-premium);
  min-width: 70px;
  cursor: pointer;
}

.reserve-size-btn:hover {
  border-color: var(--primary-neon);
  background: rgba(0, 102, 255, 0.05);
}

.reserve-size-btn.active {
  background: linear-gradient(135deg, var(--primary-neon), #00A3FF);
  border-color: var(--accent-neon);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.reserve-size-btn .size-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-metallic);
}

.reserve-size-btn .size-stock {
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 2px;
}

.reserve-size-btn.active .size-stock {
  color: rgba(255, 255, 255, 0.8);
}

.reservation-action-btn {
  width: fit-content;
  align-self: flex-start;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.8rem;
  }
  .product-card {
    flex: 0 0 calc((100% - 60px) / 3); /* 3 cards visible on medium screens */
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding-bottom: 50px;
  }
  .hero {
    min-height: auto;
    padding-top: 120px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-shirt-floating {
    max-width: 70%;
  }
  .product-modal {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
  .modal-gallery {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
  }
  .modal-main-img {
    max-height: 250px;
  }
  .modal-details {
    padding: 30px;
  }
  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
  }
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* We can add mobile drawer toggles in JS */
  }
  .mobile-menu-btn {
    display: block;
  }
  .search-box {
    display: none; /* Hide search bar on mobile headers, or make expandable */
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .product-card {
    flex: 0 0 calc((100% - 30px) / 2); /* 2 cards visible on smaller screens */
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hexa-banner {
    height: 380px;
  }
  .hexa-title {
    font-size: 2.6rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  .reservation-section {
    padding: 60px 0;
  }
  .product-reservation-title {
    font-size: 1.5rem;
  }
  .reservation-sizes {
    justify-content: center;
  }
  .reservation-action-btn {
    align-self: center;
    width: 100%;
    justify-content: center;
  }
  .reservation-info {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions button {
    width: 100%;
    justify-content: center;
  }
  .product-card {
    flex: 0 0 100%; /* 1 card visible on mobile portrait */
  }
  .differentials-grid {
    grid-template-columns: 1fr;
  }
  .hexa-banner {
    height: auto;
    padding: 60px 20px;
    align-items: flex-start;
  }
  .hexa-banner-content {
    padding: 0;
  }
  .hexa-title {
    font-size: 2rem;
  }
  .footer-middle {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
