/* ============================================
   ECO DIGITAL MARKET - STYLE SYSTEM
   Dark premium theme with red accents
   ============================================ */

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

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;

  --accent-red: #ad272e;
  --accent-red-dark: #8c1f25;
  --accent-red-glow: rgba(173, 39, 46, 0.3);
  --accent-red-subtle: rgba(173, 39, 46, 0.1);
  --accent-red-light: #e63946;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-red: rgba(173, 39, 46, 0.3);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
}

/* ============================================
   LIGHT MODE OVERRIDES
   ============================================ */
[data-theme="light"] {
  --bg-primary: #f5f5f7;
  --bg-secondary: #eaeaec;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f2;
  --bg-glass: rgba(0, 0, 0, 0.03);
  --bg-glass-hover: rgba(0, 0, 0, 0.06);

  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #999999;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --border-red: rgba(173, 39, 46, 0.25);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(245, 245, 247, 0.92);
}

/* Light mode: force white text on red buttons */
[data-theme="light"] .btn-primary,
[data-theme="light"] .product-btn:hover,
[data-theme="light"] .filter-tab.active,
[data-theme="light"] .cta-box .btn,
[data-theme="light"] .pdp-add-to-cart,
[data-theme="light"] .pdp-buy-now,
[data-theme="light"] .contact-form .btn-primary,
[data-theme="light"] .cart-bottom-bar-btn {
  color: #ffffff;
}

[data-theme="light"] .hero {
  background: linear-gradient(135deg, #e8e8ea 0%, #f5f5f7 50%, #e8e8ea 100%);
}

[data-theme="light"] .hero-decoration-1,
[data-theme="light"] .hero-decoration-2,
[data-theme="light"] .hero-decoration-3 {
  opacity: 0.3;
}

[data-theme="light"] .mobile-nav-overlay {
  background: rgba(245, 245, 247, 0.97);
}

[data-theme="light"] .product-badge.hot {
  background: var(--accent-red);
}

[data-theme="light"] .product-badge.new {
  background: #059669;
}

[data-theme="light"] .product-badge.sale {
  background: #d97706;
}

[data-theme="light"] .cart-sidebar {
  background: #f5f5f7;
}

[data-theme="light"] .toast {
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

@media (min-width: 769px) {
  body.storefront-page,
  body.profile-page {
    zoom: 0.74;
  }
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Theme-specific logos */
.logo-light {
  display: none;
}

.logo-dark {
  display: block;
}

[data-theme="light"] .logo-light {
  display: block;
}

[data-theme="light"] .logo-dark {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-glass-hover);
}

.nav-links a.active {
  color: var(--accent-red);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: #ffffff;
  padding: 10px 24px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-red-glow);
}

.nav-links .nav-auth-subtle {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: transparent;
}

.nav-links .nav-auth-subtle:hover {
  border-color: var(--border-hover);
  background: var(--bg-glass-hover);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-medium);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: radial-gradient(circle at 50% 50%, rgba(173, 39, 46, 0.08) 0%, transparent 70%);
}

/* Decorative circles */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-red-subtle);
  filter: blur(2px);
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  animation: floatCircle 20s ease-in-out infinite;
}

.hero::after {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: floatCircle 15s ease-in-out infinite reverse;
}

.hero-decoration-1,
.hero-decoration-2,
.hero-decoration-3 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-red-subtle);
  pointer-events: none;
}

.hero-decoration-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseCircle 8s ease-in-out infinite;
}

.hero-decoration-2 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseCircle 10s ease-in-out infinite 1s;
}

.hero-decoration-3 {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseCircle 12s ease-in-out infinite 2s;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.45);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Marketing Carousel */
.hero-carousel-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Carousel Navigation Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: var(--accent-red);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 12px;
}

.carousel-btn-next {
  right: 12px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-primary);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-red);
  transform: scale(1.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero .btn-primary {
  background: linear-gradient(135deg, #d63b46, #b52130);
  box-shadow: 0 10px 28px rgba(214, 59, 70, 0.35);
}

.hero .btn-primary:hover {
  box-shadow: 0 14px 36px rgba(214, 59, 70, 0.45);
}

.hero .btn-primary .btn-icon {
  font-size: 1.18rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), 0 0 10px rgba(255, 255, 255, 0.22);
  filter: saturate(1.2) brightness(1.08);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-red-glow);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.1rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-red);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-red);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

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

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-red-subtle);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  transition: all var(--transition-medium);
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  transform: scale(1.05);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-red);
  transition: all var(--transition-fast);
}

.category-link:hover {
  gap: 10px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all var(--transition-medium);
}

.feature-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  background: var(--accent-red-subtle);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: var(--section-padding);
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(231, 76, 60, 0.08) 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, var(--accent-red-subtle), transparent 50%);
  animation: rotateSlow 20s linear infinite;
  opacity: 0.5;
}

.cta-box>* {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 450px;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.footer-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.footer-controls-copy {
  max-width: 420px;
}

.footer-controls-copy h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-controls-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-controls-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--accent-red);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-mobile-banner {
  display: none;
}

.mobile-banner {
  height: 100px;
  width: 100%;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.mobile-banner-track {
  height: 100%;
  display: flex;
  transition: transform 600ms cubic-bezier(0.2, 0.85, 0.2, 1);
  will-change: transform;
}

.mobile-banner-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.mobile-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mobile-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.shop-mobile-banner .mobile-banner-dots {
  display: none;
}

.mobile-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: transform var(--transition-fast), background var(--transition-fast);
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-banner-dot.is-active {
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1.25);
}

.page-header {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-red-subtle), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .page-header {
    display: none;
  }

  .shop-mobile-banner {
    display: block;
    /* Tight spacing: fixed navbar sits above, so we only need a small offset */
    padding: 76px 0 6px;
  }

  .shop-mobile-banner .container {
    padding: 0 14px;
  }

  .filter-tabs {
    padding: 12px 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-banner-track {
    transition: none;
  }
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.filter-tab.active {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: var(--text-primary);
  border-color: transparent;
}

.shop-search-wrap {
  max-width: 640px;
  margin: 0 auto 12px;
}

.shop-search-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-search-input-wrap {
  position: relative;
}

.shop-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
}

.shop-search-input {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  padding: 0 16px 0 44px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

.shop-search-input:focus {
  border-color: var(--accent-red);
  background: var(--bg-glass-hover);
  box-shadow: 0 0 0 3px var(--accent-red-subtle);
}

.shop-no-results {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 220px;
  text-align: center;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  color: var(--text-secondary);
  padding: 28px 20px;
}

.shop-no-results h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.shop-no-results p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.shop-products-loading {
  grid-column: 1 / -1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-glass), rgba(255, 255, 255, 0.02));
}

.shop-products-loading-spinner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(173, 39, 46, 0.14), transparent 70%);
  box-shadow: 0 0 0 1px var(--border-subtle);
}

.shop-products-loading-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  animation: ecoSpinnerSpin 1.35s linear infinite, ecoSpinnerFloat 2.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.shop-products-loading-fallback {
  width: 64px;
  height: 64px;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: ecoSpinnerSpin 1.35s linear infinite, ecoSpinnerFloat 2.2s ease-in-out infinite;
}

.shop-products-loading p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

@keyframes ecoSpinnerSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ecoSpinnerFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -3px;
  }
}

/* Product Grid */
.products-section {
  padding: 40px 0 100px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-red);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.product-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-badge.hot {
  background: var(--accent-red);
  color: white;
}

.product-badge.new {
  background: #10b981;
  color: white;
}

.product-badge.sale {
  background: #f59e0b;
  color: #1a1a1a;
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.product-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass-hover);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.product-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
}

/* ============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================ */

/* Breadcrumb */
.breadcrumb-bar {
  padding: 100px 0 16px;
  background: var(--bg-secondary);
}

.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.breadcrumb-bar a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-bar a:hover {
  color: var(--accent-red);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 600;
}

/* PDP Layout */
.pdp-section {
  padding: 40px 0 60px;
  background: var(--bg-secondary);
}

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* PDP Gallery / Carousel */
.pdp-gallery {
  position: sticky;
  top: 100px;
  max-width: 640px;
}

.pdp-carousel {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: min(640px, 72vh);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  position: relative;
}

.pdp-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-slide {
  min-width: 100%;
  height: 100%;
}

.pdp-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pdp-thumb {
  width: 72px;
  height: 54px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg-card);
  padding: 0;
}

.pdp-thumb:hover {
  border-color: var(--border-hover);
}

.pdp-thumb.active {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 2px var(--accent-red-glow);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-loading-state {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg-glass), rgba(255, 255, 255, 0.03));
}

.pdp-loading-spinner-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: ecoSpinnerSpin 1.3s linear infinite, ecoSpinnerFloat 2.1s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.pdp-loading-spinner-fallback {
  width: 72px;
  height: 72px;
  font-size: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: ecoSpinnerSpin 1.3s linear infinite, ecoSpinnerFloat 2.1s ease-in-out infinite;
}

.pdp-loading-state p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.pdp-page-loading {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-primary);
}

.pdp-page-loading.active {
  display: flex;
}

.pdp-page-loading-spinner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(173, 39, 46, 0.12), transparent 70%);
  box-shadow: 0 0 0 1px var(--border-subtle);
}

.pdp-page-loading p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

body.pdp-loading-mode .breadcrumb-bar,
body.pdp-loading-mode .pdp-section,
body.pdp-loading-mode .pdp-details-section,
body.pdp-loading-mode .pdp-related,
body.pdp-loading-mode .footer,
body.pdp-loading-mode #toastContainer,
body.pdp-loading-mode #cartOverlay,
body.pdp-loading-mode #cartSidebar,
body.pdp-loading-mode .cart-bottom-bar,
body.pdp-loading-mode .support-floating-whatsapp {
  display: none !important;
}

/* PDP Info Panel */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-badge {
  display: inline-block;
  width: fit-content;
}

.pdp-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
}

.pdp-short-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Price Block */
.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
}

.pdp-original-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Meta Info */
.pdp-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pdp-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.pdp-meta-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pdp-meta-item strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pdp-meta-item span:not(.pdp-meta-icon) {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Quantity Row */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdp-qty-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pdp-qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.pdp-qty-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-qty-btn:hover {
  background: var(--accent-red);
}

.pdp-qty-value {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  background: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

/* Action Buttons */
.pdp-actions {
  display: flex;
  gap: 12px;
}

.pdp-action-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pdp-add-btn,
.pdp-buy-btn {
  flex: 1;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

.pdp-paylater-btn {
  width: 100%;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(90deg, #ef4c2c, #ff6b3a);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.pdp-paylater-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-paylater-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  filter: saturate(1.05);
}

.pdp-paylater-btn:active {
  transform: translateY(0px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.pdp-paylater-btn:disabled {
  transform: none;
  filter: none;
  box-shadow: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.pdp-add-btn.success {
  background: #10b981 !important;
  border-color: #10b981 !important;
}

/* Product Card Link for Related */
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Details Section / Tabs */
.pdp-details-section {
  padding: 60px 0 80px;
}

.pdp-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-tab {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdp-tab:hover {
  color: var(--text-primary);
}

.pdp-tab.active {
  color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}

.pdp-tab-content {
  display: none;
  animation: fadeInUp 0.3s ease-out;
}

.pdp-tab-content.active {
  display: block;
}

.pdp-tab-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.pdp-features-list {
  list-style: none;
  padding: 0;
}

.pdp-features-list li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.pdp-features-list li:last-child {
  border-bottom: none;
}

/* Related Products */
.pdp-related {
  padding: 60px 0 80px;
  background: var(--bg-secondary);
}

/* PDP Responsive */
@media (max-width: 768px) {
  .breadcrumb-bar {
    padding: 84px 0 10px;
  }

  .breadcrumb-bar .container {
    font-size: 0.78rem;
    gap: 6px;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .breadcrumb-bar .container::-webkit-scrollbar {
    display: none;
  }

  .pdp-section {
    padding: 20px 0 36px;
  }

  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pdp-gallery {
    position: static;
    max-width: 100%;
  }

  .pdp-carousel {
    aspect-ratio: 4 / 3;
    max-height: min(58vh, 430px);
    border-radius: 14px;
  }

  .pdp-thumbnails {
    margin-top: 8px;
    gap: 8px;
  }

  .pdp-thumb {
    width: 64px;
    height: 48px;
  }

  .pdp-info {
    gap: 10px;
  }

  .pdp-category {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .pdp-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .pdp-short-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .pdp-price-block {
    padding: 10px 0;
    gap: 8px;
  }

  .pdp-price {
    font-size: 1.28rem;
  }

  .pdp-original-price {
    font-size: 0.92rem;
  }

  #pdpStockStatus {
    margin: 4px 0 10px !important;
    font-size: 0.88rem !important;
  }

  #pdpVariationsContainer {
    margin-bottom: 12px !important;
  }

  #pdpVariationsContainer .pdp-variations-label {
    font-size: 0.84rem !important;
    margin-bottom: 6px !important;
  }

  #pdpVariationsContainer .pdp-variations-options {
    gap: 8px !important;
  }

  .pdp-qty-row {
    gap: 10px;
    margin-top: -2px;
  }

  .pdp-qty-label {
    font-size: 0.84rem;
  }

  .pdp-qty-btn,
  .pdp-qty-value {
    height: 36px;
  }

  .pdp-qty-btn {
    width: 36px;
    font-size: 1rem;
  }

  .pdp-qty-value {
    width: 42px;
    font-size: 0.92rem;
  }

  .pdp-meta {
    grid-template-columns: 1fr;
  }

  .pdp-actions {
    flex-direction: column;
    gap: 8px;
  }

  .pdp-action-col {
    gap: 8px;
  }

  .pdp-add-btn,
  .pdp-buy-btn {
    padding: 12px 16px;
    font-size: 0.92rem;
    min-height: 44px;
  }

  .pdp-paylater-btn {
    height: 44px;
    border-radius: 14px;
  }

  .pdp-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 2px;
  }

  .pdp-tab {
    font-size: 0.86rem;
    padding: 10px 2px;
  }

  .pdp-details-section {
    padding: 28px 0 38px;
  }

  .pdp-tab-content p,
  .pdp-features-list li {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .breadcrumb-bar {
    padding: 78px 0 8px;
  }

  .pdp-section {
    padding: 14px 0 28px;
  }

  .pdp-carousel {
    aspect-ratio: 1 / 1;
    max-height: min(52vh, 360px);
  }

  .pdp-layout {
    gap: 12px;
  }

  .pdp-title {
    font-size: 1.8rem;
  }

  .pdp-short-desc {
    font-size: 0.9rem;
  }

  .pdp-price {
    font-size: 1.2rem;
  }

  .pdp-add-btn,
  .pdp-buy-btn {
    font-size: 0.88rem;
    padding: 11px 14px;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-red-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-form-wrapper {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px var(--accent-red-subtle);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  padding: 60px 0 100px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-subtle);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.cart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-items::-webkit-scrollbar {
  width: 4px;
}

.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 2px;
}

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

.cart-empty-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.cart-empty p {
  font-size: 0.9rem;
}

.cart-empty a {
  color: var(--accent-red);
  font-weight: 600;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  animation: fadeInUp 0.3s ease-out;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-red-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-category {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
  margin-bottom: 2px;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-item-remove {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--accent-red);
  background: var(--accent-red-subtle);
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.cart-qty-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

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

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

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

.cart-total-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.cart-total-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #10b981;
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-medium);
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-red-glow);
}

.cart-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Theme Switch Toggle */
.theme-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.theme-switch-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.theme-switch-label:first-child {
  color: var(--accent-red);
}

[data-theme="light"] .theme-switch-label:first-child {
  color: var(--text-muted);
}

[data-theme="light"] .theme-switch-label:last-child {
  color: var(--accent-red);
}

.theme-switch-track {
  width: 36px;
  height: 20px;
  background: var(--bg-glass-hover);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.theme-switch-track:hover {
  border-color: var(--border-hover);
}

.theme-switch-thumb {
  width: 16px;
  height: 16px;
  background: var(--accent-red);
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .theme-switch-thumb {
  transform: translateX(16px);
}

/* Currency Dropdown */
.currency-dropdown {
  position: relative;
}

.header-customer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-customer-greeting {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.header-customer-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-dashboard-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 24px var(--accent-red-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-dashboard-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--accent-red-glow);
}

.header-signup-btn {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.header-signup-btn:hover {
  color: var(--text-primary);
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-btn:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
}

.currency-flag {
  font-size: 1.1rem;
}

.currency-arrow {
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.currency-dropdown.open .currency-arrow {
  transform: rotate(180deg);
}

.currency-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
  overflow: hidden;
}

.currency-dropdown.open .currency-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: left;
}

.currency-option:hover {
  background: var(--bg-glass-hover);
}

.currency-option.active {
  background: var(--accent-red-subtle);
  color: var(--accent-red);
  font-weight: 600;
}

/* Sticky Cart Bottom Bar */
.cart-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-bottom-bar.visible {
  transform: translateY(0);
}

[data-theme="light"] .cart-bottom-bar {
  background: rgba(255, 255, 255, 0.92);
}

.cart-bottom-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-bottom-bar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-red-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cart-bottom-bar-details {
  display: flex;
  flex-direction: column;
}

.cart-bottom-bar-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.cart-bottom-bar-total {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-red);
}

.cart-bottom-bar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-bottom-bar-btn:hover {
  background: var(--accent-red-dark);
  transform: scale(1.03);
}

@media (max-width: 480px) {
  .cart-bottom-bar {
    padding: 10px 16px;
  }

  .cart-bottom-bar-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Navbar Cart Button */
.nav-cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-cart-btn:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
}

.cart-badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--accent-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.cart-badge-count.visible {
  opacity: 1;
  transform: scale(1);
}

.cart-badge-count.bounce {
  animation: badgeBounce 0.4s ease-out;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.35s ease-out forwards;
  pointer-events: auto;
  white-space: nowrap;
}

.toast.hiding {
  animation: toastOut 0.3s ease-in forwards;
}

.toast-icon {
  font-size: 1.1rem;
}

/* Floating WhatsApp Support */
.support-floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 1090;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px 0 0;
  overflow: hidden;
  gap: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast),
    background var(--transition-fast);
}

.support-floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: saturate(1.02);
}

.support-floating-whatsapp.is-expanded {
  width: clamp(218px, 56vw, 272px);
}

.support-floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: supportFloatPulse 2.4s ease-out infinite;
}

.support-floating-whatsapp-icon-wrap {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.support-floating-whatsapp-icon-wrap::after {
  display: none;
}

.support-floating-whatsapp-icon {
  width: 34px;
  height: 34px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.support-floating-whatsapp-icon-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
  transform-origin: 50% 60%;
}

.support-floating-whatsapp:not(.is-expanded) .support-floating-whatsapp-icon-wrap {
  animation: supportEcobotBounce 7.5s cubic-bezier(0.2, 0.9, 0.2, 1) infinite;
}

.support-floating-whatsapp.is-expanded .support-floating-whatsapp-icon-wrap,
.support-floating-whatsapp:hover .support-floating-whatsapp-icon-wrap {
  animation: none;
}

.support-floating-whatsapp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.support-floating-whatsapp.is-expanded .support-floating-whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

.support-floating-whatsapp-text strong {
  font-size: 0.99rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.support-floating-whatsapp-text span {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.82;
  letter-spacing: 0.01em;
}

.support-floating-whatsapp-label {
  display: none;
}

/* Add to Cart Button Success State */
.product-btn.success {
  background: #10b981;
  border-color: #10b981;
  pointer-events: none;
}

@keyframes badgeBounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes supportEcobotBounce {
  0%,
  82% {
    transform: translateY(0);
  }
  86% {
    transform: translateY(-7px);
  }
  90% {
    transform: translateY(0);
  }
  94% {
    transform: translateY(-4px);
  }
  98%,
  100% {
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

@keyframes supportFloatPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.96);
  }

  70% {
    opacity: 0;
    transform: scale(1.18);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatCircle {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(20px, -20px);
  }

  66% {
    transform: translate(-15px, 10px);
  }
}

@keyframes pulseCircle {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  padding: 8px 16px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent-red);
}

/* Mobile Nav Controls */
.mobile-nav-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.mobile-currency-btns {
  display: flex;
  gap: 8px;
}

.mobile-currency-btn {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-currency-btn.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
}

/* Hide navbar controls on mobile */
@media (max-width: 768px) {
  .navbar .theme-switch:not(.mobile-theme-switch) {
    display: none;
  }

  .header-customer-actions {
    display: none;
  }

  .navbar .currency-dropdown {
    display: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-controls-panel {
    width: 100%;
    justify-content: flex-start;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --container-padding: 0 18px;
  }

  body.storefront-page {
    background:
      radial-gradient(circle at top, rgba(173, 39, 46, 0.1), transparent 34%),
      var(--bg-primary);
  }

  .navbar .container {
    justify-content: flex-start;
    gap: 12px;
  }

  .navbar {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-subtle);
  }

  [data-theme="light"] .navbar {
    background: rgba(245, 245, 247, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-logo-img {
    height: 34px;
  }

  .page-header {
    display: none;
  }

  .page-header+.container {
    padding-top: 94px;
  }

  /* Shop page: the mobile banner already creates the top offset, so remove the extra padding gap. */
  .shop-mobile-banner + .page-header + .container {
    padding-top: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cart-btn {
    margin-left: auto;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .hero::before,
  .hero::after,
  .hero-decoration-1,
  .hero-decoration-2,
  .hero-decoration-3 {
    opacity: 0.35;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: 20px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .hero-carousel-wrapper {
    margin-top: 28px;
    width: 100%;
  }

  .hero-carousel {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .feature-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-controls-panel {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-controls-panel .theme-switch,
  .footer-controls-panel .currency-dropdown {
    width: 100%;
  }

  .footer-controls,
  .footer-controls-copy,
  .footer-controls-panel {
    gap: 14px;
  }

  .footer-controls-panel .theme-switch,
  .footer-controls-panel .currency-btn {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-image {
    max-width: 340px;
  }

  .floating-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .floating-badge-1 {
    left: 0;
  }

  .floating-badge-2 {
    right: 0;
  }

  .cta-box {
    padding: 38px 22px;
    border-radius: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-desc {
    display: none;
  }

  .product-card {
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .product-info {
    padding: 16px;
  }

  .product-name {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .product-price {
    font-size: 1rem;
  }

  .filter-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 18px 0 16px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .shop-search-wrap {
    margin-bottom: 2px;
  }

  .shop-search-label {
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .shop-search-input {
    height: 48px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .product-image .product-badge {
    display: none;
  }

  .product-btn {
    padding: 7px 12px;
    font-size: 0.72rem;
  }

  .cart-sidebar {
    width: 100%;
    max-width: 100%;
    border-left: none;
  }

  .support-floating-whatsapp {
    right: 18px;
    bottom: 94px;
    width: 62px;
    height: 62px;
    padding-right: 16px;
  }

  .support-floating-whatsapp.is-expanded {
    width: clamp(206px, calc(100vw - 36px), 248px);
  }

  .support-floating-whatsapp-icon-wrap {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .cart-header,
  .cart-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cart-items {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-nav-overlay {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 96px 18px 28px;
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.98)),
      var(--bg-primary);
  }

  .mobile-nav-links {
    width: 100%;
    align-items: stretch;
    gap: 10px;
  }

  .mobile-nav-links a {
    font-size: 1.05rem;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-footer {
    gap: 12px;
    align-items: stretch;
    flex-direction: column;
  }

  .product-btn {
    width: 100%;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .toast {
    width: min(100%, calc(100vw - 32px));
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .support-floating-whatsapp {
    right: 16px;
    bottom: 88px;
    width: 58px;
    height: 58px;
    padding-right: 14px;
    gap: 7px;
  }

  .support-floating-whatsapp.is-expanded {
    width: clamp(198px, calc(100vw - 28px), 232px);
  }

  .support-floating-whatsapp-icon-wrap {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .support-floating-whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .support-floating-whatsapp-text strong {
    font-size: 0.88rem;
  }

  .support-floating-whatsapp-text span {
    font-size: 0.66rem;
  }

  .shop-search-input {
    height: 46px;
    padding-left: 40px;
  }
}
