/* MEF Mobili - Demo Theme */

:root {
  --color-dark: #1a1a1a;
  --color-dark-soft: #2d2d2d;
  --color-cream: #f7f5f2;
  --color-white: #ffffff;
  --color-accent: #8b7355;
  --color-accent-light: #a89070;
  --color-gray: #6b6b6b;
  --color-gray-light: #e8e6e3;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hero: 'Bodoni Moda', 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

body:has(.page-loader:not(.is-hidden)) {
  overflow: hidden;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.page-loader-logo {
  width: 120px;
  height: auto;
  animation: loader-logo-pulse 1.8s ease-in-out infinite;
}

.page-loader-bar {
  width: 160px;
  height: 2px;
  background: var(--color-gray-light);
  border-radius: 2px;
  overflow: hidden;
}

.page-loader-progress {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  animation: loader-progress 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.page-loader-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gray);
}

@keyframes loader-logo-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes loader-progress {
  0% { width: 0; transform: translateX(0); }
  50% { width: 70%; transform: translateX(0); }
  100% { width: 100%; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-logo {
    animation: none;
    opacity: 1;
  }

  .page-loader-progress {
    animation: none;
    width: 100%;
  }

  .page-loader {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
}

body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray);
  max-width: 600px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header.header-compact {
  transform: translateY(0);
}

.header.header-compact .header-inner {
  height: 64px;
}

.header.header-compact .logo img {
  height: 52px;
}

.header.header-compact .nav-link {
  font-size: 0.74rem;
  padding: 8px 12px;
}

.header-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  z-index: 1001;
  transition: width 0.12s linear;
  box-shadow: 0 0 12px rgba(139, 115, 85, 0.45);
}

.header.scrolled .header-progress {
  height: 3px;
}

.header-bar {
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.header:not(.scrolled) .header-bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header.scrolled .header-bar {
  border-bottom-color: var(--color-gray-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.scrolled .logo {
  transform: scale(0.96);
}

.logo img {
  height: 70px;
  width: auto;
  transition: filter var(--transition), height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

.header.scrolled .logo img {
  filter: none;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  transition: color var(--transition), padding 0.45s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.45s ease;
  padding: 10px 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  cursor: pointer;
}

.header.scrolled .nav-link {
  color: var(--color-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active::after {
  transform: scaleX(1);
  height: 2px;
  background: var(--color-accent);
}

.header:not(.scrolled) .nav-link.active::after {
  background: var(--color-white);
}

.header.scrolled .nav-link.active::after {
  background: var(--color-dark);
}

.nav-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.7;
  transition: transform var(--transition);
}

.nav-item.has-mega:hover .nav-link svg,
.nav-item.has-mega.mega-open .nav-link svg,
.nav-item.has-mega.open .nav-link svg,
.nav-item.has-dropdown:hover .nav-link svg,
.nav-item.has-dropdown.dropdown-open .nav-link svg,
.nav-item.has-dropdown.open .nav-link svg {
  transform: rotate(180deg);
}

/* Nav Dropdown (Koleksiyonlar) */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 1003;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown.dropdown-open .nav-dropdown,
.nav-item.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

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

.nav-dropdown-all {
  border-top: 1px solid var(--color-gray-light);
  margin-top: 4px;
  padding-top: 12px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent) !important;
}

.nav-dropdown-all:hover {
  color: var(--color-dark) !important;
}

/* Mega Menu */
.nav-item {
  position: relative;
}

.nav-item.has-mega::after {
  content: '';
  position: fixed;
  top: calc(var(--header-height) - 8px);
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1001;
  pointer-events: none;
}

.nav-item.has-mega:hover::after,
.nav-item.has-mega.mega-open::after {
  height: 520px;
  pointer-events: auto;
}

.mega-menu {
  position: fixed;
  top: calc(var(--header-height) - 1px);
  left: 0;
  right: 0;
  z-index: 1002;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega.mega-open .mega-menu,
.nav-item.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.mega-menu-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-light);
}

.mega-menu-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.mega-menu-all {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: color var(--transition);
}

.mega-menu-all:hover {
  color: var(--color-dark);
}

.mega-menu-collections .mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mega-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/10;
}

.mega-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.mega-card:hover .mega-card-image {
  transform: scale(1.06);
}

.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--color-white);
}

.mega-card-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.mega-card-desc {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.mega-card-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.mega-card:hover .mega-card-link {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-products .mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mega-product {
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-cream);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mega-menu-products .mega-product {
  display: flex;
  align-items: center;
  text-align: left;
  background: transparent;
  border: 1px solid var(--color-gray-light);
  border-radius: 4px;
  padding: 14px 18px;
  overflow: visible;
}

.mega-menu-products .mega-product:hover {
  transform: none;
  box-shadow: none;
  background: var(--color-cream);
  border-color: var(--color-accent);
}

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

.mega-product-image {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

.mega-menu-products .mega-product-image {
  display: none;
}

.mega-product-name {
  display: block;
  padding: 14px 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color var(--transition);
}

.mega-menu-products .mega-product-name {
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 600;
}

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

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

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

.mega-category-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gray-light);
}

.mega-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-category-list li + li {
  margin-top: 8px;
}

.mega-category-list a,
.mega-category-list .mega-category-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: color var(--transition);
}

.mega-category-list .mega-category-item {
  display: block;
  cursor: default;
}

.mega-category-list a:hover {
  color: var(--color-accent);
}

/* Collections modules page */
.collections-modules-page {
  background: var(--color-white);
}

.collections-modules-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.collections-modules-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.collections-modules-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.1;
}

.collections-modules-lead {
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.collections-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-light);
}

.collections-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.collections-sidebar {
  position: sticky;
  top: 110px;
}

.collections-sidebar-block {
  padding: 22px 20px;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
}

.collections-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.collections-category-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collections-category-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--color-gray);
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.collections-category-link:hover,
.collections-category-link.is-active {
  color: var(--color-dark);
  border-left-color: var(--color-accent);
  background: rgba(0, 0, 0, 0.03);
}

.collections-main {
  min-width: 0;
}

.collections-filter-chip {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--color-gray-light);
  color: var(--color-dark-soft);
  background: var(--color-cream);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.collections-filter-chip:hover,
.collections-filter-chip.is-active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

.collections-modules {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.collection-module {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-gray-light);
}

.collection-module:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.collection-module-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.collection-module-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.collection-module-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.collection-module-desc {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 560px;
}

.collection-module-detail {
  flex-shrink: 0;
}

.collection-module-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.collection-module-group-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gray-light);
}

.collection-module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.collection-module-product {
  background: var(--color-cream);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-module-tile {
  display: block;
  text-decoration: none;
  color: inherit;
}

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

.collection-module-product-image {
  aspect-ratio: 1;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

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

.collection-module-product-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  padding: 12px 14px 4px;
  line-height: 1.35;
  text-align: center;
  border-top: 1px solid rgba(139, 115, 85, 0.12);
}

.collection-module-product-room {
  display: block;
  padding: 0 14px 12px;
  font-size: 0.75rem;
  color: var(--color-gray);
  text-align: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

.header.scrolled .menu-toggle span {
  background: var(--color-dark);
}

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

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

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

/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}

.hero-slide.active .hero-slide-bg {
  animation: heroKenBurns var(--hero-interval, 5s) ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.16);
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(26, 26, 26, 0.05) 0%,
    rgba(26, 26, 26, 0.15) 50%,
    rgba(26, 26, 26, 0.35) 100%
  );
}

.hero-product-link,
.hero-product-name {
  position: absolute;
  left: 50px;
  bottom: 40px;
  z-index: 5;
  font-family: var(--font-hero);
  font-size: clamp(3.25rem, 11vw, 7rem);
  font-weight: 400;
  letter-spacing: clamp(0.15rem, 1.4vw, 0.75rem);
  line-height: 1;
  color: var(--color-white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s, color 0.25s ease;
}

.hero:has(.hero-dots) .hero-product-link,
.hero:has(.hero-dots) .hero-product-name {
  bottom: 150px;
}

.hero-product-link {
  text-decoration: none;
  pointer-events: auto;
}

.hero-product-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.hero-slide.active .hero-product-link,
.hero-slide.active .hero-product-name {
  opacity: 1;
  transform: translateY(0);
}

/* Homage-style slider controls */
.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  left: 50px;
  bottom: 50px;
  display: flex;
  gap: 15px;
  pointer-events: auto;
}

.hero-dot-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}

.hero-dot-wrap.active .hero-dot {
  background: var(--color-white);
  border-color: var(--color-white);
}

.hero-dot-timer {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-dot-wrap:not(.active) .hero-dot-timer {
  display: none;
}

.hero-dot-timer svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hero-dot-timer circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 56.5487;
  stroke-dashoffset: 56.5487;
}

.hero-dot-wrap.active.is-timing .hero-dot-timer circle {
  animation: heroDotTimer var(--hero-interval, 5s) linear forwards;
}

@keyframes heroDotTimer {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-page-counter {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.hero-current-page {
  color: rgba(255, 255, 255, 0.85);
}

.hero-page-separator,
.hero-total-pages {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.3);
}

.hero-arrows {
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  right: 50px;
  width: 50px;
  height: 50px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
  overflow: visible;
  pointer-events: auto;
  transition: border-color 0.3s ease;
}

.hero-prev {
  top: calc(50% - 60px);
}

.hero-next {
  top: calc(50% + 10px);
}

.hero-arrow::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.3s ease, left 0.3s ease, right 0.3s ease, background-color 0.3s ease;
}

.hero-arrow::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  transition: left 0.3s ease, right 0.3s ease, border-color 0.3s ease;
}

.hero-prev::after {
  left: -35px;
}

.hero-prev::before {
  transform: rotate(-45deg);
  left: -35px;
  top: 20px;
}

.hero-next::after {
  right: -35px;
}

.hero-next::before {
  transform: rotate(135deg);
  right: -35px;
  top: 20px;
}

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

.hero-prev:hover::after {
  width: 30px;
  left: 10px;
  background: var(--color-white);
}

.hero-prev:hover::before {
  left: 10px;
  border-color: var(--color-white);
}

.hero-next:hover::after {
  width: 30px;
  right: 10px;
  background: var(--color-white);
}

.hero-next:hover::before {
  right: 10px;
  border-color: var(--color-white);
}

/* Home categories — Selimoğlu-style tabs */
.home-categories {
  background: var(--color-white);
  padding-top: 0;
  padding-bottom: 0;
}

.home-categories-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-categories-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.home-categories-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
}

.home-categories-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 28px;
  margin-top: 32px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.home-categories-tab {
  background: none;
  border: none;
  padding: 14px 2px;
  margin-bottom: -1px;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--color-gray);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.home-categories-tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-categories-tab:hover {
  color: var(--color-dark);
}

.home-categories-tab.is-active {
  color: var(--color-dark);
}

.home-categories-tab.is-active::after {
  transform: scaleX(1);
}

.home-categories-tab:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.home-categories-stage {
  position: relative;
  margin-top: 0;
}

.home-category-panel {
  animation: homeCategoryFadeIn 0.5s ease;
}

.home-category-panel[hidden] {
  display: none !important;
}

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

.home-category-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px 56px;
  align-items: center;
}

.home-category-panel-grid--reverse {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.home-category-panel-grid--reverse .home-category-panel-content {
  order: 1;
}

.home-category-panel-grid--reverse .home-category-panel-media {
  order: 2;
}

.home-category-panel-media {
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-cream);
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
}

.home-category-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-category-panel.is-active .home-category-panel-media:hover img {
  transform: scale(1.03);
}

.home-category-panel-content {
  padding: 8px 0;
}

.home-category-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.home-category-panel-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray);
  margin-bottom: 32px;
  max-width: 440px;
}

.home-category-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-dark);
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.home-category-panel-cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.home-category-panel-cta:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  gap: 14px;
}

.home-category-panel-cta:hover::after {
  transform: translateX(3px);
}

/* Homepage category journey */
.home-categories {
  background: var(--color-white);
  padding-top: 0;
  padding-bottom: 0;
}

.home-categories-stage {
  display: flex;
  flex-direction: column;
}

.home-category-block {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: clamp(88px, 12vh, 120px) 0 clamp(48px, 6vh, 72px);
  background: var(--color-white);
}

.home-category-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;
  --blob-shift-x: -50%;
  width: clamp(560px, 78vw, 1040px);
  height: clamp(560px, 78vw, 1040px);
  transform: translate(var(--blob-shift-x), -50%) scale(0.82);
  border-radius: 50%;
  background: rgba(139, 115, 85, 0.08);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.home-category-block--reverse::before {
  left: auto;
  right: 0;
  --blob-shift-x: 50%;
}

.home-category-block.is-visible::before {
  animation: categoryBlobEnter 1.1s cubic-bezier(0.55, 0.055, 0.675, 1) forwards,
    categoryBlobFloat 9s ease-in-out 1.1s infinite;
}

@keyframes categoryBlobEnter {
  from {
    opacity: 0;
    transform: translate(var(--blob-shift-x), -50%) scale(0.72);
  }

  to {
    opacity: 1;
    transform: translate(var(--blob-shift-x), -50%) scale(1);
  }
}

@keyframes categoryBlobFloat {
  0%, 100% {
    transform: translate(var(--blob-shift-x), -50%) scale(1);
  }

  50% {
    transform: translate(calc(var(--blob-shift-x) + 2%), -52%) scale(1.04);
  }
}

.home-category-block:nth-child(even) {
  background: var(--color-cream);
}

.home-category-block:nth-child(even)::before {
  background: rgba(139, 115, 85, 0.1);
}

.home-category-block > .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0;
}

.home-category-block-grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) 1fr;
  gap: clamp(28px, 4vw, 56px) 0;
  align-items: stretch;
}

.home-category-block--reverse .home-category-block-grid {
  grid-template-columns: 1fr minmax(0, 44%);
  gap: 0 clamp(28px, 4vw, 56px);
}

.home-category-block--reverse .home-category-block-content {
  order: 2;
}

.home-category-block--reverse .home-category-block-media {
  order: 1;
}

.home-category-block-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-height: min(78vh, 840px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.55, 0.055, 0.675, 1),
    transform 0.8s cubic-bezier(0.55, 0.055, 0.675, 1);
  padding: 0 clamp(20px, 3vw, 40px);
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.home-category-block--reverse .home-category-block-content {
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.home-category-block.is-visible .home-category-block-content {
  opacity: 1;
  transform: translateY(0);
}

.home-category-block-index {
  display: block;
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.home-category-block-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.home-category-block-thumbs {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  padding-top: 24px;
}

.home-category-block--reverse .home-category-block-thumbs {
  margin-right: 0;
  margin-left: 0;
}

.home-category-block-thumb {
  flex: 1;
  margin: 0;
  aspect-ratio: 4 / 5;
  min-height: clamp(180px, 24vw, 280px);
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-cream);
  border: 1px solid rgba(232, 230, 227, 0.9);
  box-shadow: 0 10px 32px rgba(26, 26, 26, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.55, 0.055, 0.675, 1),
    transform 0.75s cubic-bezier(0.55, 0.055, 0.675, 1),
    box-shadow 0.35s ease;
}

.home-category-block-thumb:nth-child(1) {
  transition-delay: 0.2s;
}

.home-category-block-thumb:nth-child(2) {
  transition-delay: 0.38s;
}

.home-category-block.is-visible .home-category-block-thumb {
  opacity: 1;
  transform: translateY(0);
}

.home-category-block-thumb:hover {
  box-shadow: 0 14px 40px rgba(26, 26, 26, 0.12);
}

.home-category-block-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-category-block-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray);
  margin-bottom: 32px;
  max-width: 440px;
}

.home-category-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: fit-content;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: none;
  transition: color 0.3s ease, gap 0.3s ease;
  margin-bottom: 0;
}

.home-category-block-cta::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.8em;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.home-category-block-cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.home-category-block-cta:hover {
  color: var(--color-accent);
  gap: 14px;
}

.home-category-block-cta:hover::before {
  width: 5.6em;
  background: var(--color-accent);
}

.home-category-block-cta:hover::after {
  transform: translateX(3px);
}

.home-category-block-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(78vh, 840px);
  align-self: stretch;
  overflow: visible;
}

.home-category-block--reverse .home-category-block-media {
  order: 1;
}

.home-category-block-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-cream);
  border-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  opacity: 0;
  transform: scale(1.04) translateX(24px);
  transition: opacity 0.8s cubic-bezier(0.55, 0.055, 0.675, 1) 0.1s,
    transform 1s cubic-bezier(0.55, 0.055, 0.675, 1) 0.1s;
}

.home-category-block--reverse .home-category-block-main {
  border-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  transform: scale(1.04) translateX(-24px);
}

.home-category-block.is-visible .home-category-block-main {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.home-category-block-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-category-block.is-visible .home-category-block-main:hover img {
  transform: scale(1.03);
}

/* Legacy parallax (unused) */
.home-category-parallax {
  --parallax-y: 0px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 78vh, 800px);
  overflow: hidden;
  background: var(--color-dark);
  color: var(--color-white);
}

.home-category-parallax-image {
  position: absolute;
  z-index: -2;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.03);
  will-change: transform;
}

.home-category-parallax-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 17, 15, 0.82) 0%, rgba(18, 17, 15, 0.48) 48%, rgba(18, 17, 15, 0.08) 100%);
}

.home-category-parallax--right .home-category-parallax-shade {
  background: linear-gradient(270deg, rgba(18, 17, 15, 0.82) 0%, rgba(18, 17, 15, 0.48) 48%, rgba(18, 17, 15, 0.08) 100%);
}

.home-category-parallax-content {
  width: 100%;
  max-width: 1280px;
  padding-top: 56px;
  padding-bottom: 56px;
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-category-parallax--right .home-category-parallax-content {
  text-align: right;
}

.home-category-parallax.is-visible .home-category-parallax-content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-category-parallax-index {
  display: block;
  margin-bottom: 22px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
}

.home-category-parallax .home-category-panel-title {
  max-width: 620px;
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  margin-bottom: 18px;
}

.home-category-parallax--right .home-category-panel-title,
.home-category-parallax--right .home-category-panel-desc {
  margin-left: auto;
}

.home-category-parallax .home-category-panel-desc {
  color: rgba(255, 255, 255, 0.84);
  max-width: 500px;
  margin-bottom: 28px;
}

.home-category-parallax .home-category-panel-cta {
  color: var(--color-white);
  border-color: var(--color-white);
}

.home-category-parallax .home-category-panel-cta:hover {
  color: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

/* Category Showcases — legacy parallax (unused) */
.category-showcases {
  position: relative;
  background: var(--color-cream);
}

.category-showcase-container {
  position: relative;
  z-index: 1;
}

.category-showcase {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  min-height: min(92vh, 860px);
  --enter: 0;
  --exit: 0;
}

.category-showcase.is-section-active .category-showcase-blob {
  animation: categoryBlobMorph 14s ease-in-out infinite;
}

@keyframes categoryBlobMorph {
  0%, 100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; }
  33% { border-radius: 58% 42% 45% 55% / 52% 58% 42% 48%; }
  66% { border-radius: 45% 55% 58% 42% / 42% 48% 52% 58%; }
}

.category-showcase.is-section-active .category-float--sat-1 {
  animation: categoryFloatBob 4.2s ease-in-out infinite;
}

.category-showcase.is-section-active .category-float--sat-2 {
  animation: categoryFloatBob 4.8s ease-in-out infinite 0.4s;
}

.category-showcase.is-section-active .category-float--sat-3 {
  animation: categoryFloatBob 5.4s ease-in-out infinite 0.8s;
}

@keyframes categoryFloatBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* Section bridges */
.category-bridge {
  position: relative;
  height: 72px;
  margin: -36px 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.category-bridge::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(90%, 720px);
  height: 2px;
  transform: translate(-50%, -50%) scaleX(var(--bridge-progress, 0));
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 35%,
    var(--color-accent-light) 65%,
    transparent 100%
  );
  opacity: calc(0.35 + var(--bridge-progress, 0) * 0.65);
  transform-origin: center;
  transition: opacity 0.3s ease;
}

.category-bridge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bridge-from, var(--color-cream)) 0%,
    transparent 45%,
    transparent 55%,
    var(--bridge-to, var(--color-white)) 100%
  );
  opacity: 0.85;
}

.category-bridge--cream-to-white {
  --bridge-from: var(--color-cream);
  --bridge-to: var(--color-white);
}

.category-bridge--white-to-cream {
  --bridge-from: var(--color-white);
  --bridge-to: var(--color-cream);
}

.category-showcase--alt {
  background: var(--color-white);
}

.category-showcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.category-showcase-watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(139, 115, 85, 0.08);
  top: 8%;
  right: 5%;
  opacity: calc(0.2 + var(--scroll-progress, 0) * 0.8);
  transform: translate3d(
    calc((var(--scroll-progress, 0) - 0.5) * 8%),
    calc((1 - var(--scroll-progress, 0)) * 60px),
    0
  );
}

.category-showcase--media-right .category-showcase-watermark {
  right: auto;
  left: 5%;
}

.category-showcase-diagonal {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 120px;
  background: linear-gradient(135deg, transparent 45%, rgba(139, 115, 85, 0.06) 45%, rgba(139, 115, 85, 0.06) 55%, transparent 55%);
  transform: translateY(calc((1 - var(--scroll-progress, 0)) * 40px)) skewY(-3deg);
  opacity: calc(var(--scroll-progress, 0) * 0.9);
}

.category-showcase-layout {
  display: grid;
  grid-template-columns: 68fr 32fr;
  align-items: center;
  min-height: min(85vh, 820px);
  position: relative;
  z-index: 1;
  opacity: calc(var(--enter, 0) * (1 - var(--exit, 0) * 0.65));
  transform: translate3d(
    0,
    calc((1 - var(--enter, 0)) * 72px - var(--exit, 0) * 56px),
    0
  );
  will-change: transform, opacity;
}

.category-showcase:not(.category-showcase--media-right) .category-showcase-media {
  transform: translate3d(
    calc((1 - var(--enter, 0)) * -10% + var(--exit, 0) * 7%),
    0,
    0
  );
}

.category-showcase--media-right .category-showcase-media {
  transform: translate3d(
    calc((1 - var(--enter, 0)) * 10% - var(--exit, 0) * 7%),
    0,
    0
  );
}

.category-showcase:not(.category-showcase--media-right) .category-showcase-content-col {
  transform: translate3d(
    calc((1 - var(--enter, 0)) * 6% - var(--exit, 0) * 4%),
    0,
    0
  );
}

.category-showcase--media-right .category-showcase-content-col {
  transform: translate3d(
    calc((1 - var(--enter, 0)) * -6% + var(--exit, 0) * 4%),
    0,
    0
  );
}

.category-showcase-layout--reverse {
  grid-template-columns: 32fr 68fr;
}

.category-showcase-media {
  position: relative;
  height: min(82vh, 800px);
  min-height: 500px;
  width: 100%;
  padding: 0 12px 0 4px;
}

.category-showcase-media--right {
  padding: 0 4px 0 12px;
}

.category-showcase-stage {
  position: relative;
  height: 100%;
  padding: 20px;
  clip-path: inset(
    calc((1 - var(--scroll-progress, 0)) * 10%) round 28px
  );
  transform: translate3d(
    0,
    calc((var(--scroll-progress, 0) - 0.5) * -4% + (1 - var(--enter, 0)) * 5%),
    0
  ) scale(calc(0.96 + var(--scroll-progress, 0) * 0.04));
}

.category-showcase-media--right .category-showcase-stage {
  clip-path: inset(
    calc((1 - var(--scroll-progress, 0)) * 10%) round 28px
  );
}

.category-showcase-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  height: 78%;
  transform: translate(-50%, -50%) scale(calc(0.85 + var(--scroll-progress, 0) * 0.15));
  background: linear-gradient(145deg, rgba(139, 115, 85, 0.14) 0%, rgba(200, 180, 150, 0.22) 50%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  z-index: 0;
  opacity: calc(0.4 + var(--scroll-progress, 0) * 0.6);
}

.category-showcase-collage {
  position: relative;
  height: 100%;
  z-index: 1;
}

.category-showcase-collage--scene .category-float--scene {
  top: 50%;
  left: 50%;
  width: 92%;
  height: 88%;
  transform: translate3d(
    -50%,
    calc(-50% + (1 - var(--scroll-progress, 0)) * 32px),
    0
  ) scale(calc(0.96 + var(--scroll-progress, 0) * 0.04));
  border-radius: 20px;
  opacity: calc(0.35 + var(--scroll-progress, 0) * 0.65);
  padding: 0;
  overflow: hidden;
}

.category-float--scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  filter: none;
}

.category-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(139, 115, 85, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-float img.is-dekupe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.06));
  padding: 6px;
  box-sizing: border-box;
}

.category-float--main {
  top: 50%;
  left: 50%;
  width: 62%;
  height: 76%;
  transform: translate3d(
    -50%,
    calc(-50% + (1 - var(--scroll-progress, 0)) * 40px),
    0
  ) scale(calc(0.94 + var(--scroll-progress, 0) * 0.06));
  border-radius: 24px;
  z-index: 3;
  opacity: calc(0.3 + var(--scroll-progress, 0) * 0.7);
}

.category-float--sat {
  border-radius: 14px;
  padding: 6px;
  z-index: 4;
  opacity: calc(max(0, (var(--scroll-progress, 0) - 0.2) / 0.8));
}

.category-float--sat-1 {
  width: 24%;
  height: 24%;
  top: 10%;
  right: 14%;
  transform: translate3d(
    calc((1 - var(--scroll-progress, 0)) * 20px + (1 - var(--enter, 0)) * 28px),
    calc((1 - var(--scroll-progress, 0)) * 30px),
    0
  ) rotate(calc(6deg - var(--scroll-progress, 0) * 4deg));
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-float--sat-2 {
  width: 22%;
  height: 22%;
  bottom: 14%;
  right: 10%;
  transform: translate3d(
    calc((1 - var(--scroll-progress, 0)) * -15px - (1 - var(--enter, 0)) * 20px),
    calc((1 - var(--scroll-progress, 0)) * 25px),
    0
  ) rotate(calc(-8deg + var(--scroll-progress, 0) * 6deg));
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.category-float--sat-3 {
  width: 20%;
  height: 20%;
  bottom: 18%;
  left: 10%;
  transform: translate3d(
    calc((1 - var(--scroll-progress, 0)) * 25px + (1 - var(--enter, 0)) * -24px),
    calc((1 - var(--scroll-progress, 0)) * -20px),
    0
  ) rotate(calc(4deg - var(--scroll-progress, 0) * 3deg));
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}

.category-showcase-content-col {
  display: flex;
  align-items: center;
  padding: 40px 8px;
}

.category-showcase:not(.category-showcase--media-right) .category-showcase-content-col {
  justify-content: flex-start;
  padding-left: 16px;
}

.category-showcase--media-right .category-showcase-content-col {
  justify-content: flex-start;
  padding-right: 16px;
}

.category-showcase-card {
  max-width: 480px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translate3d(
    0,
    calc((1 - var(--scroll-progress, 0)) * 50px),
    0
  );
  opacity: calc(0.2 + var(--scroll-progress, 0) * 0.8);
}

.category-showcase--alt .category-showcase-card {
  background: none;
}

.category-showcase-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  opacity: calc(var(--scroll-progress, 0));
  transform: translateY(calc((1 - var(--scroll-progress, 0)) * 16px));
}

.category-showcase-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--color-dark);
  margin-bottom: 0;
  transform: translateY(calc((1 - var(--scroll-progress, 0)) * 40px));
  opacity: calc(0.15 + var(--scroll-progress, 0) * 0.85);
}

.category-showcase-line {
  width: calc(var(--scroll-progress, 0) * 88px);
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  margin: 24px 0;
  border-radius: 2px;
}

.category-showcase-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 28px;
  opacity: calc(max(0, (var(--scroll-progress, 0) - 0.15) / 0.85));
  transform: translateY(calc((1 - min(1, var(--scroll-progress, 0) * 1.15)) * 28px));
}

.category-showcase-btn {
  opacity: calc(max(0, (var(--scroll-progress, 0) - 0.35) / 0.65));
  transform: translateY(calc((1 - min(1, max(0, (var(--scroll-progress, 0) - 0.35) / 0.65))) * 20px));
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }

/* Collection Cards */
.collections {
  background: var(--color-white);
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 4px;
}

.collection-card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card-image {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--color-white);
}

.collection-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.collection-card-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.5;
}

.collection-card-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.collection-card:hover .collection-card-link {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.collection-card:hover .collection-card-link::after {
  transform: translateX(4px);
}

/* Online catalog parallax */
.home-catalog-parallax {
  --parallax-y: 0px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  color: var(--color-white);
  box-sizing: border-box;
}

.home-catalog-parallax-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-catalog-parallax-image {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.04);
  will-change: transform;
}

.home-catalog-parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    rgba(18, 17, 15, 0.55) 0%,
    rgba(18, 17, 15, 0.68) 45%,
    rgba(18, 17, 15, 0.78) 100%
  );
}

.home-catalog-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(72px, 10vh, 120px) 24px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-catalog-parallax.is-visible .home-catalog-parallax-content {
  opacity: 1;
  transform: translateY(0);
}

.home-catalog-parallax-eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.home-catalog-parallax-title {
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.home-catalog-parallax-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 36px;
}

.home-catalog-parallax-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
}

.home-catalog-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-catalog-download-btn:hover {
  background: var(--color-accent-light);
  color: var(--color-white);
  transform: translateY(-2px);
}

.home-catalog-download-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.home-catalog-view-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.home-catalog-view-btn:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

/* About Section */
.about {
  background: var(--color-white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-light), transparent);
}

.about-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.about-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.about-header-line {
  width: 80px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 20px;
}

.about-intro {
  max-width: 900px;
  margin-bottom: 56px;
}

.about-intro p {
  color: var(--color-gray);
  font-size: 1.125rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.about-card {
  background: var(--color-cream);
  padding: 40px 36px;
  border-radius: 8px;
  border: 1px solid rgba(139, 115, 85, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.about-card p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.8;
}

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

.stat-card {
  background: var(--color-white);
  padding: 28px 32px;
  text-align: center;
  border-radius: 4px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--color-accent);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  text-transform: uppercase;
}

/* Newsletter */
.newsletter {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

.newsletter .section-title {
  color: var(--color-white);
}

.newsletter .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  outline: none;
  transition: background var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--color-dark-soft);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}

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

.footer-logo img {
  height: 52px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer-contact-location + .footer-contact-location {
  margin-top: 16px;
}

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

.footer-bottom-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-powered img {
  display: block;
  width: auto;
  height: 22px;
  object-fit: contain;
}

.footer-powered:hover {
  color: var(--color-white);
}

.footer--extended {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.footer-newsletter {
  flex-shrink: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: clamp(40px, 6vh, 56px) 0;
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
}

.footer-newsletter-copy {
  max-width: 520px;
}

.footer-newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer-newsletter-lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter-form {
  flex: 1;
  max-width: 520px;
  margin: 0;
}

.footer-newsletter-input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-newsletter-btn {
  white-space: nowrap;
}

.footer-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 7vh, 72px) 0 clamp(28px, 4vh, 36px);
}

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

.footer-grid--extended {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
  margin-bottom: clamp(32px, 5vh, 56px);
}

.footer-links--two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 20px;
}

.footer-links--two-col a {
  padding: 4px 0;
}

.footer-col {
  min-width: 0;
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-social-item:hover {
  color: var(--color-accent-light);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

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

.footer-social-link:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.footer-certificates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-accent-light);
}

.footer-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-map-title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 16 / 10;
}

.footer-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--color-gray);
  max-width: 600px;
}

.cookie-banner .btn {
  flex-shrink: 0;
  padding: 10px 24px;
}

/* Page Hero (Collection pages) */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  margin-top: var(--header-height);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.page-hero--short {
  height: 38vh;
  min-height: 280px;
}

/* Fairs page */
.fairs-page {
  background: var(--color-cream);
}

.fairs-intro {
  max-width: 720px;
  margin-bottom: 64px;
}

.fairs-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

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

.fairs-lead {
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 540px;
}

.fairs-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.fair-window {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: 14px;
  border: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow);
}

.fair-window-frame {
  position: relative;
  padding: 8px;
  background: var(--color-cream);
  border: 1px solid var(--color-gray-light);
  overflow: hidden;
}

.fair-window-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.fair-window-meta {
  padding: 18px 8px 10px;
}

.fair-window-code {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.fair-window-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.fair-window-date,
.fair-window-place {
  color: var(--color-gray);
  font-size: 0.88rem;
}

.fair-window-date {
  margin-bottom: 2px;
}

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

@media (max-width: 640px) {
  .fairs-list {
    grid-template-columns: 1fr;
  }
}

/* Collections catalog list */
.col-catalog {
  background: var(--color-white);
}

.section.col-catalog {
  padding: 64px 0 96px;
}

.col-catalog-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-gray-light);
}

.col-catalog-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.col-catalog-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-dark);
}

.col-catalog-lead {
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
}

.col-catalog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.col-catalog-item {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--color-gray-light);
  color: var(--color-dark);
  transition: background 0.4s ease;
}

.col-catalog-item:first-child {
  border-top: 1px solid var(--color-gray-light);
}

.col-catalog-item:hover {
  background: var(--color-cream);
}

.col-catalog-item--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.col-catalog-item--reverse .col-catalog-item-visual {
  order: 2;
}

.col-catalog-item--reverse .col-catalog-item-content {
  order: 1;
}

.col-catalog-item-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--color-cream);
}

.col-catalog-item-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: var(--color-cream);
  overflow: hidden;
}

.col-catalog-item-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.col-catalog-item:hover .col-catalog-item-image img {
  transform: scale(1.04);
}

.col-catalog-item-index {
  position: absolute;
  top: 28px;
  left: 28px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-white);
  background: rgba(26, 26, 26, 0.55);
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.col-catalog-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
}

.col-catalog-item-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.col-catalog-item-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.col-catalog-item-desc {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}

.col-catalog-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-gray-light);
}

.col-catalog-item-count {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  font-weight: 500;
}

.col-catalog-item-cta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color 0.3s ease, transform 0.3s ease;
}

.col-catalog-item:hover .col-catalog-item-cta {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Collections page hero */
.col-page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 640px);
  display: flex;
  align-items: flex-end;
  margin-top: var(--header-height);
  color: var(--color-white);
  overflow: hidden;
}

.col-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.col-page-hero:hover .col-page-hero-bg {
  transform: scale(1);
}

.col-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.32) 52%, rgba(0, 0, 0, 0.12) 100%);
}

.col-page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 0 48px;
}

.col-page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.col-page-hero-breadcrumb a {
  color: inherit;
  transition: color 0.3s ease;
}

.col-page-hero-breadcrumb a:hover {
  color: var(--color-white);
}

.col-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  max-width: 12ch;
}

.col-page-hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
}

.col-page-hero--plain {
  min-height: auto;
  align-items: flex-start;
  background: var(--color-white);
  color: var(--color-dark);
  overflow: visible;
}

.col-page-hero--plain .col-page-hero-content {
  padding: calc(var(--header-height) + 32px) 0 40px;
}

.col-page-hero--plain .col-page-hero-breadcrumb {
  color: var(--color-gray);
}

.col-page-hero--plain .col-page-hero-breadcrumb a {
  color: inherit;
}

.col-page-hero--plain .col-page-hero-breadcrumb a:hover {
  color: var(--color-dark);
}

.col-page-hero--plain .col-page-breadcrumb-sep {
  opacity: 0.45;
}

.col-page-hero--plain .col-page-breadcrumb-current {
  color: var(--color-dark);
}

.col-page-hero--plain .col-page-hero-title {
  color: var(--color-dark);
  max-width: none;
}

.col-page-hero--plain .col-page-hero-lead {
  color: var(--color-gray);
}

/* Collections filter bar */
.col-filter-wrap {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-gray-light);
}

.col-filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.col-filter-label {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.col-filter-select-wrap {
  position: relative;
  flex: 1;
  max-width: 360px;
}

.col-filter-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-cream);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 100px;
  padding: 12px 44px 12px 20px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.col-filter-select:hover {
  border-color: rgba(139, 115, 85, 0.35);
  background: var(--color-white);
}

.col-filter-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.12);
  background: var(--color-white);
}

.col-filter-select-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--color-gray);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.col-filter-count {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  white-space: nowrap;
}

.col-catalog-stage {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.col-catalog-group-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-light);
}

.col-catalog-group-index {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

.col-catalog-group-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
}

.catalog-product-gallery {
  margin: 0 0 72px;
  padding: 0 0 72px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Category product cards */
.catalog-page {
  background: var(--color-white);
  padding-top: 48px;
  padding-bottom: 80px;
}

.catalog-card-stage {
  width: 100%;
}

.catalog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.catalog-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ece8e1;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-card:hover .catalog-card-media img {
  transform: scale(1.05);
}

.catalog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.catalog-card:hover .catalog-card-overlay {
  opacity: 1;
}

.catalog-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 24px;
}

.catalog-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark-soft);
}

.catalog-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-dark);
}

.catalog-card-cta {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.catalog-card:hover .catalog-card-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .catalog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .catalog-page {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .catalog-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-card-cta {
    opacity: 1;
    transform: none;
  }
}

.col-catalog-list > .catalog-product-gallery:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.catalog-product-gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.catalog-product-gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-dark);
}

.catalog-product-gallery-count {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-soft);
}

.catalog-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.catalog-gallery-item {
  border: none;
  padding: 0;
  font: inherit;
  text-align: inherit;
}

@media (max-width: 768px) {
  .catalog-product-gallery {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .catalog-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Product / collection detail page */
body.product-detail-page {
  background: var(--color-white);
}

.product-hero {
  background: var(--color-white);
  padding: calc(var(--header-height) + 20px) 0 0;
  position: relative;
  overflow: hidden;
}

.product-hero-container {
  position: relative;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.product-breadcrumb a {
  color: inherit;
  transition: color 0.25s ease;
}

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

.product-breadcrumb-sep {
  opacity: 0.45;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
  min-height: auto;
  max-height: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-gray-light);
}

.product-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  min-height: clamp(420px, 62vh, 640px);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.product-hero-backdrop {
  display: none;
}

.product-hero-stage {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 1;
  min-height: 0;
}

.product-hero-stage img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: min(72vh, 720px);
  object-fit: cover;
  border-radius: 4px;
  filter: none;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-hero-visual:hover .product-hero-stage img {
  transform: scale(1.02);
}

.product-hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 24px 28px;
  z-index: 1;
}

.product-hero-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(139, 115, 85, 0.2);
  background: var(--color-white);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.product-hero-nav:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
  transform: scale(1.05);
}

.product-hero-counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray);
  min-width: 64px;
  text-align: center;
}

.product-hero-panel {
  display: flex;
  align-items: center;
  border-left: none;
  background: transparent;
  flex-shrink: 0;
  padding: clamp(32px, 5vw, 56px) 0 clamp(32px, 5vw, 56px) clamp(32px, 5vw, 56px);
}

.product-hero-panel-inner {
  padding: 0;
  max-width: 440px;
}

.product-hero-panel .product-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.product-hero-collection {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.product-hero-collection a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-hero-collection a:hover {
  color: var(--color-accent);
}

.product-hero-panel .product-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.product-designer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.product-designer-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.product-designer-names a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

.product-designer-names a:hover {
  color: var(--color-dark);
}

.product-hero-panel .product-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-gray);
  margin-bottom: 28px;
}

.product-hero-panel .product-actions {
  margin-top: 32px;
}

.product-inquiry-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: none;
  border: none;
  padding: 0 0 8px;
  cursor: pointer;
  transition: color 0.3s ease, gap 0.3s ease;
}

.product-inquiry-cta::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.2em;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.product-inquiry-cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.product-inquiry-cta:hover {
  color: var(--color-accent);
  gap: 14px;
}

.product-inquiry-cta:hover::before {
  width: 6em;
  background: var(--color-accent);
}

.product-inquiry-cta:hover::after {
  transform: translateX(3px);
}

.product-hero-specs {
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 0;
  border-top: none;
}

.product-hero-specs-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-hero-specs-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-hero-specs-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gray-light), transparent);
}

.product-hero-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.product-hero-spec-item {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(139, 115, 85, 0.1);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.product-hero-spec-item:hover {
  border-color: rgba(139, 115, 85, 0.28);
  background: #f3efe8;
}

.product-hero-spec-item dt {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 8px;
  font-weight: 600;
}

.product-hero-spec-item dd {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin: 0;
}

.product-hero-spec-unit {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gray);
  margin-left: 2px;
}

.product-hero-specs-note {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--color-gray);
  line-height: 1.55;
}

.product-hero-spec-set + .product-hero-spec-set {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-hero-spec-set-label {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-hero-specs[hidden] {
  display: none !important;
}

.product-hero-error {
  margin-top: 24px;
  text-align: center;
}

.product-section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.product-section-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.product-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
}

.product-gallery-strip-section {
  background: var(--color-cream);
  color: var(--color-dark);
  padding-top: 72px;
  padding-bottom: 72px;
}

.product-gallery-strip-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.product-gallery-strip-item {
  scroll-snap-align: unset;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(139, 115, 85, 0.12);
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.product-gallery-strip-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 115, 85, 0.25);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
}

.product-gallery-strip-item.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(139, 115, 85, 0.14);
}

.product-gallery-strip-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-companion-section {
  background: var(--color-white);
  padding-top: 72px;
  padding-bottom: 72px;
}

.product-companion-lead {
  margin-top: 12px;
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.product-companion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-companion-card {
  background: var(--color-cream);
  border: 1px solid rgba(139, 115, 85, 0.1);
  border-radius: 18px;
  overflow: hidden;
}

.product-companion-card-visual {
  aspect-ratio: 4 / 3;
  background: var(--color-white);
  overflow: hidden;
}

.product-companion-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-companion-card:hover .product-companion-main {
  transform: scale(1.03);
}

.product-companion-card-body {
  padding: 24px;
}

.product-companion-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

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

.product-companion-dims {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.product-companion-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-companion-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.product-companion-thumb.is-active,
.product-companion-thumb:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.product-companion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modules-strip {
  background: var(--color-white);
  padding-top: 72px;
  padding-bottom: 96px;
  border-top: 1px solid var(--color-gray-light);
}

.product-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-module-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border: 1px solid rgba(139, 115, 85, 0.1);
  border-radius: 14px;
  overflow: hidden;
  color: var(--color-dark);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26, 26, 26, 0.08);
  border-color: rgba(139, 115, 85, 0.22);
}

.product-module-card.is-current {
  border-color: var(--color-accent);
  box-shadow: 0 14px 40px rgba(139, 115, 85, 0.12);
}

.product-module-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-white);
}

.product-module-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-module-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-module-card-room {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-module-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

.product-module-card-meta {
  font-size: 0.72rem;
  color: var(--color-gray);
}

.product-module-card-link {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color 0.25s ease;
}

.product-module-card:hover .product-module-card-link {
  color: var(--color-accent);
}

.product-gallery-zoom {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(139, 115, 85, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.product-gallery-zoom:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
  transform: scale(1.06);
}

/* Product inquiry modal */
.product-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.product-inquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.product-inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.62);
  backdrop-filter: blur(4px);
}

.product-inquiry-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-white);
  border-radius: 8px;
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-inquiry-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.product-inquiry-modal-close:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.product-inquiry-modal-head {
  margin-bottom: 24px;
}

.product-inquiry-modal-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.product-inquiry-modal-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.product-inquiry-modal-lead {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-page {
  background: var(--color-white);
  padding: calc(var(--header-height) + 32px) 0 64px;
}

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

.product-breadcrumb-sep {
  opacity: 0.4;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.product-gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-cream);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-hero-stage.product-gallery-main,
.product-hero-stage {
  aspect-ratio: auto;
  margin-bottom: 0;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.product-gallery-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-gallery-zoom:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: scale(1.05);
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
}

.product-gallery-thumb {
  width: 88px;
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-cream);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.product-gallery-thumb.is-active {
  border-color: var(--color-accent);
}

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

.product-summary {
  padding-top: 8px;
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.product-desc {
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.product-badges li {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  background: var(--color-cream);
  border-radius: 100px;
  color: var(--color-dark-soft);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-back-btn {
  border-color: var(--color-gray-light);
}

.product-contents-section {
  background: var(--color-cream);
}

.product-section-head {
  margin-bottom: 40px;
}

.product-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.product-section-sub {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.product-contents-list {
  display: grid;
  gap: 24px;
}

.product-content-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.product-content-visual {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--color-cream);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.product-content-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.product-content-visual:hover img {
  transform: scale(1.03);
}

.product-content-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.product-content-collection {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-content-item--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-content-item--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-content-item--link .product-content-collection {
  margin-bottom: 8px;
}

.product-content-link {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
}

.product-content-dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-content-dims div {
  padding: 14px 16px;
  background: var(--color-cream);
  border-radius: 4px;
}

.product-content-dims dt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.product-content-dims dd {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.product-demo-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--color-gray);
  text-align: center;
}

.product-inquiry-section {
  background: var(--color-white);
}

.product-inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.product-inquiry-points {
  margin-top: 24px;
}

.product-inquiry-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--color-gray);
  font-size: 0.95rem;
}

.product-inquiry-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.product-inquiry-form {
  background: var(--color-cream);
  padding: 32px;
  border-radius: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-related-section {
  background: var(--color-cream);
}

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

.product-related-card {
  display: block;
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.product-related-image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.product-related-card:hover .product-related-image {
  transform: scale(1.04);
}

.product-related-body {
  padding: 24px;
}

.product-related-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}

.product-related-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 8px 0 12px;
}

.product-related-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
}

.collections-error {
  color: var(--color-gray);
  text-align: center;
  padding: 24px;
}

/* Designers page */
.designers-page {
  background: var(--color-white);
}

.designers-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.designers-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.designers-lead {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.designers-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.designer-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.designer-tile:hover {
  transform: translateY(-4px);
}

.designer-tile:hover .designer-tile-image {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  filter: grayscale(100%) contrast(1.14);
}

.designer-tile-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background-size: cover;
  background-position: center center;
  background-color: var(--color-cream);
  box-shadow: var(--shadow);
  filter: grayscale(100%) contrast(1.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.designer-tile-image--brand {
  background-size: 42%;
  background-repeat: no-repeat;
  filter: none;
}

.designer-tile:hover .designer-tile-image--brand {
  filter: none;
}

.designer-tile-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}

.designer-tile-role {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
  font-weight: 500;
}

.designer-profile {
  background: var(--color-white);
  padding-top: calc(var(--header-height) + 48px);
}

.designer-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px 64px;
  align-items: center;
}

.designer-portrait {
  aspect-ratio: 3 / 4;
  max-height: 640px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-cream);
  filter: grayscale(100%) contrast(1.08);
  box-shadow: var(--shadow-lg);
}

.designer-portrait--brand {
  background-size: 38%;
  background-repeat: no-repeat;
  filter: none;
}

.designer-profile-copy {
  max-width: 560px;
}

.designer-profile-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.designer-profile-name {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.designer-profile-story {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.designer-profile-about {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.designer-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.designer-profile-tags span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--color-gray-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.designer-products-section {
  background: var(--color-cream);
}

.designer-products-section .product-related-grid {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .designer-profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .designer-portrait {
    max-height: 480px;
  }
}

/* Designer modal */
.designer-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.designer-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.designer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  backdrop-filter: blur(4px);
}

.designer-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.designer-modal.is-open .designer-modal-dialog {
  transform: translateY(0) scale(1);
}

.designer-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.designer-modal-close:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.designer-modal-image {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-cream);
  filter: grayscale(100%) contrast(1.08);
}

.designer-modal-content {
  padding: 40px 36px;
  overflow-y: auto;
}

.designer-modal-role {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.designer-modal-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.designer-modal-story {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-dark-soft);
  margin-bottom: 14px;
}

.designer-modal-detail {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-gray);
  margin-bottom: 24px;
}

.designer-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.designer-modal-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--color-cream);
  color: var(--color-dark-soft);
  border: 1px solid var(--color-gray-light);
}


/* Gallery */
.gallery-section {
  background: var(--color-white);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--color-gray-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.gallery-section + .gallery-section {
  background: var(--color-cream);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  transition: color var(--transition);
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* CTA Section */
.cta-section {
  background: var(--color-cream);
  text-align: center;
}

.cta-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Contact Page */
.contact-page {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.contact-locations-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.contact-location-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-location-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin: 0;
}

.contact-location-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px 48px;
  align-items: start;
}

.contact-location-card--text-only .contact-location-body {
  grid-column: 2;
}

.contact-location-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}

.contact-location-extra {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  padding-top: 8px;
}

.contact-location-map,
.contact-location-map .footer-map-frame,
.contact-map-embed {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-gray-light);
}

.contact-location-map .footer-map-frame,
.contact-map-embed {
  position: relative;
  border: 1px solid #cfcfcf;
}

.contact-map-embed iframe,
.contact-location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

html[dir="rtl"] .contact-location-row {
  direction: ltr;
}

html[dir="rtl"] .contact-location-title,
html[dir="rtl"] .contact-location-body {
  direction: rtl;
  text-align: right;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-dark);
}

.contact-form-status {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #2d6a4f;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px 48px;
  margin-bottom: 28px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form .btn-primary {
  align-self: flex-start;
}

.contact-form-section .form-group {
  gap: 4px;
}

.contact-form-section .form-label {
  color: var(--color-dark);
  font-weight: 700;
}

.contact-form-section .form-input,
.contact-form-section .form-textarea {
  padding: 10px 0;
  font-size: 0.95rem;
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  border-radius: 0;
  background: transparent;
}

.contact-form-section .form-input:focus,
.contact-form-section .form-textarea:focus {
  border-color: transparent;
  border-bottom-color: var(--color-dark);
}

.contact-form-section .form-textarea {
  min-height: 140px;
}

html[dir="rtl"] .contact-form-lead,
html[dir="rtl"] .contact-form-section {
  text-align: right;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.form-input,
.form-textarea {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-gray-light);
  background: var(--color-white);
  border-radius: 4px;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
}

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

.contact-info-item h3,
.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.contact-info-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
}

.contact-info-item p + p {
  margin-top: 4px;
}

.contact-info-item a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--color-accent);
}

.contact-location-card .contact-info-item h3 {
  margin-bottom: 4px;
  color: var(--color-dark);
  font-weight: 700;
}

.contact-location-card .contact-info-item p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.map-placeholder {
  height: 280px;
  background: var(--color-gray-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-top: 32px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .product-modules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .mega-grid--categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

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

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

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

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

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

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

  .contact-location-row {
    gap: 24px 32px;
  }

  .contact-form-grid {
    gap: 24px 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

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

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-gray-light);
  }

  .nav-link {
    color: var(--color-dark);
    padding: 16px 8px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-link::after {
    display: none;
  }

  .nav-item.has-mega::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 6px;
    margin: 0 0 12px;
    padding: 0;
    min-width: 0;
    display: none;
    background: var(--color-cream);
  }

  .nav-item.has-dropdown.dropdown-open .nav-dropdown {
    display: none;
  }

  .nav-item.has-dropdown.open .nav-dropdown {
    display: block;
  }

  .nav-item.has-dropdown:hover .nav-dropdown {
    display: none;
  }

  .nav-item.has-dropdown.open:hover .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-gray-light);
  }

  .nav-dropdown a:last-child {
    border-bottom: none;
  }

  .nav-dropdown-all {
    margin-top: 0;
    border-top: 1px solid var(--color-gray-light);
  }

  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    pointer-events: auto;
    display: none;
    background: var(--color-cream);
    border-radius: 6px;
    margin: 0 0 12px;
  }

  .nav-item.has-mega.mega-open .mega-menu {
    display: none;
  }

  .nav-item.has-mega.open .mega-menu {
    display: block;
  }

  .nav-item.has-mega:hover .mega-menu {
    display: none;
  }

  .nav-item.has-mega.open:hover .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    padding: 16px;
  }

  .mega-menu-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .mega-menu-collections .mega-grid,
  .mega-menu-products .mega-grid,
  .mega-grid--categories {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mega-category {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-light);
  }

  .mega-category:last-child {
    border-bottom: none;
  }

  .mega-category-title {
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .mega-card {
    aspect-ratio: 16/9;
  }

  .mega-card-link {
    opacity: 1;
    transform: none;
  }

  .mega-product-image {
    aspect-ratio: 16/10;
  }

  .mega-menu-products .mega-product {
    padding: 12px 14px;
  }

  .hero-product-link,
  .hero-product-name {
    left: 20px;
    bottom: 15px;
    letter-spacing: 0.25rem;
  }

  .hero:has(.hero-dots) .hero-product-link,
  .hero:has(.hero-dots) .hero-product-name {
    bottom: 95px;
  }

  .hero-dots {
    left: 20px;
    bottom: 20px;
    gap: 10px;
  }

  .hero-page-counter {
    right: 20px;
    bottom: 20px;
  }

  .hero-arrow {
    display: none;
  }

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

  .home-categories {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-categories-tabs {
    gap: 4px 16px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-categories-tabs::-webkit-scrollbar {
    display: none;
  }

  .home-categories-tab {
    flex-shrink: 0;
    font-size: 0.85rem;
  }

  .home-categories-stage {
    margin-top: 32px;
  }

  .home-category-panel-grid,
  .home-category-panel-grid--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-category-panel-grid--reverse .home-category-panel-content,
  .home-category-panel-grid--reverse .home-category-panel-media {
    order: unset;
  }

  .home-category-panel-media {
    aspect-ratio: 4 / 3;
  }

  .category-showcase {
    padding: 48px 0;
    min-height: auto;
  }

  .category-showcase-watermark {
    font-size: 5rem;
    top: 4%;
    opacity: 0.15;
  }

  .category-showcase-layout,
  .category-showcase-layout--reverse {
    grid-template-columns: 1fr;
    min-height: auto;
    transform: none !important;
    opacity: 1 !important;
  }

  .category-showcase:not(.category-showcase--media-right) .category-showcase-media,
  .category-showcase--media-right .category-showcase-media,
  .category-showcase:not(.category-showcase--media-right) .category-showcase-content-col,
  .category-showcase--media-right .category-showcase-content-col {
    transform: none !important;
  }

  .category-bridge {
    height: 40px;
    margin: -20px 0;
  }

  .category-showcase.is-section-active .category-float--sat-1,
  .category-showcase.is-section-active .category-float--sat-2,
  .category-showcase.is-section-active .category-float--sat-3 {
    animation: none;
  }

  .category-showcase-media {
    height: auto;
    min-height: 0;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 12px;
  }

  .category-showcase-media--right {
    padding: 0 12px;
  }

  .category-showcase-stage {
    height: min(60vh, 440px);
    clip-path: inset(0 round 20px) !important;
    transform: none !important;
    padding: 20px !important;
  }

  .category-float--main {
    width: 68%;
    height: 72%;
    left: 50%;
  }

  .category-float--sat-1 {
    width: 30%;
    height: 30%;
    top: 6%;
    right: 6%;
  }

  .category-float--sat-2 {
    width: 26%;
    height: 26%;
    bottom: 8%;
    right: 4%;
  }

  .category-float--sat-3 {
    width: 24%;
    height: 24%;
    bottom: 10%;
    left: 4%;
  }

  .category-showcase-content-col {
    padding: 28px 20px !important;
    justify-content: center !important;
  }

  .category-showcase-card {
    max-width: 100%;
    padding: 0;
    transform: none !important;
    opacity: 1 !important;
  }

  .category-showcase-label,
  .category-showcase-title,
  .category-showcase-desc,
  .category-showcase-btn {
    opacity: 1 !important;
    transform: none !important;
  }

  .category-showcase-line {
    width: 64px;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .col-catalog-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .col-catalog-item,
  .col-catalog-item--reverse {
    grid-template-columns: 1fr;
  }

  .col-catalog-item--reverse .col-catalog-item-visual,
  .col-catalog-item--reverse .col-catalog-item-content {
    order: unset;
  }

  .col-catalog-item-visual,
  .col-catalog-item-image {
    min-height: 280px;
  }

  .col-catalog-item-content {
    padding: 32px 24px;
  }

  .col-page-hero-content {
    padding: 32px 0 40px;
  }

  .col-page-hero--plain .col-page-hero-content {
    padding: calc(var(--header-height) + 24px) 0 32px;
  }

  .col-filter-bar {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 12px 0;
  }

  .col-filter-select-wrap {
    max-width: none;
    width: 100%;
    order: 3;
  }

  .col-filter-count {
    margin-left: 0;
  }

  .col-catalog-stage {
    gap: 48px;
  }

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

  .product-hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .product-hero-visual {
    border-radius: 16px;
    min-height: 320px;
  }

  .product-hero-panel {
    border-top: none;
    padding: 32px 0 0;
  }

  .product-hero-panel-inner {
    padding: 0;
    max-width: none;
  }

  .product-hero-stage {
    padding: 20px;
  }

  .product-hero-stage img {
    max-height: 52vh;
  }

  .product-hero-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .product-gallery-strip-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-inquiry-modal-dialog {
    padding: 28px 20px 24px;
  }

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

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

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

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

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

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

  .designers-intro {
    margin-bottom: 32px;
  }

  .collection-module-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .collections-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collections-sidebar {
    position: static;
  }

  .collections-category-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .collections-category-link {
    border-left: none;
    border: 1px solid var(--color-gray-light);
    border-radius: 100px;
    padding: 8px 14px;
  }

  .collections-category-link.is-active {
    border-color: var(--color-dark);
    background: var(--color-dark);
    color: var(--color-white);
  }

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

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

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

  .designer-modal-dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .designer-modal-image {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .designer-modal-content {
    padding: 28px 24px;
  }

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

  .contact-locations-grid {
    gap: 40px;
  }

  .contact-location-row,
  .contact-location-card--text-only .contact-location-row,
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-location-card--text-only .contact-location-body {
    grid-column: 1;
  }

  .contact-page {
    gap: 48px;
  }

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

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

  .footer-brand {
    margin-bottom: 32px;
  }

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

  .footer-bottom-meta {
    justify-content: center;
  }

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

  .footer-links--two-col {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .footer-newsletter-copy {
    max-width: none;
  }

  .footer-newsletter-form {
    max-width: none;
  }

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

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .hero-product-link,
  .hero-product-name {
    left: 15px;
    bottom: 10px;
    letter-spacing: 0.18rem;
  }

  .hero:has(.hero-dots) .hero-product-link,
  .hero:has(.hero-dots) .hero-product-name {
    bottom: 80px;
  }

  .hero-dots {
    left: 15px;
    bottom: 15px;
  }

  .hero-page-counter {
    right: 15px;
    bottom: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }

  .category-showcase {
    --scroll-progress: 1;
    --enter: 1;
    --exit: 0;
  }

  .category-showcase-stage {
    clip-path: inset(0 0 0 0 round 20px) !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .home-catalog-parallax {
    min-height: 100svh;
  }

  .home-catalog-parallax-content {
    padding: 72px 20px;
  }

  .home-catalog-parallax-actions {
    flex-direction: column;
    width: 100%;
  }

  .home-catalog-download-btn,
  .home-catalog-view-btn {
    width: 100%;
    justify-content: center;
  }

  .home-category-block {
    min-height: 100svh;
    padding: 96px 0 40px;
  }

  .home-category-block::before {
    width: clamp(360px, 92vw, 560px);
    height: clamp(360px, 92vw, 560px);
  }

  .home-category-block-media,
  .home-category-block--reverse .home-category-block-media {
    max-height: none;
    margin-left: 0;
    margin-right: 0;
    height: auto;
    padding: 0 24px;
    overflow: visible;
  }

  .home-category-block-grid,
  .home-category-block--reverse .home-category-block-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-category-block-content,
  .home-category-block--reverse .home-category-block-content {
    padding: 0 24px;
    min-height: auto;
  }

  .home-category-block--reverse .home-category-block-content,
  .home-category-block--reverse .home-category-block-media {
    order: unset;
  }

  .home-category-block-thumbs,
  .home-category-block--reverse .home-category-block-thumbs {
    margin-top: 28px;
    padding-top: 0;
    gap: 12px;
  }

  .home-category-block-thumb {
    min-height: 140px;
    border-radius: 12px;
  }

  .home-category-block-main,
  .home-category-block--reverse .home-category-block-main {
    border-radius: 16px;
    aspect-ratio: 16 / 11;
    height: auto;
  }

  .home-categories-stage {
    gap: 0;
    margin-top: 0;
  }

  .home-category-parallax {
    min-height: 560px;
  }

  .home-category-parallax-image {
    inset: -8% -20%;
    width: 140%;
    height: 116%;
  }

  .home-category-parallax-shade,
  .home-category-parallax--right .home-category-parallax-shade {
    background: linear-gradient(0deg, rgba(18, 17, 15, 0.86) 0%, rgba(18, 17, 15, 0.45) 65%, rgba(18, 17, 15, 0.1) 100%);
  }

  .home-category-parallax-content,
  .home-category-parallax--right .home-category-parallax-content {
    padding-top: 180px;
    padding-bottom: 44px;
    text-align: left;
  }

  .home-category-parallax--right .home-category-panel-title,
  .home-category-parallax--right .home-category-panel-desc {
    margin-left: 0;
  }

  .home-category-parallax .home-category-panel-title {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }
}

/* Home page fullpage scroll */
@media (prefers-reduced-motion: no-preference) {
  html.home-fullpage-active,
  body.home-fullpage-active,
  html:has(body.home-page [data-home-fullpage]),
  body.home-page:has([data-home-fullpage]) {
    overflow: hidden;
    height: 100%;
  }
}

.home-fullpage {
  position: relative;
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .home-fullpage.is-active,
  body.home-page [data-home-fullpage] {
    height: 100svh;
    overflow: hidden;
  }

  body.home-page [data-home-fullpage] .home-fullpage-inner {
    display: flex;
    flex-direction: column;
  }

  body.home-page [data-home-fullpage] .home-fullpage-inner [data-home-screen]:not(.home-footer-screen) {
    height: 100svh;
    min-height: 100svh;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  body.home-page [data-home-fullpage] .home-fullpage-inner .hero {
    min-height: 100svh;
  }

  body.home-page [data-home-fullpage] .home-fullpage-inner .home-category-block {
    min-height: 100svh;
    height: 100svh;
  }
}

.home-fullpage-inner {
  will-change: transform;
  touch-action: none;
}

.home-footer-screen {
  min-height: 100svh;
  height: 100svh;
  flex-shrink: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background: var(--color-dark-soft);
}

.home-footer-screen .footer {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.home-footer-screen .footer-newsletter {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(24px, 4vh, 40px) 0;
}

.home-footer-screen .footer-newsletter .container {
  width: 100%;
}

.home-footer-screen .footer-main {
  flex: 0 0 auto;
  width: 100%;
  padding-top: clamp(16px, 3vh, 28px);
  padding-bottom: clamp(24px, 4vh, 36px);
}

.home-footer-screen .footer-grid--extended {
  margin-bottom: clamp(24px, 4vh, 40px);
}

/* Home page full-screen section flow */
body.home-page .hero {
  height: 100svh;
  min-height: 100svh;
}

body.home-page:not(.home-fullpage-active) [data-home-screen] {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body.home-page:not(.home-fullpage-active) .home-catalog-parallax[data-home-screen] {
  scroll-snap-stop: normal;
}

body.home-page:not(.home-fullpage-active) .footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

body.home-page .about[data-home-screen] {
  box-sizing: border-box;
  min-height: 100svh;
  display: flex;
  align-items: center;
  opacity: 0.72;
  transform: scale(0.985);
  transition: opacity 0.65s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-page .about[data-home-screen] > .container {
  width: 100%;
}

body.home-page .about[data-home-screen].is-section-active {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 769px) {
  html:has(body.home-page):not(.home-fullpage-active) {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
  }
}

@media (max-width: 768px) {
  html:has(body.home-page):not(.home-fullpage-active) {
    scroll-snap-type: y mandatory;
  }

  body.home-page .about[data-home-screen] {
    min-height: auto;
  }

  body.home-page .home-category-block[data-home-screen] {
    min-height: 100svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.home-page) {
    scroll-snap-type: none;
  }

  body.home-page .about[data-home-screen] {
    opacity: 1;
    transform: none;
  }

  body.home-page .home-category-block[data-home-screen] {
    opacity: 1;
    transform: none;
  }

  .home-category-block::before,
  .home-category-block.is-visible::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: none;
  }
}
