/* ============================================
   TEXTILE STORE - Elegant Design System
   ============================================ */

/* CSS Variables */
:root {
  /* Colors - Warm Terracotta & Cream Palette */
  --color-primary: #b8654a;
  --color-primary-dark: #9a5038;
  --color-primary-light: #d4927a;
  --color-secondary: #2c3e50;
  --color-accent: #d4a574;
  
  /* Neutrals */
  --color-bg: #faf8f5;
  --color-bg-alt: #f5f1eb;
  --color-bg-dark: #1a1a1a;
  --color-surface: #ffffff;
  --color-border: #e8e3dc;
  --color-border-light: #f0ece6;
  
  /* Text */
  --color-text: #2c2c2c;
  --color-text-muted: #6b6b6b;
  --color-text-light: #999999;
  --color-text-inverse: #ffffff;
  
  /* Status */
  --color-success: #4a9b7f;
  --color-warning: #e6a23c;
  --color-danger: #c45c5c;
  --color-info: #5c8dc4;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Container */
  --container-max: 1280px;
  --header-height: 140px;
}

/* ============================================
   BASE STYLES
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

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

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

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

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  background: var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header__top {
  background: var(--color-secondary);
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  padding: var(--space-sm) 0;
}

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

.header__contacts {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-inverse);
}

.header__phone:hover {
  color: var(--color-accent);
}

.header__work-time {
  opacity: 0.8;
}

.header__nav-top {
  display: flex;
  gap: var(--space-xl);
}

.header__nav-top a {
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.header__nav-top a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* Main Header */
.header__main {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.header__main-content {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.logo__icon {
  font-size: 2rem;
  color: var(--color-primary);
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1;
}

.logo__tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Search Form */
.search-form {
  flex: 1;
  max-width: 500px;
  display: flex;
  position: relative;
}

.search-form__input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  padding-right: 50px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  background: var(--color-bg);
  transition: all var(--transition-base);
}

.search-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
}

.search-form__input::placeholder {
  color: var(--color-text-light);
}

.search-form__btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.search-form__btn:hover {
  background: var(--color-primary-dark);
}

/* Header Right Group (actions + burger) */
.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

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

.header__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

.header__action span {
  font-size: 0.75rem;
}

.header__action--cart {
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Burger Menu */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.header__burger span {
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  transition: all var(--transition-fast);
}

/* Categories Navigation */
.header__categories {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
}

.header__categories .container {
  position: relative;
  padding: 0;
}

/* Scrollable wrapper */
.categories-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

/* Fade indicators for scroll */
.categories-scroll-wrapper::before,
.categories-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.categories-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface) 0%, transparent 100%);
}

.categories-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface) 0%, transparent 100%);
}

.categories-scroll-wrapper.can-scroll-left::before {
  opacity: 1;
}

.categories-scroll-wrapper.can-scroll-right::after {
  opacity: 1;
}

/* Navigation arrows */
.categories-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.categories-nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.categories-nav-btn--prev {
  left: 8px;
}

.categories-nav-btn--next {
  right: 8px;
}

.categories-scroll-wrapper.can-scroll-left .categories-nav-btn--prev,
.categories-scroll-wrapper.can-scroll-right .categories-nav-btn--next {
  opacity: 1;
  visibility: visible;
}

.categories-menu {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--space-lg);
}

.categories-menu::-webkit-scrollbar {
  display: none;
}

.categories-menu__item {
  position: relative;
  flex-shrink: 0;
}

.categories-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--space-md) var(--space-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-secondary);
  white-space: nowrap;
  text-align: center;
  transition: all var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.categories-menu__link:hover {
  color: var(--color-primary);
  background: var(--color-bg);
  border-bottom-color: var(--color-primary);
}

/* Submenu */
.categories-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 50;
}

.categories-menu__item:hover .categories-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.categories-submenu li a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.categories-submenu li a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

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

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(184, 101, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  max-width: 700px;
  padding: var(--space-4xl) 0;
  z-index: 2;
}

.hero__badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-secondary);
  margin-bottom: var(--space-xl);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Hero Decorative Elements */
.hero__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

.hero__circle--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -100px;
  border-color: var(--color-primary-light);
  opacity: 0.3;
}

.hero__circle--2 {
  width: 300px;
  height: 300px;
  top: 30%;
  right: 15%;
  background: var(--color-bg-alt);
}

.hero__circle--3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 5%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  opacity: 0.5;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

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

.feature {
  text-align: center;
}

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.feature__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================
   SECTION STYLES
   ============================================ */

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

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.section-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.section-link:hover {
  color: var(--color-primary-dark);
}

/* Home Categories */
.home-categories {
  padding: var(--space-4xl) 0;
}

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

.category-card {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #3d5a73 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base);
}

.category-card:nth-child(2) { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); }
.category-card:nth-child(3) { background: linear-gradient(135deg, #4a6b5c 0%, #3d5a4d 100%); }
.category-card:nth-child(4) { background: linear-gradient(135deg, #6b5a4a 0%, #5a4a3d 100%); }
.category-card:nth-child(5) { background: linear-gradient(135deg, #5a4a6b 0%, #4a3d5a 100%); }
.category-card:nth-child(6) { background: linear-gradient(135deg, #4a5a6b 0%, #3d4a5a 100%); }

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

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  color: var(--color-text-inverse);
}

.category-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text-inverse);
}

.category-card__link {
  font-size: 0.875rem;
  opacity: 0.8;
}

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

.products-section {
  padding: var(--space-4xl) 0;
}

.products-section--alt {
  background: var(--color-bg-alt);
}

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

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

/* Product Card */
.product-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.product-card__link {
  display: block;
  flex: 1;
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #f8f6f3 0%, #efe9e1 100%);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Кнопка избранного */
.product-card__fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  color: var(--color-text-muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card__fav-btn:hover {
  transform: scale(1.1);
  color: #e25555;
  background: #fff;
  box-shadow: 0 4px 12px rgba(226, 85, 85, 0.25);
}

.product-card__fav-btn.is-favorite {
  color: #e25555;
  background: #fff0f0;
}

.product-card__fav-btn.is-favorite svg {
  fill: #e25555;
}

.product-card__fav-btn svg {
  transition: all 0.25s ease;
}

.product-card__badges {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  z-index: 5;
}

.badge {
  padding: 5px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.badge--new {
  background: var(--color-info);
  color: var(--color-text-inverse);
}

.badge--hit {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.badge--sale {
  background: linear-gradient(135deg, #e25555 0%, #c43f3f 100%);
  color: var(--color-text-inverse);
}

.product-card__info {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

/* Блок размеров */
.product-card__sizes {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.product-card__size-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.product-card__size-tag--current {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

.product-card__size-more {
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 600;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-top: auto;
}

.product-card__price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.product-card__price-old {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* Блок действий */
.product-card__actions {
  padding: 0 var(--space-lg) var(--space-lg);
  margin-top: auto;
}

.product-card__cart-btn {
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #3d5166 100%);
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.product-card__cart-btn svg {
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.product-card__cart-btn:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 101, 74, 0.35);
}

.product-card__cart-btn:hover svg {
  transform: scale(1.15);
}

.product-card__cart-btn:active {
  transform: translateY(0);
}

.product-card__cart-btn.added {
  background: linear-gradient(135deg, #4a9b7f 0%, #3d8269 100%) !important;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
  padding: var(--space-lg) 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

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

.breadcrumbs__item:not(:last-child)::after {
  content: '/';
  color: var(--color-text-light);
}

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

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

.breadcrumbs__item--active {
  color: var(--color-text);
}

/* ============================================
   CATEGORY PAGE
   ============================================ */

.category-header {
  padding: var(--space-2xl) 0;
  background: linear-gradient(to right, var(--color-bg), var(--color-bg-alt));
}

.category-header__title {
  margin-bottom: var(--space-sm);
}

.category-header__count {
  color: var(--color-text-muted);
}

.subcategories {
  padding: var(--space-lg) 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
}

.subcategories__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.subcategory-tag {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.subcategory-tag:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.category-products {
  padding: var(--space-3xl) 0;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  margin-top: var(--space-3xl);
}

.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}

.pagination__link {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

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

.pagination__link--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.pagination__link--prev,
.pagination__link--next {
  padding: 0 var(--space-lg);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */

.product-page {
  padding: var(--space-3xl) 0;
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

/* Product Gallery */
.product-gallery__main {
  aspect-ratio: 1;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.product-gallery__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

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

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

/* Product Info */
.product-info__title {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

.product-info__vendor,
.product-info__sku {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* Product Variants (Size Selector) */
.product-variants {
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.product-variants__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.product-variant {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-fast);
  min-width: 100px;
  cursor: pointer;
}

.product-variant:hover {
  border-color: var(--color-primary-light);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-variant--active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.product-variant--active:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  transform: none;
}

.product-variant--active .product-variant__price {
  color: rgba(255,255,255,0.9);
}

.product-variant--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--color-bg);
}

.product-variant--disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-border);
}

.product-variant__size {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.product-variant__price {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.product-info__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.product-info__price-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-info__price-old {
  font-size: 1.25rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.product-info__stock {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.product-info__stock--available {
  background: rgba(74, 155, 127, 0.1);
  color: var(--color-success);
}

.product-info__stock--unavailable {
  background: rgba(196, 92, 92, 0.1);
  color: var(--color-danger);
}

/* Product Params */
.product-params {
  margin-bottom: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
}

.product-params h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.product-params__list {
  display: grid;
  gap: var(--space-md);
}

.product-params__item {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}

.product-params__item dt {
  color: var(--color-text-muted);
}

.product-params__item dd {
  font-weight: 600;
  text-align: right;
}

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

.product-actions__quantity {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  background: var(--color-bg);
  font-size: 1.25rem;
  color: var(--color-text);
  transition: background var(--transition-fast);
}

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

.quantity-input {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

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

.product-actions__cart {
  flex: 1;
}

.product-actions__favorite {
  width: 50px;
  padding: 0;
}

/* Product Delivery */
.product-delivery {
  display: grid;
  gap: var(--space-md);
}

.product-delivery__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-md);
}

.product-delivery__item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.product-delivery__item strong {
  display: block;
  margin-bottom: var(--space-xs);
}

.product-delivery__item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Product Description */
.product-description {
  padding: var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-3xl);
}

.product-description h2 {
  margin-bottom: var(--space-xl);
}

.product-description__content {
  line-height: 1.8;
  color: var(--color-text);
}

.product-description__content p {
  margin-bottom: var(--space-lg);
}

.product-description__content strong {
  color: var(--color-secondary);
}

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

/* ============================================
   SEARCH PAGE
   ============================================ */

.search-page {
  padding: var(--space-3xl) 0;
}

.search-page__title {
  margin-bottom: var(--space-xl);
}

.search-page__form {
  display: flex;
  gap: var(--space-md);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.search-page__input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.search-page__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.search-page__count {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.search-page__popular h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.search-tag {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.search-tag:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ============================================
   CATALOG PAGE
   ============================================ */

.catalog-page {
  padding: var(--space-3xl) 0;
}

.catalog-page__title {
  margin-bottom: var(--space-2xl);
}

.catalog-categories {
  display: grid;
  gap: var(--space-xl);
}

.catalog-category {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

.catalog-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  background: var(--color-bg);
  transition: background var(--transition-fast);
}

.catalog-category__header:hover {
  background: var(--color-primary);
}

.catalog-category__header:hover .catalog-category__title,
.catalog-category__header:hover .catalog-category__arrow {
  color: var(--color-text-inverse);
}

.catalog-category__title {
  font-size: 1.25rem;
  margin: 0;
  transition: color var(--transition-fast);
}

.catalog-category__arrow {
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.catalog-category__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.catalog-category__list a {
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.catalog-category__list a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.catalog-category__more {
  color: var(--color-primary) !important;
  font-weight: 600;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
  text-align: center;
  padding: var(--space-4xl);
}

.empty-state svg {
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
}

.empty-state p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.empty-state__hint {
  font-size: 0.9375rem;
}

/* ============================================
   ERROR PAGE
   ============================================ */

.error-page {
  padding: var(--space-4xl) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page__content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.error-page__title {
  margin-bottom: var(--space-lg);
}

.error-page__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   SEO SECTION
   ============================================ */

.seo-section {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
}

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

.seo-content h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.seo-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

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

.footer {
  background: var(--color-secondary);
  color: var(--color-text-inverse);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  max-width: 300px;
}

.logo--footer .logo__name,
.logo--footer .logo__icon {
  color: var(--color-text-inverse);
}

.logo--footer .logo__tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer__about {
  margin-top: var(--space-lg);
  font-size: 0.9375rem;
  opacity: 0.8;
  line-height: 1.7;
}

.footer__nav h4,
.footer__contacts h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-lg);
}

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

.footer__nav a {
  font-size: 0.9375rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer__catalog-link {
  color: var(--color-accent) !important;
  font-weight: 600;
}

.footer__phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.footer__contacts p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: var(--space-md);
}

.footer__contacts a {
  opacity: 0.8;
}

.footer__contacts a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer__links {
  display: flex;
  gap: var(--space-xl);
}

.footer__links a:hover {
  opacity: 1;
}

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

@media (max-width: 1024px) {
  .products-grid,
  .products-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-page__grid {
    gap: var(--space-2xl);
  }

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

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

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

  .header__main-content {
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: space-between;
  }

  .logo {
    flex: 0 0 auto;
  }

  /* Группируем иконки и бургер справа */
  .header__right {
    order: 2;
    gap: var(--space-sm);
  }

  .header__actions {
    gap: var(--space-sm);
  }

  .header__actions span {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .search-form {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .header__categories {
    display: none;
  }

  /* Hide scroll nav buttons on mobile */
  .categories-nav-btn {
    display: none !important;
  }
  
  .categories-scroll-wrapper::before,
  .categories-scroll-wrapper::after {
    display: none;
  }

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

  .products-grid,
  .products-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .product-card__fav-btn {
    width: 34px;
    height: 34px;
    top: 8px;
    right: 8px;
  }
  
  .product-card__fav-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .product-card__info {
    padding: var(--space-sm) var(--space-md);
  }
  
  .product-card__title {
    font-size: 0.8rem;
    min-height: 2.2em;
  }
  
  .product-card__sizes {
    gap: 4px;
  }
  
  .product-card__size-tag {
    padding: 3px 8px;
    font-size: 0.65rem;
  }
  
  .product-card__size-more {
    font-size: 0.6rem;
  }
  
  .product-card__price-current {
    font-size: 1rem;
  }
  
  .product-card__actions {
    padding: 0 var(--space-md) var(--space-md);
  }
  
  .product-card__cart-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .product-card__cart-btn svg {
    width: 16px;
    height: 16px;
  }

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

  /* Product Gallery Mobile Fix */
  .product-gallery__main {
    border-radius: var(--radius-md);
  }

  .product-gallery__thumbs {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-sm);
  }

  .product-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }

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

  /* Product Info Mobile */
  .product-info__title {
    font-size: 1.5rem;
  }

  .product-info__price-current {
    font-size: 1.5rem;
  }

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

  .product-variants__list {
    gap: var(--space-xs);
  }

  .product-variant {
    padding: var(--space-sm) var(--space-md);
    min-width: 80px;
  }

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

  .product-description {
    padding: var(--space-lg);
  }

  .hero__decor {
    display: none;
  }

  .hero__content {
    padding: var(--space-2xl) 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .product-actions {
    flex-wrap: wrap;
  }

  .product-actions__cart {
    order: 1;
    flex: 0 0 100%;
  }

  .product-actions__quantity {
    order: 2;
  }

  .product-actions__favorite {
    order: 3;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  .products-grid,
  .products-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-card__fav-btn {
    width: 30px;
    height: 30px;
    top: 6px;
    right: 6px;
  }
  
  .product-card__fav-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .product-card__info {
    padding: 8px 10px;
    gap: 6px;
  }
  
  .product-card__title {
    font-size: 0.75rem;
    min-height: auto;
    -webkit-line-clamp: 2;
  }
  
  .product-card__sizes {
    display: none;
  }
  
  .product-card__price-current {
    font-size: 0.9rem;
  }
  
  .product-card__actions {
    padding: 0 10px 10px;
  }
  
  .product-card__cart-btn {
    padding: 8px 10px;
    font-size: 0.75rem;
    gap: 4px;
  }
  
  .product-card__cart-btn span {
    display: none;
  }
  
  .product-card__cart-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Product Gallery Mobile (small screens) */
  .product-gallery__thumbs {
    gap: var(--space-xs);
  }

  .product-gallery__thumb {
    width: 50px;
    height: 50px;
  }

  /* Product Info Mobile (small screens) */
  .product-info__title {
    font-size: 1.25rem;
  }

  .product-info__price {
    margin: var(--space-md) 0;
  }

  .product-info__price-current {
    font-size: 1.375rem;
  }

  .product-variants__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }

  .product-variant {
    min-width: auto;
    padding: var(--space-sm);
  }

  .product-variant__size {
    font-size: 0.85rem;
  }

  .product-variant__price {
    font-size: 0.7rem;
  }

  .product-params__item {
    font-size: 0.875rem;
  }

  .product-actions {
    gap: var(--space-sm);
  }

  .product-actions__quantity {
    flex: 1;
  }

  .quantity-btn {
    width: 38px;
    height: 38px;
  }

  .quantity-input {
    width: 50px;
    height: 38px;
  }

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

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

  .product-description h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
  }

  .search-page__form {
    flex-direction: column;
  }

  .pagination__link--prev,
  .pagination__link--next {
    display: none;
  }

  /* Header mobile (small screens) */
  .header__main {
    padding: var(--space-md) 0;
  }

  .logo__name {
    font-size: 1.25rem;
  }

  .logo__tagline {
    font-size: 0.65rem;
  }

  .header__action {
    padding: var(--space-xs);
  }

  .header__action svg {
    width: 20px;
    height: 20px;
  }

  .header__cart-count {
    min-width: 16px;
    height: 16px;
    font-size: 0.5rem;
  }
}

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

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

.product-card {
  animation: fadeIn 0.5s ease forwards;
}

.products-grid .product-card:nth-child(1) { animation-delay: 0.05s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.15s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.25s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.35s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.4s; }

/* ============================================
   FAVORITES PAGE
   ============================================ */

.favorites-page {
  padding: var(--space-3xl) 0;
  min-height: 60vh;
}

.favorites-page__title {
  margin-bottom: var(--space-2xl);
}

.favorites-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.favorites-count {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.favorites-clear {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  color: var(--color-danger);
  font-size: 0.9375rem;
  border: 1px solid var(--color-danger);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.favorites-clear:hover {
  background: var(--color-danger);
  color: var(--color-text-inverse);
}

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

.cart-page {
  padding: var(--space-3xl) 0;
  min-height: 60vh;
}

.cart-page__title {
  margin-bottom: var(--space-2xl);
}

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

.cart-items__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.cart-items__count {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.cart-clear {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  color: var(--color-danger);
  font-size: 0.9375rem;
  border: 1px solid var(--color-danger);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.cart-clear:hover {
  background: var(--color-danger);
  color: var(--color-text-inverse);
}

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

/* Cart Item */
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.cart-item__image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cart-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item__title:hover {
  color: var(--color-primary);
}

.cart-item__vendor {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.cart-item__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}

.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-md);
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cart-item__quantity button {
  width: 36px;
  height: 36px;
  background: var(--color-bg);
  font-size: 1.125rem;
  color: var(--color-text);
  transition: background var(--transition-fast);
}

.cart-item__quantity button:hover {
  background: var(--color-border);
}

.cart-item__quantity input {
  width: 50px;
  height: 36px;
  border: none;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
}

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

.cart-item__remove {
  padding: var(--space-sm);
  color: var(--color-text-light);
  transition: color var(--transition-fast);
}

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

.cart-item__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: var(--color-text-light);
  font-size: 0.75rem;
}

/* Cart Summary */
.cart-summary {
  position: sticky;
  top: 160px;
}

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

.cart-summary h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
}

.cart-summary__row--total {
  border-bottom: none;
  padding-top: var(--space-lg);
  font-size: 1.25rem;
  font-weight: 700;
}

.cart-summary__row--total span:last-child {
  color: var(--color-primary);
}

.cart-checkout {
  width: 100%;
  margin-top: var(--space-xl);
}

.cart-summary__note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

/* Cart Responsive */
@media (max-width: 1024px) {
  .cart-grid {
    grid-template-columns: 1fr 320px;
  }
}

@media (max-width: 768px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
  }

  .cart-item__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
  }
}

@media (max-width: 480px) {
  .favorites-header,
  .cart-items__header {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item__image {
    width: 100%;
    height: 150px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .breadcrumbs,
  .product-actions,
  .related-products {
    display: none;
  }

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

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-page {
  padding: var(--space-3xl) 0;
  min-height: 60vh;
}

.checkout-page__title {
  margin-bottom: var(--space-2xl);
}

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

/* Checkout Sections */
.checkout-section {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.checkout-section__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.checkout-section__step {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.checkout-section__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-secondary);
}

.checkout-section__content {
  padding: var(--space-xl);
}

/* Form Styles */
.form-row {
  margin-bottom: var(--space-lg);
}

.form-row:last-child {
  margin-bottom: 0;
}

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

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

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-label .required {
  color: var(--color-danger);
}

.form-input,
.form-textarea {
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(184, 101, 74, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-input.has-error,
.form-textarea.has-error {
  border-color: var(--color-danger);
}

.form-error {
  font-size: 0.8125rem;
  color: var(--color-danger);
  min-height: 1.2em;
}

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

/* Delivery Options */
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.delivery-option {
  cursor: pointer;
}

.delivery-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.delivery-option__content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.delivery-option input:checked + .delivery-option__content {
  border-color: var(--color-primary);
  background: rgba(184, 101, 74, 0.05);
}

.delivery-option:hover .delivery-option__content {
  border-color: var(--color-primary-light);
}

.delivery-option__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.delivery-option input:checked + .delivery-option__content .delivery-option__icon {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.delivery-option__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.delivery-option__name {
  font-weight: 600;
  color: var(--color-text);
}

.delivery-option__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.delivery-option__price {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Delivery Address */
.delivery-address {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.delivery-address__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

/* Pickup Info */
.pickup-info {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.pickup-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-md);
}

.pickup-point__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

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

.pickup-point__name {
  font-weight: 600;
  color: var(--color-text);
}

.pickup-point__address {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.pickup-point__hours {
  font-size: 0.875rem;
  color: var(--color-success);
}

/* Payment Options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.payment-option {
  cursor: pointer;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-option__content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.payment-option input:checked + .payment-option__content {
  border-color: var(--color-primary);
  background: rgba(184, 101, 74, 0.05);
}

.payment-option:hover .payment-option__content {
  border-color: var(--color-primary-light);
}

.payment-option__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.payment-option input:checked + .payment-option__content .payment-option__icon {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.payment-option__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-option__name {
  font-weight: 600;
  color: var(--color-text);
}

.payment-option__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Checkout Sidebar */
.checkout-sidebar {
  position: sticky;
  top: 160px;
}

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

.checkout-summary h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

/* Checkout Items */
.checkout-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: var(--space-lg);
  padding-right: var(--space-sm);
}

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

.checkout-items::-webkit-scrollbar-track {
  background: var(--color-bg);
  border-radius: 2px;
}

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

.checkout-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

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

.checkout-item__image {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg);
  flex-shrink: 0;
}

.checkout-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-item__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--color-text-light);
}

.checkout-item__info {
  flex: 1;
  min-width: 0;
}

.checkout-item__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item__meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.checkout-item__total {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

/* Checkout Totals */
.checkout-summary__totals {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
}

.checkout-summary__row--total {
  padding-top: var(--space-lg);
  margin-top: var(--space-sm);
  border-top: 2px solid var(--color-border);
  font-size: 1.25rem;
  font-weight: 700;
}

.checkout-summary__row--total span:last-child {
  color: var(--color-primary);
}

/* Agreement Checkbox */
.checkout-agreement {
  margin: var(--space-xl) 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  cursor: pointer;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 2px;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.checkbox-text a:hover {
  text-decoration: none;
}

/* Submit Button */
.checkout-submit {
  width: 100%;
  position: relative;
}

.checkout-submit__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.checkout-submit .spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Security Badge */
.checkout-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.checkout-security svg {
  color: var(--color-success);
}

/* Back Link */
.checkout-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.checkout-back:hover {
  color: var(--color-primary);
}

/* Checkout Success */
.checkout-success {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 155, 127, 0.15) 0%, rgba(74, 155, 127, 0.05) 100%);
  border-radius: var(--radius-full);
  color: var(--color-success);
}

.checkout-success__title {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

.checkout-success__order {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.checkout-success__order strong {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.checkout-success__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.checkout-success__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Checkout Responsive */
@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr 350px;
  }
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .checkout-sidebar {
    position: static;
    order: -1;
  }
  
  .checkout-summary {
    margin-bottom: var(--space-xl);
  }
  
  .checkout-items {
    max-height: 200px;
  }
  
  .form-row--2col {
    grid-template-columns: 1fr;
  }
  
  .delivery-option__content {
    flex-wrap: wrap;
  }
  
  .delivery-option__price {
    flex: 0 0 100%;
    text-align: right;
    margin-top: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .checkout-section__content {
    padding: var(--space-lg);
  }
  
  .checkout-section__header {
    padding: var(--space-md) var(--space-lg);
  }
  
  .delivery-option__icon,
  .payment-option__icon {
    width: 40px;
    height: 40px;
  }
  
  .checkout-success {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .checkout-success__title {
    font-size: 1.5rem;
  }
  
  .checkout-success__actions {
    flex-direction: column;
  }
  
  .checkout-success__actions .btn {
    width: 100%;
  }
}

/* ============================================
   INFO PAGES (About, Delivery, Returns, Contacts)
   ============================================ */

.info-page {
  padding: var(--space-3xl) 0;
}

.info-page__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.info-page__title {
  margin-bottom: var(--space-md);
}

.info-page__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.info-page__content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Info Sections */
.info-section {
  margin-bottom: var(--space-3xl);
}

.info-section h2 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border-light);
}

.info-section h2 svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* About Page */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.about-hero__content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-xl);
  border: none;
  padding: 0;
}

.about-hero__content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.about-hero__image {
  display: flex;
  justify-content: center;
}

.about-hero__placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
  padding: var(--space-2xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.about-stat {
  text-align: center;
}

.about-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.about-stat__label {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* About Features */
.about-features {
  margin-bottom: var(--space-4xl);
}

.about-features h2 {
  text-align: center;
  justify-content: center;
  border: none;
  margin-bottom: var(--space-2xl);
}

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

.about-feature {
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

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

.about-feature h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.about-feature p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* About Mission */
.about-mission {
  margin-bottom: var(--space-4xl);
  padding: var(--space-3xl);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #3d5a73 100%);
  border-radius: var(--radius-xl);
  text-align: center;
}

.about-mission h2 {
  color: var(--color-text-inverse);
  justify-content: center;
  border: none;
  margin-bottom: var(--space-xl);
}

.about-mission blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* About CTA */
.about-cta {
  text-align: center;
  padding: var(--space-3xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

.about-cta h2 {
  justify-content: center;
  border: none;
  margin-bottom: var(--space-md);
}

.about-cta p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.about-cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* Delivery Page */
.delivery-methods {
  display: grid;
  gap: var(--space-xl);
}

.delivery-method {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.delivery-method__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg);
}

.delivery-method__header h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-secondary);
}

.delivery-method__price {
  font-weight: 700;
  color: var(--color-primary);
}

.delivery-method__content {
  padding: var(--space-xl);
}

.delivery-method__content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.delivery-method__content ul {
  margin-bottom: var(--space-md);
}

.delivery-method__content li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.delivery-method__content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.delivery-method__note {
  font-size: 0.875rem;
  color: var(--color-success);
  font-weight: 600;
}

.delivery-method__address {
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

/* Payment Methods (Delivery Page) */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.payment-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.payment-method__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.payment-method__info h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

.payment-method__info p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

.info-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.info-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Info CTA */
.info-cta {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.info-cta p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* Returns Page */
.info-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(74, 155, 127, 0.1) 0%, rgba(74, 155, 127, 0.05) 100%);
  border: 2px solid var(--color-success);
  border-radius: var(--radius-lg);
}

.info-highlight__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.info-highlight__content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.info-highlight__content p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Return Conditions */
.return-conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.return-condition {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.return-condition--success {
  background: rgba(74, 155, 127, 0.08);
  border: 1px solid rgba(74, 155, 127, 0.3);
}

.return-condition--warning {
  background: rgba(196, 92, 92, 0.08);
  border: 1px solid rgba(196, 92, 92, 0.3);
}

.return-condition h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.return-condition--success h3 {
  color: var(--color-success);
}

.return-condition--warning h3 {
  color: var(--color-danger);
}

.return-condition ul {
  margin: 0;
}

.return-condition li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.return-condition--success li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.return-condition--warning li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: bold;
}

/* Return Options */
.return-options {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.return-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.return-option__number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.return-option__content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
}

.return-option__content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Return Steps */
.return-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.return-step {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

.return-step__number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
}

.return-step__content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.return-step__content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Contacts Page */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-card__content h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.contact-card__link {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.contact-card__link:hover {
  color: var(--color-primary);
}

.contact-card__content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.contact-card__address {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.contact-card__hours {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-card__messengers {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.messenger-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.messenger-link--telegram {
  background: #e8f4fd;
  color: #0088cc;
}

.messenger-link--telegram:hover {
  background: #0088cc;
  color: #fff;
}

.messenger-link--whatsapp {
  background: #e8f8e8;
  color: #25d366;
}

.messenger-link--whatsapp:hover {
  background: #25d366;
  color: #fff;
}

/* Contact Form */
.contacts-form-wrapper {
  position: sticky;
  top: 160px;
}

.contacts-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contacts-form h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.contacts-form > p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.contact-form__submit {
  width: 100%;
}

/* Contacts Map */
.contacts-map h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.contacts-map__wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contacts-map__placeholder {
  height: 350px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--color-primary);
}

.contacts-map__placeholder p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.contacts-map__placeholder span {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Legal Pages */
.legal-page .info-page__subtitle {
  font-size: 0.9375rem;
}

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

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

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-secondary);
}

.legal-section h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: var(--space-lg) 0 var(--space-md);
  color: var(--color-secondary);
}

.legal-section p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  color: var(--color-text-muted);
}

.legal-section ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-section li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.legal-section a {
  color: var(--color-primary);
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Info Pages Responsive */
@media (max-width: 1024px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .return-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .about-hero__image {
    order: -1;
  }
  
  .about-features__grid {
    grid-template-columns: 1fr;
  }
  
  .about-mission blockquote {
    font-size: 1.25rem;
  }
  
  .return-conditions {
    grid-template-columns: 1fr;
  }
  
  .return-steps {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .contacts-form-wrapper {
    position: static;
  }
  
  .info-highlight {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-stat__number {
    font-size: 2rem;
  }
  
  .about-cta__buttons {
    flex-direction: column;
  }
  
  .about-cta__buttons .btn {
    width: 100%;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-card__icon {
    margin: 0 auto;
  }
  
  .contact-card__messengers {
    justify-content: center;
  }
  
  .contacts-form {
    padding: var(--space-lg);
  }
}


