/* ===========================
   DESIGN SYSTEM — Sochi Green Garden
   Font: Montserrat (Google Fonts)
   Palette: Deep Forest Greens + Warm Sand
   =========================== */

/* Google Fonts loaded via <link> in HTML head with preconnect for better performance */
/* font-display: swap applied automatically by Google Fonts URL parameter */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --c-bg: #faf9f6;
  --c-bg-alt: #f2f0eb;
  --c-surface: #ffffff;
  --c-text: #1a1a18;
  --c-text-secondary: #5c5c56;
  --c-text-muted: #8a8a82;
  --c-accent: #2d6a4f;
  --c-accent-hover: #1b4332;
  --c-accent-light: #d4e8dc;
  --c-accent-subtle: #e8f3ec;
  --c-border: #e5e3de;
  --c-border-light: #edebe6;
  --c-badge-new: #d4a017;
  --c-badge-sale: #c1440e;
  --c-shadow: rgba(26, 26, 24, 0.06);
  --c-shadow-lg: rgba(26, 26, 24, 0.1);
  --c-overlay: rgba(26, 26, 24, 0.55);

  /* Typography */
  --f-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --f-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

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

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: 150ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-base: 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-slow: 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --max-w: 1360px;

  /* Z-index scale */
  --z-base: 1;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
}

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

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

body {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--c-text);
  background-color: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol { list-style: none; }

/* ---------- Skip to content ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s-md);
  background: var(--c-accent);
  color: #fff;
  padding: var(--s-sm) var(--s-md);
  border-radius: var(--r-sm);
  z-index: var(--z-toast);
  font-weight: 500;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: var(--s-md);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s-xl);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--s-md); }
}

/* ---------- Typography ---------- */
.heading-display {
  font-family: var(--f-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.heading-sans {
  font-family: var(--f-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.text-balance {
  text-wrap: balance;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--c-border-light);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background: rgba(250, 249, 246, 0.95);
  box-shadow: 0 4px 24px var(--c-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--c-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.logo-text {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--c-accent);
}

.nav-main {
  display: flex;
  gap: var(--s-xl);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  position: relative;
  padding: var(--s-xs) 0;
  transition: color var(--t-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 1px;
  transition: width var(--t-base);
}

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

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

/* Dropdown */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: 0 10px 30px var(--c-shadow-lg);
  display: flex;
  flex-direction: column;
  padding: var(--s-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-fast);
  z-index: var(--z-overlay);
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  padding: 8px var(--s-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav-dropdown a:hover {
  background: var(--c-accent-subtle);
  color: var(--c-accent);
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
  display: none;
  flex-direction: column;
  padding-left: var(--s-lg);
  gap: var(--s-xs);
  margin-top: var(--s-sm);
}

.mobile-nav-dropdown.open {
  display: flex;
}

.mobile-nav-dropdown a {
  font-size: 1rem;
  padding: var(--s-xs) 0;
  color: var(--c-text-secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
  position: relative;
}

.btn-icon:hover {
  background: var(--c-accent-subtle);
}

.btn-icon:active {
  transform: scale(0.95);
}

.btn-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-text);
  stroke-width: 1.8;
  fill: none;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--c-accent);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--t-fast), transform var(--t-fast);
}

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

/* Burger */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-full);
  transition: background var(--t-fast);
}

.burger:hover { background: var(--c-accent-subtle); }

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-fast);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-bg);
  z-index: var(--z-overlay);
  padding: var(--s-xl) var(--s-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  transform: translateX(100%);
  transition: transform var(--t-slow);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  font-size: 1.25rem;
  padding: var(--s-md) 0;
  border-bottom: 1px solid var(--c-border-light);
}

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

/* ---------- HERO ---------- */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s-3xl);
  padding-top: 72px;
}

.hero-content {
  padding: var(--s-4xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  background: var(--c-accent-subtle);
  color: var(--c-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--s-xs) var(--s-md);
  border-radius: var(--r-full);
  margin-bottom: var(--s-lg);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: var(--s-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: var(--s-2xl);
}

.hero-cta-group {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--s-2xl);
  margin-top: var(--s-3xl);
  padding-top: var(--s-xl);
  border-top: 1px solid var(--c-border);
}

.stat-num {
  font-family: var(--f-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
}

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

.hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: var(--s-xl) 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 24, 0.08) 100%);
  pointer-events: none;
}

/* Founder Badge in Hero */
.hero-founder-badge {
  position: absolute;
  bottom: var(--s-3xl);
  left: calc(var(--s-xl) * -1);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px 12px 12px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: var(--s-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.hero-founder-badge .founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform var(--t-base);
}

.hero-founder-badge:hover .founder-avatar {
  transform: scale(1.1) rotate(5deg);
}

.founder-badge-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-name {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1.1;
}

.founder-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

@media (max-width: 768px) {
  .hero-founder-badge {
    left: var(--s-md);
    bottom: var(--s-xl);
    padding: 8px 16px 8px 8px;
  }
  .hero-founder-badge .founder-avatar {
    width: 44px;
    height: 44px;
  }
  .founder-name { font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--s-xl);
  }
  .hero-content { padding: var(--s-2xl) 0 0; }
  .hero-image {
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: var(--r-lg);
  }
  .hero-stats { gap: var(--s-xl); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.95) translateY(2px);
}

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none;
}

.btn-primary:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.25);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  left: 100%;
  transition: left 0.6s ease;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border);
}

.btn-secondary:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-subtle);
}

.btn-sm {
  font-size: 0.8rem;
  padding: 10px 20px;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}

/* ---------- SECTION HEADING ---------- */
.section-heading {
  text-align: center;
  margin-bottom: var(--s-3xl);
  max-width: 640px;
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-sm);
}

.section-heading h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: var(--s-md);
}

.section-heading p {
  font-size: 1rem;
  color: var(--c-text-secondary);
  line-height: 1.65;
}

/* ---------- CATEGORY FILTER ---------- */
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
  margin-bottom: var(--s-2xl);
  flex-wrap: wrap;
}

.filter-pills {
  display: flex;
  gap: var(--s-sm);
  flex-wrap: wrap;
}

.filter-pill {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--c-text-secondary);
  border: 1.5px solid var(--c-border);
  transition: all var(--t-fast);
}

.filter-pill:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.filter-pill.active {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

.filter-pill:active {
  transform: scale(0.96);
}

.sort-select {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-border);
  background: var(--c-surface);
  color: var(--c-text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c5c56' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ---------- PRODUCT GRID ---------- */
.products-section {
  padding: var(--s-4xl) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-xl);
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md);
  }
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--t-bounce), box-shadow var(--t-base), opacity var(--t-base), border var(--t-base);
  will-change: transform, box-shadow;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 54px rgba(26, 26, 24, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 2;
}

.product-card:active {
  transform: translateY(-4px) scale(1.005);
  transition-duration: 100ms;
}

.product-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--c-bg-alt);
  cursor: pointer;
}

.product-image-wrap img.img-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-base), opacity var(--t-base);
}

.product-image-wrap img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--t-base), transform var(--t-base);
  z-index: 2;
}

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

.product-image-wrap:hover img.img-hover {
  opacity: 1;
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: var(--s-md);
  left: var(--s-md);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  z-index: 2;
}

.product-badge.new {
  background: var(--c-badge-new);
  color: #fff;
}

.product-badge.sale {
  background: var(--c-badge-sale);
  color: #fff;
}

.product-badge.popular {
  background: var(--c-accent);
  color: #fff;
}

.product-quick-add {
  position: absolute;
  bottom: var(--s-md);
  left: var(--s-md);
  right: var(--s-md);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-base);
  z-index: 10;
}

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

.product-quick-add .btn {
  width: 100%;
  font-size: 0.85rem;
  padding: 12px;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  color: var(--c-text);
  border: 1px solid rgba(255,255,255,0.3);
}

.product-quick-add .btn:hover {
  background: var(--c-accent);
  color: #fff;
}

.product-info {
  padding: var(--s-md) var(--s-md) var(--s-lg);
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--s-sm);
  line-height: 1.3;
}

.product-name a {
  transition: color var(--t-fast);
}

.product-name a:hover {
  color: var(--c-accent);
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-sm);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}

.product-price-old {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

/* ---------- FEATURES / ADVANTAGES ---------- */
.features {
  padding: var(--s-4xl) 0;

/* ---------- ABOUT OWNER (NATALYA) ---------- */
.about-section {
  padding: var(--s-4xl) 0;
  position: relative;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2xl);
  align-items: center;
  background: var(--c-surface);
  padding: var(--s-2xl);
  border-radius: var(--r-xl);
  box-shadow: 0 12px 36px var(--c-shadow);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.about-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(26,26,24,0.12);
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-4xl);
    padding: var(--s-4xl);
  }
}

.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-md);
}

.owner-avatar {
  width: 80%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(45, 106, 79, 0.2);
  border: 4px solid var(--c-surface);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}

.about-image:hover .owner-avatar {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 24px 50px rgba(45, 106, 79, 0.35);
}

.about-text .section-tag {
  margin-bottom: var(--s-xs);
}

.about-text h2 {
  font-family: var(--f-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--s-md);
}

.about-text p {
  color: var(--c-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--s-md);
}
  background: var(--c-bg-alt);
}

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

.feature-item {
  display: flex;
  gap: var(--s-lg);
  padding: var(--s-xl);
  background: var(--c-surface);
  border-radius: var(--r-lg);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--c-shadow);
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--c-accent-subtle);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-accent);
  stroke-width: 1.8;
  fill: none;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text {
  font-size: 0.88rem;
  color: var(--c-text-secondary);
  line-height: 1.6;
}

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

/* ---------- SEO TEXT SECTION ---------- */
.seo-section {
  padding: var(--s-4xl) 0;
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: start;
}

.seo-content h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--s-lg);
}

.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: var(--s-xl);
  margin-bottom: var(--s-sm);
}

.seo-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--s-lg);
  margin-bottom: var(--s-xs);
  color: var(--c-accent);
}

.seo-content p {
  font-size: 0.95rem;
  color: var(--c-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--s-md);
  max-width: 65ch;
}

.seo-content strong {
  color: var(--c-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-content {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: var(--s-4xl) 0;
}

.cta-card {
  background: var(--c-accent);
  border-radius: var(--r-xl);
  padding: var(--s-4xl) var(--s-3xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-2xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-md);
}

.cta-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 50ch;
}

.cta-card .btn {
  background: #fff;
  color: var(--c-accent);
  font-weight: 600;
}

.cta-card .btn:hover {
  background: var(--c-accent-light);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: var(--s-2xl) var(--s-xl);
    text-align: center;
  }
  .cta-card .btn { width: 100%; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #1a1f1c;
  color: rgba(255,255,255,0.7);
  padding: var(--s-4xl) 0 var(--s-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s-2xl);
  margin-bottom: var(--s-3xl);
}

.footer-brand .logo-text {
  color: #fff;
  margin-bottom: var(--s-md);
  display: block;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--s-lg);
  max-width: 30ch;
}

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

.owner-avatar {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

.footer-social a:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.7);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s-lg);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  font-size: 0.88rem;
  margin-bottom: var(--s-md);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-accent);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: var(--s-lg);
}

.footer-legal a {
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-xl);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--s-md);
    text-align: center;
  }
}

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

/* ---------- CART DRAWER ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-overlay);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--c-bg);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-xl);
  border-bottom: 1px solid var(--c-border);
}

.cart-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-md);
}

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

.cart-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--c-border);
  stroke-width: 1.5;
  fill: none;
}

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

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-alt);
}

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

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--c-text-secondary);
  font-variant-numeric: tabular-nums;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--t-fast);
}

.cart-item-qty button:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.cart-item-qty span {
  font-size: 0.9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-top: 4px;
  display: inline-block;
  transition: color var(--t-fast);
}

.cart-remove:hover { color: var(--c-badge-sale); }

.cart-footer {
  padding: var(--s-xl);
  border-top: 1px solid var(--c-border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-md);
}

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

.cart-total-value {
  font-size: 1.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cart-footer .btn {
  width: 100%;
}

/* ---------- PRODUCT MODAL ---------- */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-overlay);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  padding: var(--s-xl);
}

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

.product-modal {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: scale(0.95) translateY(12px);
  transition: transform var(--t-slow);
}

.product-modal-overlay.open .product-modal {
  transform: scale(1) translateY(0);
}

.modal-image {
  aspect-ratio: 4 / 5;
  background: var(--c-bg-alt);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  overflow: hidden;
}

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

.modal-content {
  padding: var(--s-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: var(--s-md);
  right: var(--s-md);
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  box-shadow: 0 4px 12px var(--c-shadow);
}

.modal-close:hover {
  background: var(--c-accent-subtle);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-text);
  stroke-width: 2;
  fill: none;
}

.modal-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-accent);
  margin-bottom: var(--s-sm);
}

.modal-title {
  font-family: var(--f-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-md);
}

.modal-desc {
  font-size: 0.92rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s-xl);
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--s-xl);
  font-variant-numeric: tabular-nums;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-bottom: var(--s-xl);
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: var(--s-sm) 0;
  border-bottom: 1px solid var(--c-border-light);
}

.modal-detail-label { color: var(--c-text-muted); min-width: 100px; flex-shrink: 0; }
.modal-detail-value { font-weight: 500; text-align: right; }

@media (max-width: 768px) {
  .product-modal {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: var(--s-md);
    border-radius: var(--r-lg);
  }
  .modal-image {
    aspect-ratio: 1 / 1;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
  }
  .modal-content { padding: var(--s-xl); }
}

/* ---------- TOAST ---------- */
.toast-container {
  position: fixed;
  bottom: var(--s-xl);
  right: var(--s-xl);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  pointer-events: none;
}

.toast {
  background: var(--c-text);
  color: #fff;
  padding: var(--s-md) var(--s-xl);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  pointer-events: auto;
  transform: translateY(12px);
  opacity: 0;
  animation: toastIn 0.3s var(--t-base) forwards;
}

.toast.out {
  animation: toastOut 0.25s ease-in forwards;
}

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

@keyframes toastOut {
  to { opacity: 0; transform: translateY(-8px); }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- GRAIN OVERLAY ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--c-text-muted); }

/* ---------- MARQUEE ---------- */
.marquee-section {
  overflow: hidden;
  padding: var(--s-2xl) 0;
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
}

.marquee-track {
  display: flex;
  gap: var(--s-3xl);
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--f-serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--c-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--s-lg);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: var(--r-full);
  flex-shrink: 0;
}

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

/* ---------- TRUST / REVIEWS ---------- */
.reviews-section {
  padding: var(--s-4xl) 0;
  background: var(--c-bg-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-xl);
}

.review-card {
  background: var(--c-surface);
  padding: var(--s-xl);
  border-radius: var(--r-lg);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s-md);
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--c-badge-new);
}

.review-text {
  font-size: 0.92rem;
  color: var(--c-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--s-lg);
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
}

.review-city {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* ---------- CART ANIMATION & TOAST OVERRIDES ---------- */
@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.bump {
  animation: bump 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: var(--c-accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 12px 24px !important;
  border-radius: 50px !important;
  box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3) !important;
  transform: translateY(20px);
  opacity: 0;
  animation: toastIn 0.3s forwards !important;
}

.toast svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

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

.toast.out {
  animation: toastOut 0.3s forwards !important;
}

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

/* ---------- STORYTALE PHOTODACHA ---------- */
.storytale-section {
  padding: var(--s-3xl) 0 var(--s-4xl);
  background: var(--c-bg-alt);
  font-family: var(--f-sans);
}

.storytale-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.storytale-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.storytale-hero .section-tag {
  display: inline-block;
  margin-bottom: 1rem;
  background: rgba(45, 106, 79, 0.1);
  color: var(--c-accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.storytale-hero h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}
.storytale-hero p {
  font-size: 1.2rem;
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 5rem;
}

.story-text-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.story-text-wrap p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}
.story-text-wrap h3 {
  font-size: 1.8rem;
  color: var(--c-primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.story-images-1 {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.story-images-1 img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.story-images-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.story-images-2 img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.story-images-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.story-images-3 img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}
.story-images-3 img:nth-child(2) {
  transform: scale(1.08);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  z-index: 2;
}

@media (max-width: 768px) {
  .storytale-hero { margin-bottom: 2rem; }
  .story-block { margin-bottom: 3rem; gap: 1.5rem; }
  .story-images-2, .story-images-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .story-images-3 img:nth-child(2) {
    transform: none;
  }
  .story-images-1 img { height: 40vh; }
  .storytale-hero h2 {
    font-size: 2.2rem;
  }
}

/* ---------- NEWS & VIDEO SECTION ---------- */
.news-section {
  padding: var(--s-4xl) 0;
  background: var(--c-bg);
}

.feed-grid {
  columns: 4;
  column-gap: var(--s-md);
}

@media (max-width: 900px) {
  .feed-grid { columns: 3; }
}
@media (max-width: 768px) {
  .feed-grid { columns: 2; }
}
@media (max-width: 480px) {
  .feed-grid { columns: 1; }
}

.feed-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-bg-alt);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform var(--t-base), box-shadow var(--t-base);
  break-inside: avoid;
  margin-bottom: var(--s-md);
  display: block;
}

/* Фотографии оставляем квадратными */
.feed-item:not(.feed-video) {
  aspect-ratio: 1 / 1;
}

.feed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  display: block;
}

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

.feed-video {
  width: 100%;
  height: auto;
}

.feed-video video {
  width: 100%;
  height: auto;
  display: block;
}

.feed-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--t-fast);
}

.feed-item:hover .feed-icon {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.feed-icon svg {
  width: 18px;
  height: 18px;
}

.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 36, 30, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}
.feed-item:hover .hover-overlay {
  opacity: 1;
}

.video-caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 80%);
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 1rem;
  font-family: var(--f-serif);
  font-weight: 500;
  z-index: 5;
  pointer-events: none;
}

/* ========== HERO FULLWIDTH ========== */
.hero-fullwidth {
  position: relative;
  min-height: 80vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 1;
}
.hero-fullwidth .hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-fullwidth .hero-content {
  max-width: 600px;
  color: #fff;
}
.hero-fullwidth .hero-desc {
  color: rgba(255,255,255,0.9);
}

/* ========== CARD SLIDER ========== */
.product-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slider-images, .slider-zones {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.slider-img.active {
  opacity: 1;
  z-index: 1;
}
.slider-zones {
  display: flex;
  z-index: 3;
  cursor: pointer;
}
.slider-zones .zone {
  flex: 1;
  height: 100%;
}
.slider-dots {
  position: absolute;
  top: 12px;
  bottom: auto;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.product-image-wrap:hover .slider-dots {
  opacity: 1;
}
.slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s;
}
.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ========== SLIDER ARROWS ========== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
  font-size: 16px;
  color: var(--c-text);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { transform: translateY(-50%) scale(1.1); background: #fff; }
.slider-arrow:active { transform: translateY(-50%) scale(0.95); }

@media (hover: none) and (pointer: coarse) {
  .slider-arrow { opacity: 0.9; pointer-events: auto; }
}
.product-image-wrap:hover .slider-arrow { opacity: 1; pointer-events: auto; }

.slider-arrow.prev { left: 8px; }
.slider-arrow.next { right: 8px; }

/* ========== MODAL GALLERY ========== */
.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  background: var(--c-bg);
}
.modal-gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
@media (min-width: 768px) {
  .product-modal {
    flex-direction: row;
    max-width: 900px;
    height: 80vh;
  }
  .modal-gallery {
    flex: 1;
    overflow-y: auto;
    padding: var(--s-lg);
  }
  .modal-gallery::-webkit-scrollbar {
    width: 6px;
  }
  .modal-gallery::-webkit-scrollbar-thumb {
    background: var(--c-border);
    border-radius: 10px;
  }
  .modal-content {
    flex: 1;
    max-width: 400px;
    overflow-y: auto;
  }
}

