/* =====================================================
   BirKen E-Commerce - Main Stylesheet
   Kozmetik ve Sağlık Ürünleri
   ===================================================== */

/* CSS Variables / Design Tokens */
:root {
  /* Colors */
  --bg: #f8f9fa;
  --surface: #ffffff;
  --text: #1a1a2e;
  --text-secondary: #4a4a68;
  --muted: #6c757d;
  --border: #e0e0e0;
  --border-light: #f0f0f0;

  /* Brand Colors */
  --primary: #0d9488;
  --primary-dark: #0a7a70;
  --primary-light: #14b8a6;
  --primary-bg: #e6f7f5;

  --secondary: #1e3a5f;
  --secondary-light: #2d4a6f;

  /* Status Colors */
  --success: #22c55e;
  --success-bg: #dcfce7;
  --danger: #ef4444;
  --danger-bg: #fee2e2;
  --warning: #f59e0b;
  --warning-bg: #fef3c7;
  --info: #3b82f6;
  --info-bg: #dbeafe;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Layout */
  --header-height: 140px;
  --header-height-scrolled: 70px;
  --container-max: 1320px;
  --sidebar-width: 280px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

/* Focus States for Accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* =====================================================
   Layout Utilities
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-xs {
  gap: var(--space-xs);
}
.gap-sm {
  gap: var(--space-sm);
}
.gap-md {
  gap: var(--space-md);
}
.gap-lg {
  gap: var(--space-lg);
}
.gap-xl {
  gap: var(--space-xl);
}

.grid {
  display: grid;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   Announcement Bar
   ===================================================== */
.announcement-bar {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  color: white;
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.announcement-bar strong {
  color: var(--primary-light);
}

.announcement-bar a {
  color: var(--primary-light);
  text-decoration: underline;
  margin-left: var(--space-sm);
}

.announcement-bar a:hover {
  color: white;
}

/* =====================================================
   Header
   ===================================================== */
.header {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

.logo-text .tagline {
  font-size: var(--font-size-xs);
  color: var(--muted);
}

/* Search Bar */
.search-bar {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.search-bar form {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.search-bar input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border: none;
  background: transparent;
  color: var(--text);
  min-width: 0;
}

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

.search-bar button {
  padding: var(--space-sm) var(--space-md);
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.search-bar button:hover {
  background: var(--primary-dark);
}

.search-bar button svg {
  width: 20px;
  height: 20px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  position: relative;
  min-width: 60px;
}

.header-action:hover {
  background: var(--bg);
}

.header-action svg {
  width: 24px;
  height: 24px;
  color: var(--text);
}

.header-action span {
  font-size: var(--font-size-xs);
  color: var(--muted);
  margin-top: 2px;
}

.header-action .badge {
  position: absolute;
  top: 0;
  right: 8px;
  background: var(--danger);
  color: white;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  padding: var(--space-sm);
  background: var(--bg);
  border-radius: var(--radius-md);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* =====================================================
   Category Navigation
   ===================================================== */
.category-nav {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.category-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-nav-list::-webkit-scrollbar {
  display: none;
}

.category-nav-item {
  flex-shrink: 0;
}

.category-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text);
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.category-nav-link:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

.category-nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.category-nav-link svg {
  width: 18px;
  height: 18px;
}

/* =====================================================
   Hero Slider
   ===================================================== */
.hero-slider {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform var(--transition-slow);
}

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

.hero-slide-content {
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: var(--space-2xl);
}

.hero-slide-text {
  flex: 1;
  max-width: 500px;
}

.hero-slide-text .label {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-md);
}

.hero-slide-text h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  color: var(--text);
}

.hero-slide-text p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.hero-slide-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-placeholder svg {
  width: 120px;
  height: 120px;
  color: white;
  opacity: 0.8;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.hero-dot:hover {
  background: var(--muted);
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.hero-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
}

.hero-arrow.prev {
  left: var(--space-lg);
}

.hero-arrow.next {
  right: var(--space-lg);
}

/* =====================================================
   Trust Badges
   ===================================================== */
.trust-badges {
  background: var(--surface);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.trust-badge-text h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

.trust-badge-text p {
  font-size: var(--font-size-xs);
  color: var(--muted);
}

/* =====================================================
   Section Styles
   ===================================================== */
.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text);
}

.section-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-weight: var(--font-weight-medium);
  transition: gap var(--transition-fast);
}

.section-link:hover {
  gap: var(--space-sm);
}

.section-link svg {
  width: 20px;
  height: 20px;
}

/* =====================================================
   Product Grid
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* =====================================================
   Product Card
   ===================================================== */
.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  border: 1px solid var(--border-light);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image svg {
  width: 64px;
  height: 64px;
  color: var(--muted);
  opacity: 0.5;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.product-badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.product-badge {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
}

.product-badge.discount {
  background: var(--danger);
  color: white;
}

.product-badge.new {
  background: var(--success);
  color: white;
}

.product-badge.bestseller {
  background: var(--warning);
  color: white;
}

.product-badge.popular {
  background: var(--primary);
  color: white;
}

.product-wishlist {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.product-wishlist:hover {
  background: var(--danger-bg);
  color: var(--danger);
}

.product-wishlist svg {
  width: 18px;
  height: 18px;
}

.product-card-body {
  padding: var(--space-md);
}

.product-brand {
  font-size: var(--font-size-xs);
  color: var(--primary);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.product-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

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

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.product-stars {
  display: flex;
  gap: 2px;
}

.product-stars svg {
  width: 14px;
  height: 14px;
  color: var(--warning);
}

.product-stars svg.empty {
  color: var(--border);
}

.product-review-count {
  font-size: var(--font-size-xs);
  color: var(--muted);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-price .current {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

.product-price .old {
  font-size: var(--font-size-sm);
  color: var(--muted);
  text-decoration: line-through;
}

.product-add-btn {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.product-add-btn:hover {
  background: var(--primary-dark);
}

.product-add-btn svg {
  width: 18px;
  height: 18px;
}

/* =====================================================
   Product Carousel
   ===================================================== */
.product-carousel {
  position: relative;
}

.product-carousel-wrapper {
  overflow: hidden;
}

.product-carousel-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform var(--transition-slow);
}

.product-carousel-track .product-card {
  flex: 0 0 calc(25% - var(--space-lg) * 3 / 4);
  min-width: 280px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.carousel-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow.prev {
  left: -22px;
}

.carousel-arrow.next {
  right: -22px;
}

/* =====================================================
   Category Tiles
   ===================================================== */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.category-tile {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-light);
}

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

.category-tile-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-tile-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.category-tile h3 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
}

.category-tile p {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

/* =====================================================
   Campaign Banners
   ===================================================== */
.campaign-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.campaign-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.campaign-banner-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-banner:nth-child(1) .campaign-banner-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.campaign-banner:nth-child(2) .campaign-banner-bg {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.campaign-banner:nth-child(3) .campaign-banner-bg {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.campaign-banner-content {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
  color: white;
}

.campaign-banner-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.campaign-banner-content p {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.campaign-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: white;
  color: var(--text);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  transition: transform var(--transition-fast);
}

.campaign-btn:hover {
  transform: scale(1.05);
}

/* =====================================================
   Newsletter Section
   ===================================================== */
.newsletter-section {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  padding: var(--space-3xl) 0;
  text-align: center;
  color: white;
}

.newsletter-section h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-sm);
}

.newsletter-section p {
  font-size: var(--font-size-base);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: var(--space-sm);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
}

.newsletter-form button {
  padding: var(--space-md) var(--space-xl);
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: var(--space-3xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-2xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

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

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-payments svg {
  height: 24px;
  width: auto;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-secondary:hover {
  background: var(--border-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-sm);
}

.btn-icon {
  padding: var(--space-sm);
}

/* =====================================================
   Forms
   ===================================================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.form-input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-bg);
}

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

.form-select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  background: var(--surface);
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.form-checkbox span {
  font-size: var(--font-size-sm);
}

/* =====================================================
   Category Page - Sidebar Filters
   ===================================================== */
.category-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.filter-sidebar {
  position: sticky;
  top: calc(var(--header-height-scrolled) + var(--space-lg));
  height: fit-content;
  max-height: calc(100vh - var(--header-height-scrolled) - var(--space-xl));
  overflow-y: auto;
}

.filter-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  border-bottom: 1px solid var(--border-light);
}

.filter-header svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.filter-card.collapsed .filter-header svg {
  transform: rotate(-90deg);
}

.filter-card.collapsed .filter-body {
  display: none;
}

.filter-body {
  padding: var(--space-md);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.filter-option span {
  font-size: var(--font-size-sm);
}

.filter-option .count {
  color: var(--muted);
  font-size: var(--font-size-xs);
  margin-left: auto;
}

.price-range {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.price-range input {
  flex: 1;
  padding: var(--space-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: var(--font-size-sm);
}

.price-range span {
  color: var(--muted);
}

/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
}

.filter-chip button {
  display: flex;
  padding: 2px;
  cursor: pointer;
}

.filter-chip button:hover {
  color: var(--danger);
}

.filter-chip svg {
  width: 14px;
  height: 14px;
}

.clear-filters {
  color: var(--danger);
  font-size: var(--font-size-sm);
  cursor: pointer;
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.category-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}

.category-count {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.category-sort {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.category-sort label {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.category-sort select {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  background: var(--surface);
  min-width: 180px;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
}

.mobile-filter-toggle svg {
  width: 18px;
  height: 18px;
}

/* Filter Drawer (Mobile) */
.filter-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.filter-drawer-overlay.active {
  display: block;
}

.filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--surface);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: 2001;
  overflow-y: auto;
}

.filter-drawer.active {
  transform: translateX(0);
}

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.filter-drawer-header h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
}

.filter-drawer-close {
  padding: var(--space-sm);
  cursor: pointer;
}

.filter-drawer-close svg {
  width: 24px;
  height: 24px;
}

.filter-drawer-body {
  padding: var(--space-md);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-btn svg {
  width: 18px;
  height: 18px;
}

/* =====================================================
   Product Detail Page
   ===================================================== */
.product-detail {
  padding: var(--space-xl) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* HTML'deki sınıflar için uyumluluk stilleri */
.product-image-main {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  overflow: hidden;
  position: relative;
}

.product-image-main svg {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
}

.product-image-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.product-thumbnails {
  display: flex;
  gap: var(--space-sm);
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: var(--primary);
}

.product-thumbnail svg {
  width: 100%;
  height: 100%;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Product Badge in image */
.product-badge {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
}

.product-badge-sale {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--danger);
  color: white;
}

/* Product Page specific title */
.product-page .product-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  min-height: auto;
  display: block;
  -webkit-line-clamp: unset;
}

/* Product Rating in detail page */
.product-page .product-rating {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.product-rating .stars {
  display: flex;
  gap: 2px;
}

.product-rating .stars svg {
  width: 18px;
  height: 18px;
}

.product-rating .stars .star.filled {
  color: var(--warning);
}

.product-rating .stars .star.half {
  color: var(--warning);
  opacity: 0.7;
}

.product-rating .rating-value {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-left: var(--space-xs);
}

.product-rating .review-count {
  font-size: var(--font-size-sm);
  color: var(--primary);
  margin-left: var(--space-sm);
}

/* Product Price Block */
.product-price-block {
  margin-bottom: var(--space-lg);
}

.product-old-price {
  font-size: var(--font-size-lg);
  color: var(--muted);
  text-decoration: line-through;
  margin-right: var(--space-sm);
}

.product-current-price {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

.product-discount-percent {
  display: inline-block;
  background: var(--danger);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  margin-left: var(--space-md);
}

/* Product Short Description */
.product-short-desc {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
}

/* Product Attributes */
.product-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--bg);
  border-radius: var(--radius-md);
}

.product-attributes .attribute {
  display: flex;
  gap: var(--space-xs);
}

.product-attributes .attribute-label {
  font-weight: var(--font-weight-medium);
  color: var(--text);
}

.product-attributes .attribute-value {
  color: var(--text-secondary);
}

/* Product Stock Status */
.product-stock {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-medium);
}

.product-stock svg {
  width: 18px;
  height: 18px;
}

.product-stock.in-stock {
  color: var(--success);
}

.product-stock.out-of-stock {
  color: var(--danger);
}

/* Product Actions (Add to Cart) */
.product-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.product-actions .btn-primary {
  flex: none;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-base);
}

.product-actions .btn-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
}

.product-actions .btn-icon:hover {
  border-color: var(--danger);
  color: var(--danger);
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
}

.quantity-selector .quantity-btn {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--font-size-lg);
  transition: background var(--transition-fast);
}

.quantity-selector .quantity-btn:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.quantity-selector .quantity-btn:last-of-type {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quantity-selector .quantity-btn:hover {
  background: var(--border-light);
}

.quantity-selector .quantity-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

.quantity-selector .quantity-input::-webkit-inner-spin-button,
.quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Product Trust Badges */
.product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg);
  border-radius: var(--radius-lg);
}

.product-trust .trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
}

.product-trust .trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Product Tabs (HTML version) */
.tabs-header {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}

.tab-btn {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition-fast);
}

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

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tabs-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.tab-panel h4 {
  font-size: var(--font-size-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.tab-panel p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.tab-panel ul,
.tab-panel ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.tab-panel li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.ingredients-inci {
  font-size: var(--font-size-sm);
  color: var(--muted);
  font-style: italic;
}

/* Review Summary */
.review-summary {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.review-average {
  text-align: center;
}

.review-average .average-score {
  display: block;
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--text);
}

.review-average .average-stars {
  color: var(--warning);
  font-size: var(--font-size-lg);
}

.review-average .total-reviews {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin-top: var(--space-xs);
}

.review-breakdown {
  flex: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
}

.rating-bar .bar {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.rating-bar .fill {
  height: 100%;
  background: var(--warning);
  border-radius: var(--radius-full);
}

/* Individual Reviews */
.reviews-list {
  margin-bottom: var(--space-lg);
}

.review-item {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.reviewer-name {
  font-weight: var(--font-weight-semibold);
}

.review-stars {
  color: var(--warning);
}

.review-date {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin-left: auto;
}

.review-text {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.verified-purchase {
  font-size: var(--font-size-sm);
  color: var(--success);
}

.load-more-reviews {
  width: 100%;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height-scrolled) + var(--space-lg));
}

.product-gallery-main {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.product-gallery-main svg {
  width: 120px;
  height: 120px;
  color: var(--muted);
  opacity: 0.5;
}

.product-gallery-thumbs {
  display: flex;
  gap: var(--space-sm);
}

.product-thumb {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--primary);
}

.product-thumb svg {
  width: 32px;
  height: 32px;
  color: var(--muted);
  opacity: 0.5;
}

/* Product Info */
.product-info {
  padding: var(--space-md) 0;
}

.product-info-brand {
  font-size: var(--font-size-sm);
  color: var(--primary);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.product-info-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.product-info-rating {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.product-info-rating .stars {
  display: flex;
  gap: 2px;
}

.product-info-rating svg {
  width: 18px;
  height: 18px;
  color: var(--warning);
}

.product-info-rating svg.empty {
  color: var(--border);
}

.product-info-rating span {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.product-info-rating a {
  color: var(--primary);
  font-size: var(--font-size-sm);
}

.product-info-price {
  margin-bottom: var(--space-lg);
}

.product-info-price .current {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
}

.product-info-price .old {
  font-size: var(--font-size-xl);
  color: var(--muted);
  text-decoration: line-through;
  margin-left: var(--space-md);
}

.product-info-price .discount {
  display: inline-block;
  background: var(--danger);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  margin-left: var(--space-md);
}

.product-info-stock {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-info-stock.in-stock {
  color: var(--success);
}

.product-info-stock.low-stock {
  color: var(--warning);
}

.product-info-stock.out-of-stock {
  color: var(--danger);
}

.product-info-stock svg {
  width: 18px;
  height: 18px;
}

/* Product Variants */
.product-variants {
  margin-bottom: var(--space-lg);
}

.variant-group {
  margin-bottom: var(--space-md);
}

.variant-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-sm);
  display: block;
}

.variant-options {
  display: flex;
  gap: var(--space-sm);
}

.variant-option {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: var(--font-size-sm);
}

.variant-option:hover {
  border-color: var(--primary);
}

.variant-option.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Quantity Stepper */
.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-lg);
}

.quantity-stepper button {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.quantity-stepper button:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.quantity-stepper button:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quantity-stepper button:hover {
  background: var(--border-light);
}

.quantity-stepper button svg {
  width: 18px;
  height: 18px;
}

.quantity-stepper input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

.quantity-stepper input::-webkit-inner-spin-button,
.quantity-stepper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
  margin-bottom: var(--space-md);
}

.add-to-cart-btn:hover {
  background: var(--primary-dark);
}

.add-to-cart-btn svg {
  width: 24px;
  height: 24px;
}

.wishlist-btn {
  width: 100%;
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: var(--space-lg);
}

.wishlist-btn:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.wishlist-btn svg {
  width: 20px;
  height: 20px;
}

/* Product Trust Row */
.product-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg);
  border-radius: var(--radius-lg);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
}

.product-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* Product Tabs */
.product-tabs {
  margin-top: var(--space-2xl);
}

.product-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}

.product-tab-btn {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition-fast);
}

.product-tab-btn:hover {
  color: var(--text);
}

.product-tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.product-tab-content {
  display: none;
  padding: var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
}

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

.product-tab-content h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-md);
}

.product-tab-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
}

.product-tab-content ul {
  margin-left: var(--space-lg);
}

.product-tab-content ul li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  list-style: disc;
}

/* Related Products */
.related-products {
  margin-top: var(--space-3xl);
}

/* =====================================================
   Cart Page
   ===================================================== */
.cart-page {
  padding: var(--space-xl) 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
}

.cart-items {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

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

.cart-item-info {
  display: flex;
  gap: var(--space-md);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-image svg {
  width: 32px;
  height: 32px;
  color: var(--muted);
  opacity: 0.5;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.cart-item-details h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-xs);
}

.cart-item-details .brand {
  font-size: var(--font-size-sm);
  color: var(--primary);
}

.cart-item-details .variant {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.cart-item-price {
  font-weight: var(--font-weight-medium);
}

.cart-item-qty {
  display: flex;
  align-items: center;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
}

.cart-qty-stepper button {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-qty-stepper button:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.cart-qty-stepper button:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cart-qty-stepper input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  font-size: var(--font-size-sm);
}

.cart-item-total {
  font-weight: var(--font-weight-semibold);
  color: var(--primary);
}

.cart-item-remove {
  padding: var(--space-sm);
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.cart-item-remove svg {
  width: 20px;
  height: 20px;
}

/* Cart Summary */
.cart-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height-scrolled) + var(--space-lg));
}

.cart-summary h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
}

.cart-summary-row.total {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.cart-summary-row.total .value {
  color: var(--primary);
}

.shipping-notice {
  background: var(--success-bg);
  color: var(--success);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.shipping-notice svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.shipping-notice.warning {
  background: var(--warning-bg);
  color: var(--warning);
}

.checkout-btn {
  width: 100%;
  padding: var(--space-md);
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background var(--transition-fast);
  margin-bottom: var(--space-md);
}

.checkout-btn:hover {
  background: var(--primary-dark);
}

.continue-shopping {
  display: block;
  text-align: center;
  color: var(--primary);
  font-size: var(--font-size-sm);
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: var(--space-3xl);
}

.empty-cart svg {
  width: 80px;
  height: 80px;
  color: var(--muted);
  margin-bottom: var(--space-lg);
}

.empty-cart h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.empty-cart p {
  color: var(--muted);
  margin-bottom: var(--space-lg);
}

/* =====================================================
   Checkout Page
   ===================================================== */
.checkout-page {
  padding: var(--space-xl) 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
}

.checkout-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.checkout-section h2 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* Radio Options */
.radio-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.radio-option {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-option:hover {
  border-color: var(--primary);
}

.radio-option.selected {
  border-color: var(--primary);
  background: var(--primary-bg);
}

.radio-option input {
  margin-right: var(--space-md);
  accent-color: var(--primary);
}

.radio-option-content {
  flex: 1;
}

.radio-option-content h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  margin-bottom: 2px;
}

.radio-option-content p {
  font-size: var(--font-size-sm);
  color: var(--muted);
}

.radio-option-price {
  font-weight: var(--font-weight-semibold);
}

/* Order Summary */
.order-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height-scrolled) + var(--space-lg));
}

.order-summary h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
}

.order-items {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.order-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.order-item:last-child {
  margin-bottom: 0;
}

.order-item-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.order-item-image svg {
  width: 24px;
  height: 24px;
  color: var(--muted);
  opacity: 0.5;
}

.order-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-item-details {
  flex: 1;
}

.order-item-details h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: 2px;
}

.order-item-details p {
  font-size: var(--font-size-xs);
  color: var(--muted);
}

.order-item-price {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.place-order-btn {
  width: 100%;
  padding: var(--space-md);
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.place-order-btn:hover {
  background: var(--primary-dark);
}

/* =====================================================
   Account Page
   ===================================================== */
.account-page {
  padding: var(--space-xl) 0;
}

.auth-container {
  max-width: 480px;
  margin: 0 auto;
}

.auth-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.auth-tab {
  flex: 1;
  padding: var(--space-md);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-align: center;
  background: var(--bg);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.auth-tab:hover {
  background: var(--border-light);
}

.auth-tab.active {
  background: var(--surface);
  color: var(--primary);
}

.auth-form {
  padding: var(--space-xl);
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-links {
  text-align: center;
  margin-top: var(--space-lg);
}

.auth-links a {
  color: var(--primary);
  font-size: var(--font-size-sm);
}

/* Account Dashboard */
.account-dashboard {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
}

.account-sidebar {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  height: fit-content;
}

.account-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.account-menu-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
}

.account-menu-item:hover {
  background: var(--bg);
}

.account-menu-item.active {
  background: var(--primary-bg);
  color: var(--primary);
}

.account-menu-item svg {
  width: 20px;
  height: 20px;
}

.account-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.account-content h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

/* Orders List */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.order-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: var(--bg);
  font-size: var(--font-size-sm);
}

.order-number {
  font-weight: var(--font-weight-semibold);
}

.order-status {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

.order-status.delivered {
  background: var(--success-bg);
  color: var(--success);
}

.order-status.processing {
  background: var(--info-bg);
  color: var(--info);
}

.order-status.shipped {
  background: var(--warning-bg);
  color: var(--warning);
}

.order-card-body {
  padding: var(--space-md);
}

.order-items-preview {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.order-item-thumb {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-item-thumb svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  opacity: 0.5;
}

.order-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.order-total {
  font-weight: var(--font-weight-semibold);
}

/* =====================================================
   About Page
   ===================================================== */
.about-page {
  padding: var(--space-xl) 0;
}

.about-hero {
  text-align: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--surface) 100%
  );
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
}

.about-hero h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.about-hero p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: var(--space-2xl);
}

.about-section h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-lg);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.about-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.about-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}

.about-card p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* FAQ Accordion */
.faq-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.faq-item.active .faq-answer {
  display: block;
}

/* =====================================================
   Toast Notifications
   ===================================================== */
.toast-container {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: slideIn var(--transition-normal);
  max-width: 350px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-icon.success {
  background: var(--success-bg);
  color: var(--success);
}

.toast-icon.error {
  background: var(--danger-bg);
  color: var(--danger);
}

.toast-icon svg {
  width: 20px;
  height: 20px;
}

.toast-content h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

.toast-content p {
  font-size: var(--font-size-xs);
  color: var(--muted);
}

.toast-close {
  padding: var(--space-xs);
  cursor: pointer;
  color: var(--muted);
  margin-left: auto;
}

.toast-close:hover {
  color: var(--text);
}

.toast-close svg {
  width: 16px;
  height: 16px;
}

/* =====================================================
   Breadcrumb
   ===================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: var(--font-size-sm);
}

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

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

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

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

/* =====================================================
   Responsive Styles
   ===================================================== */

/* Large Tablets */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-tiles {
    grid-template-columns: repeat(4, 1fr);
  }

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

/* Tablets */
@media (max-width: 992px) {
  .header-main {
    flex-wrap: wrap;
  }

  .search-bar {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
    margin-top: var(--space-md);
  }

  .category-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    display: none;
  }

  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .order-summary {
    position: static;
  }

  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    order: -1;
  }

  .account-menu {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .campaign-banners {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions .header-action span {
    display: none;
  }

  .header-action {
    min-width: 44px;
  }

  .category-nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-xs);
  }

  .hero-slide-content {
    flex-direction: column;
    text-align: center;
    min-height: 300px;
    padding: var(--space-lg);
  }

  .hero-slide-text h2 {
    font-size: var(--font-size-2xl);
  }

  .hero-slide-image {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .category-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .cart-header {
    display: none;
  }

  .cart-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .cart-item-info {
    width: 100%;
  }

  .cart-item-actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .product-trust-row,
  .product-trust {
    grid-template-columns: 1fr;
  }

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

  .about-hero h1 {
    font-size: var(--font-size-2xl);
  }

  .product-carousel-track .product-card {
    flex: 0 0 calc(50% - var(--space-md) / 2);
    min-width: 200px;
  }

  .carousel-arrow {
    display: none;
  }

  .product-info-price .current {
    font-size: var(--font-size-2xl);
  }

  .auth-tabs {
    flex-direction: column;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    padding: var(--space-sm);
  }

  .product-gallery-thumbs {
    overflow-x: auto;
  }

  .product-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .category-tiles {
    grid-template-columns: 1fr;
  }

  .toast {
    max-width: calc(100vw - var(--space-xl));
    left: var(--space-md);
    right: var(--space-md);
  }

  .pagination-btn {
    min-width: 36px;
    height: 36px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .announcement-bar,
  .category-nav,
  .toast-container {
    display: none;
  }

  body {
    background: white;
  }

  .container {
    max-width: 100%;
  }
}
