/* ==========================================================================
   AURA LUXE - Premium CSS Design System
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Colors */
  --bg-base: #030303;
  --bg-surface: #0a0a0c;
  --bg-surface-elevated: #111115;
  
  --primary: #8b5cf6; /* Electric Violet */
  --primary-hover: #7c3aed;
  --accent-cyan: #06b6d4; /* Cyber Cyan */
  --accent-magenta: #d946ef; /* Hot Magenta */
  --accent-yellow: #eab308; /* Luxury Gold */
  
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-muted-dim: #71717a;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.15);
  
  --glass-bg: rgba(10, 10, 12, 0.6);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(16px);
  
  /* Layout & Spacing */
  --container-max: 1280px;
  --header-height: 80px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-glow-cyan: 0 0 20px rgba(6, 182, 212, 0.25);
  --shadow-glow-violet: 0 0 20px rgba(139, 92, 246, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-base);
  overflow-x: hidden;
  width: 100%;
}

body {
  position: relative;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-base);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-muted { color: var(--text-muted); }
.text-muted-dim { color: var(--text-muted-dim); }
.text-cyan { color: var(--accent-cyan); }
.text-violet { color: var(--primary); }
.text-magenta { color: var(--accent-magenta); }
.text-yellow { color: var(--accent-yellow); }
.text-green { color: #10b981; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.text-center { text-align: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.inline-flex { display: inline-flex; }
.relative { position: relative; }
.block-center { margin-left: auto; margin-right: auto; }
.uppercase { text-transform: uppercase; }
.letter-spacing { letter-spacing: 0.1em; }

.gap-xs { gap: 0.5rem; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2rem; }
.gap-xl { gap: 3rem; }

.margin-top-xs { margin-top: 0.5rem; }
.margin-top-sm { margin-top: 1rem; }
.margin-top-md { margin-top: 1.5rem; }
.margin-top-lg { margin-top: 2rem; }
.margin-top-xl { margin-top: 3rem; }
.margin-bottom-sm { margin-bottom: 1rem; }

/* Grid Layouts */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.section-padding {
  padding: 8rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Background Decorative Glowing Elements Wrapper */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  background: var(--primary);
  top: 10%;
  left: -10%;
  animation: drift 20s infinite alternate ease-in-out;
}

.blob-2 {
  background: var(--accent-cyan);
  top: 50%;
  right: -10%;
  animation: drift 25s infinite alternate-reverse ease-in-out;
}

.blob-3 {
  background: var(--accent-magenta);
  bottom: 10%;
  left: 20%;
  animation: drift 18s infinite alternate ease-in-out;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 50px) scale(1.2); }
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* Premium Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 12px;
  padding: 0.85rem 1.75rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  text-align: center;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
  color: #000;
  box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00f2fe, #7c3aed);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-icon-only {
  width: 45px;
  height: 45px;
  padding: 0;
  border-radius: 50%;
}

.btn-icon {
  background: rgba(10, 10, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-icon:hover {
  background: var(--text-main);
  color: #000;
  transform: scale(1.1);
  border-color: var(--text-main);
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background var(--transition-normal), border var(--transition-normal), box-shadow var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.glass-header.scrolled {
  background: rgba(3, 3, 3, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-color: var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-icon {
  font-size: 1.75rem;
  animation: pulse-icon 2s infinite alternate ease-in-out;
}

@keyframes pulse-icon {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--accent-cyan)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 10px var(--primary)); }
}

.nav-menu ul {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--accent-cyan), var(--primary));
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Search bar styling */
.search-bar-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0.35rem 0.75rem 0.35rem 1rem;
  transition: width var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  width: 220px;
}

.search-bar-container:focus-within {
  width: 280px;
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.search-input {
  width: 100%;
  font-size: 0.85rem;
}

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

.search-btn {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.search-btn:hover {
  color: var(--text-main);
}

.search-btn i, .action-btn i {
  width: 20px;
  height: 20px;
}

.action-btn {
  color: var(--text-muted);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.action-btn:hover {
  color: var(--text-main);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--accent-magenta), var(--primary));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-base);
}

.mobile-menu-toggle {
  display: none;
  color: var(--text-main);
}

/* Side navigation drawer for mobile */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface-elevated);
  backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--border-color);
  z-index: 105;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.mobile-drawer.open {
  right: 0;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.drawer-link:hover {
  color: var(--text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.promo-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  width: fit-content;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse-glow-cyan 1.5s infinite ease-in-out;
}

@keyframes pulse-glow-cyan {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.hero-headline {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  margin-bottom: 3rem;
}

.hero-features {
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1200px; /* 3D effect base */
  z-index: 1;
}

.hero-card-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  transform: translateZ(-50px);
}

.hero-main-card {
  width: 100%;
  max-width: 440px;
  position: relative;
  transform-style: preserve-3d; /* Key to true 3D hover rotation */
  padding: 2.5rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 20, 0.45);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.hero-product-image {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  transform: translateZ(50px); /* Pushes the image forward in 3D space */
  animation: float-headphones 6s infinite ease-in-out;
  transition: transform var(--transition-normal);
}

@keyframes float-headphones {
  0% { transform: translateZ(50px) translateY(0); }
  50% { transform: translateZ(65px) translateY(-15px); }
  100% { transform: translateZ(50px) translateY(0); }
}

.hero-card-footer {
  transform: translateZ(30px); /* Floats the text on the card slightly */
  margin-top: 1.5rem;
}

.product-title-sm {
  font-size: 1.1rem;
  font-weight: 600;
}

.product-category-sm {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-price-sm .old-price {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted-dim);
  margin-right: 0.5rem;
}

.product-price-sm .new-price {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Floating Decorative Elements */
.floating-element {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.float-sphere-1 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-cyan), #014352);
  top: 10%;
  left: -20px;
  transform: translateZ(80px);
  animation: float-generic 8s infinite ease-in-out;
}

.float-sphere-2 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-magenta), #4a0342);
  bottom: 15%;
  right: -15px;
  transform: translateZ(90px);
  animation: float-generic 6s infinite alternate ease-in-out;
}

.float-box-1 {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 30% 30%, var(--primary), #3b1180);
  border-radius: 6px;
  top: 60%;
  left: -40px;
  transform: translateZ(60px) rotate(45deg);
  animation: float-generic 7s infinite ease-in-out;
}

@keyframes float-generic {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* ==========================================================================
   Featured Categories Section
   ========================================================================== */
.category-card {
  padding: 0;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.category-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.category-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.category-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  transition: transform var(--transition-normal);
}

.category-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.category-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  opacity: 1;
  transition: opacity var(--transition-normal);
}

.category-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  opacity: 1;
  transition: opacity var(--transition-normal), color var(--transition-fast);
}

.category-link i {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

/* Categories Hover Interactivity */
.category-card:hover .category-img {
  transform: scale(1.08) rotate(1deg);
}

.category-card:hover .category-content {
  transform: translateY(-5px);
}

.category-card:hover p, .category-card:hover .category-link {
  opacity: 1;
}

.category-card:hover .category-icon-wrap {
  background: var(--accent-cyan);
  color: #000;
  border-color: var(--accent-cyan);
  transform: scale(1.05) translateZ(10px);
}

.category-card:hover .category-link:hover {
  color: var(--accent-cyan);
}

.category-card:hover .category-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Best Sellers Section
   ========================================================================== */
.product-filters {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.35rem;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.filter-tab:hover {
  color: var(--text-main);
}

.filter-tab.active {
  color: #000;
  background: var(--text-main);
}

/* Product Card Grid */
.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  height: 480px;
}

.product-visual {
  height: 280px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.product-img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.discount-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--accent-magenta);
  color: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  z-index: 2;
}

.product-hover-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  z-index: 2;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.rating-wrap {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.rating-wrap i {
  width: 14px;
  height: 14px;
}

.fill-star {
  fill: currentColor;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-category {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

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

.price-wrap .new-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Product Card Hover States */
.product-card:hover .product-img {
  transform: scale(1.08) translateY(-8px);
}

.product-card:hover .product-hover-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow-cyan);
}

/* ==========================================================================
   Special Offers Section
   ========================================================================== */
.offers-banner {
  padding: 4rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(139, 92, 246, 0.2);
}

.offers-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(3, 3, 3, 0) 70%);
  pointer-events: none;
}

.promo-pill {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--primary);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.offers-headline {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.offers-description {
  margin-bottom: 2rem;
  max-width: 500px;
}

.countdown-container {
  margin-bottom: 2.5rem;
}

.time-block {
  padding: 1rem 1.5rem;
  min-width: 90px;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

.time-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-cyan);
  display: block;
  line-height: 1.1;
}

.time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating promo cards */
.offers-cards-wrapper {
  perspective: 1000px;
}

.promo-card {
  width: 170px;
  padding: 1.5rem;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(16, 16, 20, 0.5);
  border-radius: 16px;
}

.promo-card-image-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.promo-card img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.promo-price {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.promo-price .old-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-muted-dim);
  margin-left: 0.25rem;
}

/* CSS Float Animations for Promo Cards */
.float-anim {
  animation: float-slow 5s infinite ease-in-out;
}

.float-delay-1 {
  animation-delay: 1.5s;
}

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

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-card {
  padding: 2.25rem 1.5rem;
  border-color: rgba(255, 255, 255, 0.04);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.why-icon-wrap i {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hover effects */
.why-card:hover {
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateY(-5px);
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.1);
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.stats-container {
  border-color: rgba(6, 182, 212, 0.15);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
  padding: 3.5rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   Reviews / Testimonial Slider Section
   ========================================================================== */
.reviews-slider-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4rem;
}

.reviews-track {
  position: relative;
  height: 280px; /* Uniform height to prevent layout shift */
  overflow: hidden;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(16, 16, 20, 0.4);
  padding: 2.5rem;
}

.review-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
}

.customer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.customer-name {
  font-size: 1.15rem;
  font-weight: 600;
}

.customer-role {
  font-size: 0.85rem;
}

.review-text {
  font-size: 1.1rem;
  margin-top: 1.25rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  z-index: 2;
}

.slider-arrow:hover {
  background: var(--text-main);
  color: #000;
  border-color: var(--text-main);
}

.prev-arrow { left: -1.5rem; }
.next-arrow { right: -1.5rem; }

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-muted-dim);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--accent-cyan);
  transform: scale(1.3);
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.max-width-md {
  max-width: 760px;
  margin: 0 auto;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  border-color: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: transform var(--transition-normal), color var(--transition-fast);
}

.faq-icon i {
  width: 20px;
  height: 20px;
}

/* Clean vanilla height transition utilizing the CSS grid rows trick */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
  padding: 0 2rem;
}

.faq-panel p {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 0;
  transition: padding var(--transition-normal);
}

/* Active FAQ Item state */
.faq-item.active {
  border-color: rgba(139, 92, 246, 0.2);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.faq-item.active .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-panel p {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-details {
  margin-top: 2.5rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap i {
  width: 20px;
  height: 20px;
}

.contact-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.social-icon-btn i {
  width: 18px;
  height: 18px;
}

.social-icon-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Form */
.form-container {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.7);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
}

/* Google Map styling */
.map-container {
  height: 220px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.05);
}

.google-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2); /* Inverts colors for beautiful dark theme integration */
}

.map-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 1;
}

/* ==========================================================================
   Premium Footer Section
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem;
  background: var(--bg-surface);
}

.footer-brand p {
  margin-top: 0.5rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

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

.footer-links a:hover {
  color: var(--text-main);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.25rem;
  margin-bottom: 0.75rem;
  transition: border-color var(--transition-fast);
}

.newsletter-form:focus-within {
  border-color: var(--primary);
}

.newsletter-input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
}

.newsletter-btn {
  padding: 0 0.85rem;
  border-radius: 8px;
}

/* ==========================================================================
   Modals & Overlays
   ========================================================================== */

/* Quick View Modal styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-card {
  width: 90%;
  max-width: 820px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.95);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
  z-index: 5;
}

.modal-close-btn:hover {
  background: var(--text-main);
  color: #000;
}

.modal-gallery {
  width: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-gallery img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.modal-details {
  width: 55%;
  padding: 3.5rem 3rem;
}

.modal-product-title {
  font-size: 2rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.modal-desc {
  font-size: 0.9rem;
}

/* Cart Drawer styling */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.6);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  padding: 0;
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.95);
  z-index: 155;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.cart-drawer-overlay.open .cart-drawer,
.cart-drawer.open {
  right: 0;
  visibility: visible;
}

.cart-drawer .drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
}

.cart-drawer .drawer-header i {
  width: 22px;
  height: 22px;
}

.cart-items-container {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
}

/* Individual Cart Item */
.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-img-wrap {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img-wrap img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-top: 0.25rem;
}

.cart-item-qty-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-muted-dim);
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: var(--accent-magenta);
}

.cart-item-remove i {
  width: 18px;
  height: 18px;
}

.cart-summary {
  padding: 2rem;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(16, 16, 20, 0.8);
}

.summary-row {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.summary-row.total-row {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: -320px;
  z-index: 300;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  right: 2rem;
}

.toast-content i {
  width: 20px;
  height: 20px;
}

.toast-content span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Scroll Animation Utilities */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .why-grid.grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-headline {
    font-size: 3.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section-padding {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .nav-menu, .btn-header, .search-bar-container {
    display: none !important; /* Hide search bar and nav on tablets/mobiles to prevent header overflow */
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .glass-card {
    padding: 1.25rem;
  }
  
  /* Hero Stacking */
  .hero-section {
    padding-top: calc(var(--header-height) + 2rem);
    text-align: center;
    padding-bottom: 4rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.25rem);
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 2.5rem;
    perspective: none; /* Simplify on mobile */
  }

  .floating-element {
    display: none !important; /* Hide floating spheres on all tablets/mobiles to prevent boundary scroll overflows */
  }

  /* Catalog Page Adaptations */
  .shop-grid-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .filter-sidebar {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Product Details Page Adaptations */
  .details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .details-gallery {
    height: clamp(260px, 45vw, 380px);
    padding: 2rem;
  }

  .details-title {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }
  
  /* Cart Stacking */
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Miscellaneous Stacks */
  .offers-banner {
    padding: 2.5rem 1.5rem;
  }
  
  .offers-cards-wrapper {
    margin-top: 2rem;
    justify-content: center;
  }
  
  .why-grid.grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-slider-container {
    padding: 0 1rem;
  }
  
  .slider-arrow {
    display: none;
  }
  
  /* Modal Quick View Adaptations */
  .modal-card {
    flex-direction: column;
    height: 90vh;
    max-height: 680px;
    width: 95%;
  }
  
  .modal-gallery {
    width: 100%;
    height: 35%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
  }
  
  .modal-details {
    width: 100%;
    height: 65%;
    padding: 1.5rem;
    overflow-y: auto;
  }

  .modal-product-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 480px) {
  /* Tiny Mobile Adjustments (320px - 480px) */
  .container {
    width: 92%;
  }

  .logo-container {
    font-size: 1.2rem;
  }

  .logo-icon {
    font-size: 1.4rem;
  }

  .header-actions {
    gap: 0.75rem;
  }
  
  .grid-4, .grid-3, .why-grid.grid-5, .stats-grid.grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .countdown-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .time-block {
    min-width: 65px;
    padding: 0.5rem 0.75rem;
  }
  
  .time-number {
    font-size: 1.5rem;
  }
  
  .offers-cards-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .promo-card {
    width: 100%;
    max-width: 280px;
  }

  .hero-main-card {
    padding: 1.5rem;
  }

  .hero-image-wrapper {
    height: 240px;
  }

  /* Catalog Filters List Wrap */
  .filter-options {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .filter-btn {
    width: auto;
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .filter-btn.active {
    border-left: 1px solid var(--accent-cyan);
    border-radius: 20px;
    padding-left: 0.75rem;
    background: rgba(6, 182, 212, 0.08);
  }

  .count-pill {
    display: none; /* Hide counters inside shop filters on mobile to save space */
  }

  .catalog-search {
    width: 100%;
  }

  /* Details action column wrap */
  .action-row {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .quantity-control {
    width: 100%;
    justify-content: space-between;
  }

  #details-add-to-cart, #details-wishlist {
    width: 100%;
  }

  /* Form layouts stacking */
  .form-grid.grid-2 {
    grid-template-columns: 1fr;
  }

  .payment-icon-group {
    justify-content: center;
  }

  /* Footer centering */
  .footer {
    text-align: center;
    padding: 4rem 0 2rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

