/* ==========================================================================
   Premium E-commerce Template — Product Theatre
   ЭТАЛОН: BORK.ru — Dark, Elegant, Minimalist
   ФАЗА 5: ПОЛНАЯ ПЕРЕЗАПИСЬ ПО АУДИТУ (v9) + REDESIGN SPRINT 1 (v10)
   ========================================================================== */

/* ========== CSS Variables ========== */
/* Colors & fonts are injected via theme system (themeCSS in <head>).
   Only layout variables are defined here as defaults. */
:root {
  --section-padding: clamp(40px, 6vw, 80px);
  --container-padding: clamp(16px, 3vw, 48px);
  --transition: all 0.5s cubic-bezier(0.25, 0, 0.25, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0, 0.25, 1);
}

/* ========== Custom Cursor & Noise (NEW) ========== */
@media (min-width: 1024px) {
  body {
    cursor: none;
  }
  body:focus-within:not(:hover) {
    cursor: auto;
  }
}

/* ========== Skip Link (Accessibility) ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

body.hover-interactive .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 168, 76, 0.1);
  border-color: transparent;
}

/* Noise Overlay (Film Grain) */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--gray-light);
  background: var(--dark);
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ========== Typography (BORK-scale) ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.025em;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

h4 {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.015em;
}

h5 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

h6 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1.5;
}

.lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* Tabular nums for prices & data */
.product-price,
.product-detail-price,
.stat-number {
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  font-variant-numeric: tabular-nums lining-nums;
}

/* Text Content Wrapper */
.text-content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Container ========== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(16px, 4vw, 32px);
  }
}

/* ========== Section Spacing (ОГРОМНЫЕ отступы) ========== */
section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  section {
    padding: clamp(40px, 10vw, 80px) 0;
  }
}

/* ========== Buttons (BORK-style) ========== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 18px 52px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
  color: var(--black);
}

.btn-secondary {
  background: rgba(250, 246, 240, 0.06);
  border: none;
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

/* ========== Header (Fixed, with dividers) ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: var(--black);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header-transparent {
  background: rgba(26, 26, 30, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-right: 2.5rem;
  flex-shrink: 0;
}

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

.nav a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 240, 0.85);
  position: relative;
  padding: 0 1.25rem;
}

.nav a:last-child {
  padding-right: 0;
}

.nav a:first-child {
  padding-left: 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}

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

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

/* ========== Burger Menu ========== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.burger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition-fast);
}

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

  .header {
    position: fixed;
    padding: 1rem 0;
  }
}

/* ========== Mobile Menu ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  padding: 1.5rem 0;
  color: var(--white);
  text-align: center;
  transition: var(--transition-fast);
  min-height: 44px;
  min-width: 44px;
  position: relative;
}

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

/* ========== Hero Section (100vh, драматичный) ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 26, 20, 0.2) 0%,
    rgba(18, 26, 20, 0.3) 30%,
    rgba(18, 26, 20, 0.6) 60%,
    rgba(23, 32, 25, 0.9) 85%,
    rgba(23, 32, 25, 0.97) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--container-padding);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 1.75rem;
  color: var(--white);
  text-shadow: 0 2px 60px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 3.5rem;
  opacity: 0.9;
}

/* Hero button — особая */
.hero .btn {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 4px;
  color: #fff;
  padding: 20px 60px;
  font-size: 0.875rem;
}

.hero .btn:hover {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Scroll indicator — chevron + text */
.hero::after {
  content: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollFloat 2.4s ease-in-out infinite;
}

.scroll-indicator-text {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

@keyframes scrollFloat {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

/* Hero Mobile fixes */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.25rem, 7vw, 2.25rem);
    letter-spacing: 0.02em;
    padding: 0 1.5rem;
    overflow-wrap: break-word;
    word-break: break-word;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  
  .hero-subtitle {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    padding: 0 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  
  .hero .btn {
    padding: 16px 40px;
    font-size: 0.75rem;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
  
  .scroll-indicator-arrow {
    width: 14px;
    height: 14px;
  }
}

/* ========== Products Grid (БОЛЬШИЕ gap) ========== */
.products-grid,
.catalog-grid,
.hope-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

/* 4-card sections: single row on desktop */
.new-arrivals .products-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .products-grid,
  .catalog-grid,
  .hope-grid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .products-grid,
  .catalog-grid,
  .hope-grid,
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .products-grid,
  .catalog-grid,
  .hope-grid,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========== Product Card (Museum Pedestal — 3D tilt, gallery pricing) ========== */
.product-card {
  --stagger-delay: 0s;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.25, 0, 0.25, 1), 
              transform 0.9s cubic-bezier(0.25, 0, 0.25, 1),
              box-shadow 0.5s cubic-bezier(0.25, 0, 0.25, 1);
  transition-delay: var(--stagger-delay);
  border: none;
  background: var(--card-bg);
  border-radius: 4px;
  perspective: 800px;
  position: relative;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card .product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--dark);
  border-radius: 4px 4px 0 0;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1), filter 0.5s ease;
  border-radius: 4px 4px 0 0;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

/* Overlay с названием при hover */
.product-card .product-image .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(0deg, rgba(26,26,30,0.85) 0%, rgba(26,26,30,0) 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.product-card .product-image .card-overlay span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

/* Card info block — museum label style */
.product-card .card-info {
  padding: 1.25rem 1rem 1.5rem;
  position: relative;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  margin-top: 0;
  color: var(--white);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: var(--gold);
}

/* Gallery price tag — thin line on top */
.product-card .price-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-muted), transparent);
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.product-card .product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}

/* Quick View button — appears on hover */
.product-card .quick-view-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  z-index: 5;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  background: rgba(26, 26, 30, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 4px;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0, 0.25, 1);
  pointer-events: none;
  white-space: nowrap;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.product-card .quick-view-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* 3D tilt shine effect */
.product-card .product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 60%
  );
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.product-card:hover .product-image::before {
  opacity: 1;
}

/* Badge */
.badge,
.hope-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.375rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

/* ========== Breadcrumbs (Sprint 5: editorial, minimal, sophisticated) ========== */
.breadcrumbs {
  padding-top: clamp(65px, 8vw, 85px); /* под fixed header */
  padding-bottom: 2rem;
}

.breadcrumbs .container {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 246, 240, 0.35);
  display: flex;
  align-items: center;
  gap: 0;
}

.breadcrumbs a {
  color: rgba(250, 246, 240, 0.35);
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25, 0, 0.25, 1);
}

.breadcrumbs a:hover::after {
  width: 100%;
}

.breadcrumbs .breadcrumb-sep {
  margin: 0 1rem;
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.6;
}

/* Current page in breadcrumbs */
.breadcrumbs .breadcrumb-current {
  color: var(--gold);
  font-weight: 500;
  opacity: 0.7;
}

.breadcrumbs span:not(.breadcrumb-sep):not(.breadcrumb-current) {
  margin: 0 1rem;
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.6;
}

/* Legacy separator support */
.breadcrumbs span {
  margin: 0 0.75rem;
}

@media (max-width: 768px) {
  .breadcrumbs .container {
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .breadcrumbs .breadcrumb-sep,
  .breadcrumbs span:not(.breadcrumb-sep):not(.breadcrumb-current) {
    margin: 0 0.5rem;
  }
}

/* ========== Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Sections: Specific Styles ========== */

/* About */
.about-content {
  background: var(--light-section);
  color: var(--text-muted-dark);
}

.about-content h1,
.about-content h2 {
  color: var(--black);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* [CONSOLIDATED] */

/* Hope Edition — UNIQUE VISUAL IDENTITY (distinct from main catalog) */
/* Custom palette: silver-platinum accent, ethereal atmosphere */

.hope-hero {
  padding-top: clamp(90px, 12vw, 140px);
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ethereal radial glow behind hero */
.hope-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hope-hero > .container {
  position: relative;
  z-index: 1;
}

.hope-hero h1 {
  font-size: clamp(1.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.1;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #FAF6F0 0%, var(--gold) 40%, #E8D5A0 60%, #FAF6F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: hopeShimmer 6s ease-in-out infinite;
}

@keyframes hopeShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hope-hero .lead {
  margin-bottom: 3rem;
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: rgba(201, 168, 76, 0.7);
}

.hope-description {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
}

.hope-description::before,
.hope-description::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.5rem;
}

.hope-description::after {
  margin: 2.5rem auto 0;
}

.hope-description p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.9;
}

/* Hope Banner */
.hope-banner {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  margin: var(--section-padding) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hope-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hope-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 2;
}

.hope-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 4rem var(--container-padding);
  max-width: 800px;
}

.hope-banner-content h2 {
  color: white;
  margin-bottom: 2rem;
}

.hope-banner-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.hope-banner-content .btn {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  color: white;
}

.hope-banner-content .btn:hover {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

/* Hope Products — gallery-style cards with unique treatment */
.hope-products {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--darker) 50%, var(--black) 100%);
}

.hope-products h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hope-products h2::after {
  content: 'LIMITED COLLECTION';
  display: block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(201, 168, 76, 0.5);
  margin-top: 1rem;
}

.hope-products .products-grid {
  margin-top: 4rem;
}

/* Hope cards: golden glow via background, no border */
.hope-grid .product-card {
  border: none;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.04) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.hope-grid .product-card:hover {
  box-shadow: 0 16px 50px rgba(201, 168, 76, 0.12),
              0 0 1px rgba(201, 168, 76, 0.3),
              0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Hope badge styling — distinctive from default */
.hope-grid .badge {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.75rem;
}

/* Hope Features — gallery-card style with numbering */
.hope-features {
  background: var(--darker);
  padding: var(--section-padding) 0;
}

.hope-features h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  counter-reset: feature-counter;
}

.feature-item {
  counter-increment: feature-counter;
  padding: 2.5rem;
  border: none;
  border-radius: 4px;
  background: rgba(250, 246, 240, 0.03);
  position: relative;
  transition: background 0.4s ease, transform 0.3s ease;
}

.feature-item::before {
  content: '0' counter(feature-counter);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.15);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}

.feature-item:hover {
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-3px);
}

.feature-item h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.feature-item p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 2rem 1.5rem;
  }
  
  .feature-item::before {
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
  }
}

/* Catalog Page */
.catalog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: none;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Product Detail Page */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.product-detail .product-image {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 4px;
}

.product-detail .product-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 4px;
}

.product-info {
  position: relative;
  padding-top: 2rem;
}

.product-name,
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--white);
}

.product-detail-price,
.product-detail .product-price,
.product-info .product-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.product-info .product-price::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 1.5rem;
}

.product-description {
  color: var(--gray-light);
  margin-bottom: 3rem;
  line-height: 1.95;
  max-width: 600px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.product-description p {
  margin-bottom: 1.5rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-actions .btn {
  width: 100%;
  max-width: 400px;
  text-align: center;
  padding: 20px 20px 20px 20px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Animated arrow on CTA hover */
.product-actions .btn .btn-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1);
}

.product-actions .btn .btn-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

.product-actions .btn .btn-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}

.product-actions .btn:hover .btn-arrow {
  transform: translateX(4px);
}

.product-actions .btn:hover .btn-arrow::before {
  width: 16px;
}

/* Related Products */
.related-products {
  padding: var(--section-padding) 0;
}

.related-products h2 {
  margin-bottom: 3rem;
  text-align: center;
}

/* Contacts Page */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* .contact-method base consolidated into iter6 Contact Method Cards */

.form-group {
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(250, 246, 240, 0.04);
  border: none;
  border-bottom: 2px solid rgba(250, 246, 240, 0.08);
  border-radius: 4px 4px 0 0;
  padding: 1rem 0.75rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  background: rgba(250, 246, 240, 0.06);
  border-bottom-color: var(--gold);
}

/* Focus styles for all interactive elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Form validation error state */
.form-group input.error,
.form-group textarea.error {
  border-bottom-color: var(--error);
}

.form-error {
  color: var(--error);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group input.error ~ .form-error,
.form-group textarea.error ~ .form-error {
  display: block;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

/* Footer (Sprint 5: Cinematic, editorial-style footer) */
.footer {
  background: var(--card-bg);
  padding: 0 0 68px; /* 20px content + 48px for fixed marquee */
  border-top: none;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Footer top accent — golden line with glow */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 1;
}

/* Footer brand section — large, statement piece */
.footer-brand {
  text-align: center;
  padding: 20px var(--container-padding) 10px;
  position: relative;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gray);
  margin-bottom: 1rem;
}

.footer-text {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* Footer grid — compact, editorial layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer-col {
  padding: 1.5rem 1.5rem;
  position: relative;
}

.footer-col + .footer-col {
  border-left: 1px solid var(--border-light);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col {
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
  color: var(--gold-bright);
  position: relative;
  padding-bottom: 0;
  font-weight: 600;
}

.footer h4::after {
  display: none;
}

.footer-nav a,
.footer-contacts a {
  display: block;
  padding: 0.25rem 0;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-light);
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: 0.02em;
}

.footer-nav a:hover,
.footer-contacts a:hover {
  color: var(--gold);
  padding-left: 0;
  transform: translateX(6px);
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-light);
  transition: var(--transition-fast);
  position: relative;
}

@media (max-width: 768px) {
  .footer-social a {
    justify-content: center;
  }
  .footer-nav a,
  .footer-contacts a {
    text-align: center;
  }
  .footer-nav a:hover,
  .footer-contacts a:hover {
    transform: none;
  }
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--gray);
  transition: fill 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.footer-social a:hover svg {
  fill: var(--gold);
  transform: scale(1.15);
}

.footer-bottom {
  padding: 15px var(--container-padding) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  margin-top: 0.5rem;
  padding-top: 15px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 2rem;
  }
}

/* Telegram Float */
.telegram-float {
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
  z-index: 7500;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.telegram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
}

.telegram-float svg {
  width: 30px;
  height: 30px;
}

/* Sections Dividers — removed borders, using spacing only */

/* ========== ITERATION 1 IMPROVEMENTS ========== */

/* Marquee / Бегущая строка */
.brand-marquee {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(22, 22, 24, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  z-index: 8000;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  padding: 0 3rem;
  position: relative;
}

.marquee-item::after {
  content: '•';
  position: absolute;
  right: 1.5rem;
  color: var(--gold);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Word-by-word split-text animation для Hero title */
.hero h1 .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  animation: wordReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  margin-right: 0.25em;
}

.hero h1 .hero-word:last-child {
  margin-right: 0;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Hero subtitle delayed reveal */
.hero-subtitle {
  animation: subtitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes subtitleReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 0.5em;
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
    letter-spacing: 0.35em;
  }
}

/* Hero button delayed reveal */
.hero .btn {
  animation: heroBtnReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

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

/* Header hide/show on scroll */
.header.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1);
}

.header.header-visible {
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.25, 0, 0.25, 1);
}

/* Улучшенные hover-эффекты карточек (iter1 + iter2 + sprint3 pedestal) */
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15),
              0 0 20px rgba(201, 168, 76, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-card .product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(201, 168, 76, 0) 0%, 
    rgba(201, 168, 76, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

/* Фильтры: горизонтальный scroll на mobile */
@media (max-width: 768px) {
  .catalog-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin-left: calc(var(--container-padding) * -1);
    margin-right: calc(var(--container-padding) * -1);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  
  .catalog-filters::-webkit-scrollbar {
    display: none;
  }
  
  .filter-btn {
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Mobile grid: 2 колонки */
  .products-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  /* Увеличенная цена товара на mobile */
  .product-card .product-price {
    font-size: 1rem;
    font-weight: 500;
  }

  .product-card h3 {
    font-size: 0.95rem;
    margin-top: 0;
  }

  .product-card .card-info {
    padding: 0.75rem 0.5rem 1rem;
  }

  .product-card .price-divider {
    width: 100%;
    margin: 0;
  }
  
  /* No tilt on mobile */
  .product-card a {
    transform: none !important;
  }
  
  /* Quick view always hidden on mobile */
  .product-card .quick-view-btn {
    display: none;
  }
  
  .product-info .product-price {
    font-size: 2rem;
  }
}

/* ========== ITERATION 3 IMPROVEMENTS ========== */

/* Sticky CTA на mobile (product page) */
@media (max-width: 768px) {
  .product-detail .product-actions {
    position: fixed;
    bottom: 48px; /* above marquee */
    left: 0;
    right: 0;
    background: rgba(26, 26, 30, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 1rem 1.25rem;
    z-index: 7000;
    flex-direction: row;
    gap: 0.75rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  }
  
  .product-detail .product-actions .btn {
    padding: 14px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    max-width: none;
    flex: 1;
  }

  .product-detail .product-actions .qty-selector {
    max-width: none;
    flex: 0 0 auto;
  }

  .product-detail .product-actions .qty-btn {
    width: 36px;
    height: 40px;
    font-size: 1rem;
  }

  .product-detail .product-actions .qty-input {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  /* Telegram float: above sticky CTA + marquee */
  .product-detail .telegram-float {
    bottom: 120px;
  }
  
  /* Добавить отступ снизу контента чтобы sticky не перекрывал */
  .product-detail .product-info {
    padding-bottom: 120px; /* sticky CTA ~60px + marquee ~48px + safety */
  }
}

/* Product Image: zoom on hover (magnifier lens) */
.product-detail .product-image {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.product-detail .product-image img {
  transition: transform 0.1s ease-out;
  transform-origin: center center;
}

.product-detail .product-image:hover img {
  transform: scale(1.8);
}

.product-zoom-lens {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, transparent 55%, rgba(26, 26, 30, 0.15) 100%);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1), inset 0 0 20px rgba(201, 168, 76, 0.05);
  transform: translate(-50%, -50%);
}

.product-detail .product-image:hover .product-zoom-lens {
  opacity: 1;
}

.product-zoom-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 246, 240, 0.5);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.3s ease;
  background: rgba(26, 26, 30, 0.55);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.product-zoom-hint svg {
  width: 13px;
  height: 13px;
  stroke: rgba(250, 246, 240, 0.5);
  fill: none;
  stroke-width: 1.5;
}

.product-detail .product-image:hover .product-zoom-hint {
  opacity: 0;
}

@media (max-width: 768px) {
  .product-detail .product-image {
    cursor: zoom-in;
  }
  .product-detail .product-image:hover img {
    transform: none;
  }
  .product-zoom-lens,
  .product-zoom-hint {
    display: none;
  }
}

/* Product Image: zoom on click (lightbox) — cursor in base section */

.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(26, 26, 30, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: zoom-out;
}

.product-image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.product-image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0, 0.25, 1);
}

.product-image-lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* CTA Button micro-animation (Iteration 3) */
.product-actions .btn-primary {
  position: relative;
  overflow: hidden;
}

.product-actions .btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.product-actions .btn-primary:active::after {
  width: 300px;
  height: 300px;
}

.product-actions .btn-secondary {
  position: relative;
  overflow: hidden;
}

.product-actions .btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.product-actions .btn-secondary:hover::after {
  width: 100%;
}

/* ========== ITERATION 5: ANIMATIONS & MICRO-INTERACTIONS ========== */

/* 1. Stagger animation for product cards — cascading delay per card */

.products-grid .product-card:nth-child(1) { --stagger-delay: 0s; }
.products-grid .product-card:nth-child(2) { --stagger-delay: 0.1s; }
.products-grid .product-card:nth-child(3) { --stagger-delay: 0.2s; }
.products-grid .product-card:nth-child(4) { --stagger-delay: 0.3s; }
.products-grid .product-card:nth-child(5) { --stagger-delay: 0.4s; }
.products-grid .product-card:nth-child(6) { --stagger-delay: 0.5s; }

.catalog-grid .product-card:nth-child(3n+1) { --stagger-delay: 0s; }
.catalog-grid .product-card:nth-child(3n+2) { --stagger-delay: 0.12s; }
.catalog-grid .product-card:nth-child(3n+3) { --stagger-delay: 0.24s; }

.hope-grid .product-card:nth-child(3n+1) { --stagger-delay: 0s; }
.hope-grid .product-card:nth-child(3n+2) { --stagger-delay: 0.12s; }
.hope-grid .product-card:nth-child(3n+3) { --stagger-delay: 0.24s; }

.featured-grid .product-card:nth-child(1) { --stagger-delay: 0s; }
.featured-grid .product-card:nth-child(2) { --stagger-delay: 0.15s; }
.featured-grid .product-card:nth-child(3) { --stagger-delay: 0.3s; }

/* 2. Inline marquee divider between sections */
.section-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  background: rgba(250, 246, 240, 0.02);
  position: relative;
}

.section-marquee .marquee-track {
  display: inline-flex;
  animation: sectionMarquee 30s linear infinite;
  will-change: transform;
}

.section-marquee .marquee-word {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 245, 240, 0.12);
  padding: 0 2rem;
  white-space: nowrap;
  user-select: none;
}

.section-marquee .marquee-word .sep {
  color: var(--gold);
  opacity: 0.4;
  margin-left: 2rem;
  font-size: 0.6em;
  vertical-align: middle;
}

@keyframes sectionMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 3. Smooth CSS parallax on background images */
/* [CONSOLIDATED] */

/* 4. Unified transition timing: 0.5s cubic-bezier(0.25, 0, 0.25, 1) — already set in --transition var */

/* 5. Link underline animation grows from left (consolidated) */

/* Footer links: underline from left */
.footer-nav a::after,
.footer-contacts a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25, 0, 0.25, 1);
}

.footer-nav a:hover::after,
.footer-contacts a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer-nav a::after,
  .footer-contacts a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile nav links: subtle gold underline */
.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.25, 0, 0.25, 1);
}

.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  width: 40%;
}

/* Smooth hover scale — consolidated into base .product-card */

/* Philosophy items: stagger reveal (consolidated into iter6 section) */

/* CTA buttons: subtle pulse on idle */
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
  50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.08); }
}

.cta .btn-primary {
  animation: subtlePulse 3s ease-in-out infinite;
  animation-delay: 2s;
}

.cta .btn-primary:hover {
  animation: none;
}

/* ========== ITERATION 6: ABOUT + CONTACTS + SEO ========== */

/* 1. Photo Break: parallax-style with overlay */
.photo-break {
  position: relative;
  height: 70vh;
  margin: 0;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 120%; /* extra for parallax movement */
  object-fit: cover;
  will-change: transform;
}

.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 30, 0.4) 0%,
    rgba(26, 26, 30, 0.1) 30%,
    rgba(26, 26, 30, 0.1) 70%,
    rgba(26, 26, 30, 0.5) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* 2. Stats: counter animation visual polish */
.stats {
  padding: clamp(30px, 5vw, 60px) 0;
  background: var(--darker);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 2rem 0;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.2);
}

.stat-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stat-item:not(:last-child)::after {
    right: 20%;
    top: auto;
    bottom: 0;
    height: 1px;
    width: 60%;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  }
}

/* 3. About text: refined typography */
.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text .lead {
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  display: block;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-transform: none;
  font-weight: 500;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.0625rem;
  line-height: 1.85;
  font-weight: 400;
}

/* 4. Philosophy grid: about page specific */
.about-content + .photo-break + .stats + .philosophy .philosophy-grid,
.philosophy .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.philosophy {
  background: var(--light-section);
}

.philosophy h2 {
  color: var(--black);
}

.philosophy .philosophy-quote {
  color: var(--text-muted-dark);
  border-left-color: #8B7530;
}

.philosophy-item {
  opacity: 0;
  transform: translateY(30px);
  padding: 2.5rem;
  border: none;
  border-radius: 4px;
  background: #EDE9E0;
  position: relative;
  transition: opacity 0.7s cubic-bezier(0.25, 0, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0, 0.25, 1),
              background 0.4s ease;
}

.philosophy-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-item:nth-child(1) { transition-delay: 0s; }
.philosophy-item:nth-child(2) { transition-delay: 0.15s; }
.philosophy-item:nth-child(3) { transition-delay: 0.2s; }

.philosophy-item:hover {
  background: rgba(201, 168, 76, 0.06);
}

.philosophy-item h3 {
  color: var(--black);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
}

.philosophy-item p {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

.philosophy-item {
  color: var(--dark);
}

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

@media (max-width: 768px) {
  .philosophy .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .philosophy-item {
    padding: 2rem 1.5rem;
  }
}

/* 5. Contacts: styled form with golden accents */
.contacts-content {
  padding-top: clamp(80px, 10vw, 110px);
}

.contacts-content h1 {
  margin-bottom: 3rem;
}

.contacts-info h2,
.contacts-form h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

/* Contact Method Cards */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.contact-method {
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-radius: 4px;
  padding: 2rem;
  transition: background 0.4s ease, transform 0.3s ease;
  margin-bottom: 0;
}

.contact-method:hover {
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-2px);
}

.contact-method h3 {
  font-size: 0.8125rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-method a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.contact-method a:hover {
  color: var(--gold);
}

.contact-method p {
  font-size: 0.8125rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-method {
    padding: 1.5rem;
  }
  
  .contact-method a {
    font-size: 1.25rem;
  }
}

/* Working Hours */
.working-hours {
  margin-top: 2rem;
  padding-top: 2rem;
}

.working-hours h3 {
  font-size: 0.8125rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.working-hours .note {
  font-size: 0.8125rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Styled Contact Form */
.contacts-form {
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.contacts-form > p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

.contact-form .form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.contact-form .form-group label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 0.75rem;
  display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  background: rgba(250, 246, 240, 0.04);
  border: none;
  border-bottom: 2px solid rgba(250, 246, 240, 0.08);
  border-radius: 4px 4px 0 0;
  padding: 1.25rem 0.75rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  min-height: 60px;
  transition: border-color 0.4s ease, background 0.4s ease;
  outline: none;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-bottom-color: var(--gold);
  background: rgba(250, 246, 240, 0.06);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(245, 245, 240, 0.2);
}

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

/* Focus underline animation */
.contact-form .form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}

.contact-form .form-group:focus-within::after {
  width: 100%;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 20px;
  font-size: 0.875rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.form-note {
  font-size: 0.6875rem;
  color: var(--gray);
  text-align: center;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .contacts-form {
    padding: 1.5rem;
  }
}

/* 6. Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 9999;
  width: 0%;
  transition: none;
  will-change: width;
}

/* ========== ITERATION 7: PRELOADER & PERFORMANCE ========== */

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderFadeIn 1s ease forwards;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.preloader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: var(--gold);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderSlide {
  0% { left: -30%; }
  100% { left: 100%; }
}

/* ========== SPRINT 5: MOBILE POLISH & MICRO-INTERACTIONS ========== */

/* Mobile: hero content spacing fix */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh; /* safe viewport height (iOS notch-safe) */
  }
  
  .hero-content {
    padding: 0 1.25rem;
  }
  
  /* Hero word animation: smaller delays on mobile */
  .hero h1 .hero-word {
    margin-right: 0.15em;
  }
  
  /* Mobile: hope banner height */
  .hope-banner {
    min-height: 50vh;
    margin: clamp(40px, 8vw, 60px) 0;
  }

  /* Hide duplicate overlay text on mobile hope-banner */
  .hope-banner .card-overlay {
    display: none;
  }
  
  .hope-banner-content {
    padding: 2.5rem 1.5rem;
  }
  
  .hope-banner-content p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  
  /* Mobile: philosophy quote */
  .philosophy-quote {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    padding: 0 0.5rem;
    line-height: 1.6;
  }
  
  /* Mobile: CTA section */
  .cta h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .cta p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  /* Mobile: section marquees smaller */
  .section-marquee .marquee-word {
    font-size: 1.25rem;
    padding: 0 1.25rem;
  }
  
  /* Mobile: Telegram float smaller */
  .telegram-float {
    width: 48px;
    height: 48px;
    bottom: 5rem;
    right: 0.75rem;
  }

  .telegram-float svg {
    width: 24px;
    height: 24px;
  }
  
  /* Mobile: brand marquee at bottom */
  .brand-marquee {
    padding: 0.75rem 0;
  }
  
  .marquee-item {
    font-size: 0.75rem;
    padding: 0 2rem;
    letter-spacing: 0.15em;
  }
  
  /* Mobile: footer brand section */
  .footer-brand {
    padding: 15px 1.5rem 10px;
  }
  
  .footer-logo {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }
  
  .footer-tagline {
    font-size: 0.5625rem;
    letter-spacing: 0.25em;
    margin-bottom: 0.75rem;
  }
  
  .footer-text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
  
  /* Mobile: scroll progress thinner */
  .scroll-progress {
    height: 1px;
  }
}

/* Mobile: small screens (< 375px) edge cases */
@media (max-width: 374px) {
  .hero-title {
    font-size: 1.25rem !important;
  }
  
  .products-grid,
  .catalog-grid {
    grid-template-columns: 1fr !important;
  }
  
  .footer-logo {
    font-size: 1.25rem !important;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .products-grid,
  .catalog-grid,
  .hope-grid,
  .featured-grid {
    gap: 2rem;
  }
  
  .footer-brand {
    padding: 20px var(--container-padding) 10px;
  }
}

/* Micro-interactions: global hover enhancements */

/* Buttons: subtle lift + gold glow on all .btn */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn:hover::before {
  left: 100%;
}

/* Philosophy items: gold left accent on hover */
.philosophy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}

.philosophy-item:hover::before {
  height: 100%;
}

/* Contact methods: gold left accent on hover */
.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}

.contact-method:hover::before {
  height: 100%;
}

/* Feature items (hope-edition): gold left accent */
.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}

.feature-item:hover::after {
  width: 60%;
}

/* Section headings: subtle reveal animation */
section h2 {
  position: relative;
}

/* Footer brand logo: hover shimmer */
.footer-logo:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

/* Footer social icons: rotation on hover */
.footer-social a:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

/* ========== HEADER CART ICON & BADGE ========== */
.header-cart {
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  transition: color 0.3s ease;
  margin-left: 1.5rem;
  flex-shrink: 0;
}

.header-cart:hover {
  color: var(--gold);
}

.header-cart svg {
  display: block;
}

.header-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  padding: 0 4px;
  animation: badgePop 0.35s cubic-bezier(0.25, 0, 0.25, 1);
}

@keyframes badgePop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

/* ========== CART PAGE ========== */
.cart-section {
  padding-bottom: var(--section-padding);
}

.cart-section h1 {
  margin-bottom: 3rem;
}

.cart-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.cart-table thead th {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-align: left;
  padding: 0 1rem 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

.cart-table thead th:last-child {
  text-align: right;
  padding-right: 0;
}

.cart-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.cart-table tbody tr:hover {
  background: rgba(250, 246, 240, 0.02);
}

.cart-table tbody td {
  padding: 1.5rem 1rem 1.5rem 0;
  vertical-align: middle;
  color: var(--white);
  font-size: 0.9375rem;
}

/* Cart product cell */
.cart-product-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cart-product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--dark);
  flex-shrink: 0;
}

.cart-product-name {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--white);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.cart-product-link:hover .cart-product-name {
  color: var(--gold);
}

/* Cart price */
.cart-price,
.cart-subtotal {
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  white-space: nowrap;
}

.cart-subtotal {
  font-weight: 600;
  color: var(--gold);
}

/* Quantity controls */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 246, 240, 0.04);
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.qty-value {
  min-width: 36px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-body);
  font-feature-settings: 'tnum' 1;
}

/* Remove button */
.btn-remove {
  background: none;
  border: none;
  color: var(--gray);
  padding: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.btn-remove:hover {
  color: var(--error);
}

/* Cart summary */
.cart-summary {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cart-total {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.cart-total strong {
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}

.cart-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cart empty state */
.cart-empty {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cart-empty p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gray-light);
  margin-bottom: 2.5rem;
}

/* Cart page mobile */
@media (max-width: 768px) {
  .cart-table thead {
    display: none;
  }

  .cart-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1.25rem 0;
    position: relative;
  }

  .cart-table tbody td {
    padding: 0;
  }

  .cart-product {
    grid-column: 1 / -1;
  }

  .cart-product-img {
    width: 60px;
    height: 60px;
  }

  .cart-price,
  .cart-qty,
  .cart-subtotal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-price::before,
  .cart-qty::before,
  .cart-subtotal::before {
    content: attr(data-label) ':';
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    font-weight: 600;
  }

  .cart-remove {
    position: absolute;
    top: 1.25rem;
    right: 0;
  }

  .cart-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-actions {
    flex-direction: column;
  }

  .cart-actions .btn {
    text-align: center;
  }
}

/* ========== CHECKOUT PAGE ========== */
.checkout-section {
  padding-bottom: var(--section-padding);
}

.checkout-section h1 {
  margin-bottom: 3rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Checkout form */
.checkout-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.checkout-form legend {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}

.checkout-form .form-group {
  margin-bottom: 2rem;
  position: relative;
}

.checkout-form .form-group label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 0.75rem;
  display: block;
}

.checkout-form .form-group label .required {
  color: var(--gold);
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
  width: 100%;
  background: rgba(250, 246, 240, 0.04);
  border: none;
  border-bottom: 2px solid rgba(250, 246, 240, 0.08);
  border-radius: 4px 4px 0 0;
  padding: 1.25rem 0.75rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  min-height: 56px;
  transition: border-color 0.4s ease, background 0.4s ease;
  outline: none;
}

.checkout-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.checkout-form .form-group select option {
  background: var(--dark);
  color: var(--white);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
  border-bottom-color: var(--gold);
  background: rgba(250, 246, 240, 0.06);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.checkout-form .form-group input::placeholder,
.checkout-form .form-group textarea::placeholder {
  color: rgba(245, 245, 240, 0.2);
}

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

/* Focus underline animation for checkout form */
.checkout-form .form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}

.checkout-form .form-group:focus-within::after {
  width: 100%;
}

/* Error state */
.checkout-form .form-group input.error,
.checkout-form .form-group select.error {
  border-bottom-color: var(--error);
}

.checkout-form .form-error {
  display: none;
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 0.5rem;
}

.checkout-form .form-group input.error ~ .form-error,
.checkout-form .form-group select.error ~ .form-error {
  display: block;
}

.checkout-form #checkout-status {
  color: var(--error);
  font-size: 0.875rem;
  background: rgba(231, 76, 60, 0.08);
  padding: 1rem;
  border-radius: 4px;
  border-left: 3px solid var(--error);
}

/* Delivery cost info */
.delivery-cost {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-light);
  padding: 0.75rem 0;
  margin-bottom: 1rem;
}

.delivery-cost strong {
  color: var(--gold);
  font-weight: 600;
}

/* Checkout submit button */
.btn-checkout {
  width: 100%;
  padding: 20px;
  font-size: 0.9375rem;
  margin-top: 1rem;
}

/* Checkout summary sidebar */
.checkout-summary {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: sticky;
  top: 100px;
}

.checkout-summary h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
}

.checkout-items {
  margin-bottom: 2rem;
}

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

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

.checkout-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--dark);
  flex-shrink: 0;
}

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

.checkout-item-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-item-qty {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.checkout-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  font-feature-settings: 'tnum' 1;
  flex-shrink: 0;
}

/* Checkout totals */
.checkout-totals {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.checkout-subtotal,
.checkout-delivery-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--gray-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0.75rem;
}

.checkout-total strong:last-child {
  color: var(--gold);
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}

@media (max-width: 1024px) {
  .checkout-summary {
    position: static;
  }
}

/* ========== ORDER SUCCESS PAGE ========== */
.order-success-section {
  padding-top: clamp(80px, 12vw, 120px);
  padding-bottom: var(--section-padding);
}

.order-success {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.order-success-icon {
  margin-bottom: 2.5rem;
}

.order-success-icon svg {
  display: inline-block;
  animation: successDraw 0.8s cubic-bezier(0.25, 0, 0.25, 1) forwards;
}

@keyframes successDraw {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.order-success h1 {
  margin-bottom: 1.5rem;
}

.order-number {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.order-number strong {
  color: var(--gold);
  font-size: 1rem;
  font-feature-settings: 'tnum' 1;
}

.order-success .lead {
  margin-bottom: 2.5rem;
}

.order-success-details {
  margin-bottom: 2.5rem;
}

.order-success-details p {
  color: var(--gray-light);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.order-success-contacts {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.order-success-back {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ========== QUANTITY SELECTOR ========== */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 160px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: rgba(201, 168, 76, 0.2);
}

.qty-btn:active {
  background: rgba(201, 168, 76, 0.3);
}

.qty-input {
  width: 64px;
  height: 48px;
  text-align: center;
  background: transparent;
  color: var(--white);
  border: none;
  border-left: 1px solid rgba(201, 168, 76, 0.15);
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  -moz-appearance: textfield;
}

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

.qty-input:focus {
  outline: none;
  background: rgba(201, 168, 76, 0.05);
}

/* ========== PRODUCT ADD-TO-CART BUTTON ========== */
.btn-cart {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.btn-cart:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

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

/* ========== BADGE (HOPE) on product detail ========== */
.product-detail .badge,
.product-image .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 2px;
  z-index: 2;
}

/* ========== FRANSMAN: Hero Decorative Elements ========== */
.hero-frame {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.4;
}

.hero-frame--tl {
  top: 32px;
  left: 32px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.hero-frame--tr {
  top: 32px;
  right: 32px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.hero-frame--bl {
  bottom: 32px;
  left: 32px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.hero-frame--br {
  bottom: 32px;
  right: 32px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero-frame {
    width: 30px;
    height: 30px;
  }
  .hero-frame--tl { top: 16px; left: 16px; }
  .hero-frame--tr { top: 16px; right: 16px; }
  .hero-frame--bl { bottom: 16px; left: 16px; }
  .hero-frame--br { bottom: 16px; right: 16px; }
  .hero-badge { font-size: 0.5rem; margin-bottom: 1rem; }
  .hero-divider { width: 40px; margin-bottom: 1.5rem; }
}

/* ========== FRANSMAN: Brands Marquee Strip ========== */
.brands-strip {
  background: var(--darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}

.brands-strip::before,
.brands-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.brands-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--darker), transparent);
}

.brands-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--darker), transparent);
}

.brands-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: brandsScroll 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.brands-strip-item {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.brands-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-muted);
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes brandsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

@media (max-width: 768px) {
  .brands-strip { padding: 14px 0; }
  .brands-strip-item { padding: 0 1rem; font-size: 0.65rem; letter-spacing: 0.2em; }
}

/* ========== FRANSMAN: Why Us Section ========== */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--darker);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.why-us h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.why-us-item {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.why-us-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-us-item:nth-child(1) { transition-delay: 0s; }
.why-us-item:nth-child(2) { transition-delay: 0.1s; }
.why-us-item:nth-child(3) { transition-delay: 0.2s; }
.why-us-item:nth-child(4) { transition-delay: 0.3s; }

.why-us-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  transition: width 0.4s ease;
}

.why-us-item:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.why-us-item:hover::before {
  width: 100%;
}

.why-us-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  opacity: 0.7;
}

.why-us-icon svg {
  width: 100%;
  height: 100%;
}

.why-us-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-us-item p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .why-us-icon { width: 36px; height: 36px; }
  .why-us-item { padding: 1.5rem 1rem; }
}

/* ========== Section Header (reusable) ========== */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ========== FRANSMAN: Lookbook Gallery ========== */
.lookbook {
  padding: var(--section-padding) 0;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.lookbook-item:hover img {
  transform: scale(1.05);
}

.lookbook-item--tall {
  grid-row: span 2;
}

.lookbook-item--tall img {
  aspect-ratio: auto;
}

.lookbook-item:not(.lookbook-item--tall) img {
  aspect-ratio: 4 / 3;
}

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lookbook-item:hover .lookbook-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lookbook-item--tall {
    grid-row: span 1;
  }
  .lookbook-item--tall img {
    aspect-ratio: 3 / 4;
  }
  .lookbook-caption {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.55rem;
    padding: 1rem 0.75rem 0.75rem;
  }
}

/* ========== FRANSMAN: Visual CTA ========== */
.cta--visual {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(80px, 12vw, 160px) 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23, 32, 25, 0.92) 0%,
    rgba(23, 32, 25, 0.75) 100%
  );
  z-index: 1;
}

.cta--visual .container {
  position: relative;
  z-index: 2;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.cta--visual h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta--visual p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.cta-address {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
}

.cta--visual .cta-buttons {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cta--visual {
    background-attachment: scroll;
    padding: 60px 0;
  }
}

/* ========== FRANSMAN: Instagram Grid ========== */
.insta-grid {
  padding: var(--section-padding) 0 0;
}

.insta-grid-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.insta-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}

.insta-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.8);
}

.insta-grid-item:hover img {
  transform: scale(1.08);
  filter: saturate(1);
}

.insta-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 25, 0.25);
  transition: opacity 0.4s ease;
}

.insta-grid-item:hover::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .insta-grid-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .insta-grid-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== FRANSMAN: Boutique Gallery (About) ========== */
.boutique-gallery {
  padding: clamp(1.5rem, 3vw, 3rem) 0;
}

.boutique-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1vw, 1rem);
}

.boutique-gallery-item {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}

.boutique-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.boutique-gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .boutique-gallery-grid {
    grid-template-columns: 1fr;
  }
  .boutique-gallery-item {
    aspect-ratio: 16 / 9;
  }
}

/* ========== FRANSMAN: Contacts Map ========== */
.contacts-map {
  padding: var(--section-padding) 0 0;
}

.contacts-map h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.map-address {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.map-wrapper {
  width: 100%;
  height: 400px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  filter: grayscale(0.3) brightness(0.85);
  transition: filter 0.4s ease;
}

.map-wrapper:hover {
  filter: grayscale(0) brightness(1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .map-wrapper { height: 300px; }
}

/* Performance: reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand-marquee,
  .section-marquee {
    display: none;
  }

  .product-card {
    opacity: 1;
    transform: none;
  }

  .philosophy-item {
    opacity: 1;
    transform: none;
  }

  .why-us-item {
    opacity: 1;
    transform: none;
  }

  .brands-strip-inner {
    animation: none;
  }
}


/* ========== MOBILE PRODUCT FIX v2 (11.02.2026) ========== */
@media (max-width: 768px) {
  /* Hide Telegram from sticky bar */
  .product-detail .product-actions .btn-primary,
  .product-detail .product-actions .btn-secondary {
    display: none !important;
  }
  
  /* Sticky bar: qty + cart, clear and visible */
  .product-detail .product-actions {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--darker, #121A14) !important;
    padding: 12px 16px !important;
    gap: 10px !important;
    z-index: 8000 !important;
    flex-direction: row !important;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.6) !important;
    border-top: 1px solid var(--border-light, rgba(242,237,228,0.13)) !important;
  }
  
  .product-detail .product-actions .qty-selector {
    flex: 0 0 auto;
    max-width: none;
  }
  
  .product-detail .product-actions .qty-btn {
    width: 40px !important;
    height: 44px !important;
  }
  
  .product-detail .product-actions .qty-input {
    width: 44px !important;
    height: 44px !important;
  }
  
  .product-detail .product-actions .btn-cart {
    flex: 1 !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    max-width: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 44px;
  }
  
  /* Content padding so sticky doesn't cover content */
  .product-detail .product-info {
    padding-bottom: 90px !important;
  }
  
  /* Telegram float above sticky bar */
  .telegram-float {
    bottom: 80px !important;
    z-index: 8001 !important;
  }
}

/* ========== PRODUCT PAGE: hide marquee, fix sticky (11.02.2026 v3) ========== */
@media (max-width: 768px) {
  /* Hide fixed marquee on product pages — sticky CTA needs this space */
  .product-detail ~ .footer ~ .brand-marquee,
  body:has(.product-detail) .brand-marquee {
    display: none !important;
  }
  
  /* Bump sticky z-index above everything */  
  .product-detail .product-actions {
    z-index: 9500 !important;
  }
}

/* ========== CHECKOUT MOBILE FIX (11.02.2026) ========== */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  .checkout-section {
    overflow-x: hidden;
  }
  
  .checkout-section .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .checkout-form fieldset {
    min-width: 0;
  }
  
  .checkout-form .form-group input,
  .checkout-form .form-group select,
  .checkout-form .form-group textarea {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }
  
  /* Summary items — prevent overflow */
  .checkout-item {
    gap: 0.75rem;
    flex-wrap: nowrap;
  }
  
  .checkout-item-img {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .checkout-item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  
  .checkout-item-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8rem;
  }
  
  .checkout-item-price {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
  }
  
  .checkout-summary {
    padding: 1rem !important;
  }
  
  /* Global overflow prevention */
  html, body {
    overflow-x: hidden;
  }
}

/* ============================================================
   SIZE SELECTOR (product page)
   ============================================================ */
.product-sizes {
  margin: 1.5rem 0;
}
.product-sizes .size-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary, #888);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.size-btn {
  min-width: 48px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border, #333);
  background: transparent;
  color: var(--text, #fff);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.size-btn:hover {
  border-color: var(--accent, #C5A55A);
  color: var(--accent, #C5A55A);
}
.size-btn.active {
  background: var(--accent, #C5A55A);
  border-color: var(--accent, #C5A55A);
  color: var(--bg, #0D1210);
  font-weight: 600;
}

/* Size display in cart */
.cart-product-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cart-product-size {
  font-size: 0.8rem;
  color: var(--text-secondary, #888);
}

/* Size display in checkout */
.checkout-item-size {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary, #888);
  margin-top: 0.15rem;
}

/* Size hint message */
.size-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--accent, #C5A55A);
  margin-top: 0.5rem;
  font-weight: 500;
}
.size-hint-shake {
  animation: hintShake 0.5s ease;
}
@keyframes hintShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* Disabled cart button */
.btn-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-cart:disabled:hover {
  transform: none;
}

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.quick-view-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.quick-view-overlay.active {
  opacity: 1;
  visibility: visible;
}
.quick-view-modal {
  background: var(--card-bg, #1A1F1C);
  border: 1px solid var(--border, #333);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  position: relative;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.quick-view-overlay.active .quick-view-modal {
  transform: scale(1);
}
.quick-view-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border, #333);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.2s;
}
.quick-view-close:hover {
  background: var(--accent, #C5A55A);
  color: var(--bg, #0D1210);
}
.quick-view-img {
  width: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.quick-view-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.quick-view-info h3 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.3rem;
  margin: 0;
}
.quick-view-info .product-price {
  font-size: 1.2rem;
  color: var(--accent, #C5A55A);
  font-weight: 600;
}
.quick-view-info .quick-view-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary, #888);
}
.quick-view-info .btn {
  margin-top: auto;
}

@media (max-width: 600px) {
  .quick-view-modal {
    flex-direction: column;
    max-height: 85vh;
  }
  .quick-view-img {
    width: 100%;
    max-height: 250px;
  }
  .quick-view-info {
    padding: 1.25rem;
  }
}

/* ============================================================
   NEW BADGE
   ============================================================ */
.product-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent, #C5A55A);
  color: var(--bg, #0D1210);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  z-index: 2;
}

/* ============================================================
   FLY TO CART ANIMATION
   ============================================================ */
.fly-to-cart {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 10000;
  pointer-events: none;
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.header-cart-badge.pulse {
  animation: cartPulse 0.5s ease;
}
@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ============================================================
   STICKY MOBILE CART BAR
   ============================================================ */
.sticky-mobile-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg, #1A1F1C);
    border-top: 1px solid var(--border, #333);
    padding: 10px 16px;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  }
  .sticky-mobile-bar .sticky-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent, #C5A55A);
    white-space: nowrap;
  }
  .sticky-mobile-bar .btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .sticky-mobile-bar .btn:disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body.has-sticky-bar {
    padding-bottom: 70px;
  }
}

/* ============================================================
   TELEGRAM PRODUCT BUTTON
   ============================================================ */
.btn-telegram {
  background: rgba(250, 246, 240, 0.06);
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-telegram:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}
.btn-telegram svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  fill: currentColor;
}

/* ============================================================
   404 PAGE STYLING
   ============================================================ */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.error-content {
  max-width: 500px;
}
.error-code {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 8rem;
  line-height: 1;
  color: var(--accent, #C5A55A);
  margin: 0 0 1rem;
  opacity: 0.3;
}
.error-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.error-content .lead {
  color: var(--text-secondary, #888);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== HIDE TELEGRAM BUTTON IN MOBILE STICKY BAR (17.02.2026) ========== */
@media (max-width: 768px) {
  .product-detail .product-actions .btn-telegram {
    display: none !important;
  }
}
