/* =================================================================
   NORDEN — Scandinavian Furniture Store Template (Bilingual UA/EN)
   Style: Scandinavian minimalism · white/grey/pastel blue · clean
   ================================================================= */

:root {
  --white: #ffffff;
  --cream: #fafaf7;
  --bg: #f5f6f8;
  --bg-soft: #eef0f3;
  --grey-1: #e8eaee;
  --grey-2: #d4d7dc;
  --grey-3: #a8adb5;
  --grey-4: #6b7280;
  --grey-5: #4a5160;
  --text: #1a1d24;
  --text-soft: #4a5160;
  --text-muted: #6b7280;
  --text-faint: #a8adb5;
  --blue: #a8c8e0;
  --blue-soft: #c8dcec;
  --blue-deep: #6b9bc4;
  --blue-bright: #4a8bb8;
  --blue-bg: #e8f0f7;
  --beige: #e8dcc8;
  --wood: #c8a878;
  --wood-deep: #8a6d4a;
  --green: #7a9b7a;
  --line: #e8eaee;
  --line-soft: #f0f2f5;
  --shadow-soft: 0 2px 8px rgba(26, 29, 36, 0.04);
  --shadow: 0 8px 24px rgba(26, 29, 36, 0.08);
  --shadow-deep: 0 16px 40px rgba(26, 29, 36, 0.12);
  --shadow-blue: 0 8px 24px rgba(168, 200, 224, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--text);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.3px;
}

.top-strip .sep { color: var(--blue); margin: 0 18px; }

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 8px;
  position: relative;
  display: inline-block;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--white);
  border-radius: 2px;
}

.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--blue-deep);
}

.logo .accent { color: var(--blue-bright); }

/* Search */
.search-wrap {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.search-wrap:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-bg);
}

.search-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 22px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  outline: none;
}

.search-wrap input::placeholder { color: var(--text-faint); }

.search-btn {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 0 24px;
  margin: 4px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s ease;
}

.search-btn:hover { background: var(--blue-bright); }

.header-right { display: flex; gap: 12px; align-items: center; }

/* Language switcher */
.lang-toggle {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--text);
  color: var(--white);
}

.icon-btn {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.icon-btn:hover {
  background: var(--blue-bg);
  border-color: var(--blue);
  color: var(--blue-bright);
}

.icon-btn .count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--blue-bright);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* ============ NAVIGATION ============ */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-inner a {
  font-family: 'Inter', sans-serif;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 18px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-inner a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

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

.nav-inner a .en {
  color: var(--text-faint);
  font-size: 11px;
  margin-left: 6px;
  font-style: italic;
  letter-spacing: 0;
}

/* ============ HERO ============ */
.hero {
  max-width: 1440px;
  margin: 48px auto;
  padding: 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-bg);
  color: var(--blue-bright);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--blue-bright);
  font-weight: 700;
}

.hero-title .en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: -0.3px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-desc .en {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}

.hero-cta { display: flex; gap: 14px; margin-bottom: 40px; }

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--grey-2);
}

.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--text);
}

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.trust-item .icon {
  width: 36px;
  height: 36px;
  background: var(--blue-bg);
  color: var(--blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--blue-bg);
  box-shadow: var(--shadow-deep);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.hero-visual:hover img { transform: scale(1.04); }

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card.c1 {
  top: 28px;
  left: -30px;
}

.hero-card.c2 {
  bottom: 36px;
  right: -30px;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-bg);
  color: var(--blue-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hero-card-text .title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card-text .sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 1440px;
  margin: 100px auto 48px;
  padding: 0 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--blue-bright);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -1px;
}

.section-title em {
  font-style: normal;
  color: var(--blue-bright);
}

.section-title .en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: -0.2px;
}

.section-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.section-link:hover { color: var(--blue-bright); border-color: var(--blue-bright); }

/* ============ CATEGORY TILES ============ */
.categories {
  max-width: 1440px;
  margin: 0 auto 80px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cat-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--blue-bg);
  transition: height 0.3s ease;
}

.cat-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.cat-tile:hover::before { height: 100%; }

.cat-icon {
  font-size: 56px;
  margin-bottom: 16px;
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cat-tile:hover .cat-icon { transform: scale(1.1) rotate(-3deg); }

.cat-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.cat-en {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cat-count {
  font-size: 12px;
  color: var(--blue-bright);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ============ PRODUCT GRID ============ */
.products {
  max-width: 1440px;
  margin: 0 auto 80px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--blue);
}

.product-image-wrap {
  aspect-ratio: 1/1;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

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

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--text);
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.new { background: var(--blue-bright); color: var(--white); }
.product-badge.sale { background: var(--text); color: var(--white); }
.product-badge.hot { background: #d97757; color: var(--white); }

.product-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  color: var(--text-muted);
  border: none;
}

.product-wishlist:hover { background: var(--blue-bright); color: var(--white); }

.product-info { padding: 20px; }

.product-cat {
  font-size: 11px;
  color: var(--blue-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-name-en {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.product-meta .material { color: var(--text-soft); font-weight: 500; }

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

.price-block { display: flex; flex-direction: column; }

.price-old {
  font-size: 12px;
  color: var(--text-faint);
  text-decoration: line-through;
}

.price-new {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  line-height: 1;
}

.price-new .cur {
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 2px;
  font-weight: 500;
}

.add-btn {
  background: var(--text);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-btn:hover {
  background: var(--blue-bright);
  transform: scale(1.1) rotate(90deg);
}

/* ============ EDITORIAL SPLIT ============ */
.editorial {
  background: var(--blue-bg);
  margin: 100px 0;
  padding: 100px 0;
}

.editorial-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.editorial-image {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

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

.editorial-content .section-eyebrow { margin-bottom: 16px; }

.editorial-content h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.editorial-content h3 em {
  font-style: normal;
  color: var(--blue-bright);
}

.editorial-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.editorial-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--blue-soft);
  border-bottom: 1px solid var(--blue-soft);
}

.ed-stat .value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.ed-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============ FEATURES ============ */
.features {
  max-width: 1440px;
  margin: 100px auto;
  padding: 0 48px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-bg);
  color: var(--blue-bright);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-en {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-style: italic;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============ ROOM INSPIRATION ============ */
.inspiration {
  max-width: 1440px;
  margin: 100px auto;
  padding: 0 48px;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-top: 40px;
}

.insp-tile {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg);
}

.insp-tile.big {
  grid-row: span 2;
}

.insp-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insp-tile:hover img { transform: scale(1.06); }

.insp-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 29, 36, 0.7));
  pointer-events: none;
}

.insp-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--white);
  z-index: 2;
}

.insp-label .title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.insp-label .sub {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  max-width: 1440px;
  margin: 100px auto;
  padding: 0 48px;
}

.newsletter-frame {
  background: var(--text);
  color: var(--white);
  padding: 64px 60px;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-frame::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--blue-bright);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.newsletter-frame::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.newsletter-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }

.newsletter-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.newsletter h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.newsletter h3 em {
  font-style: normal;
  color: var(--blue);
}

.newsletter .h3-en {
  font-size: 16px;
  color: var(--grey-3);
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 15px;
  color: var(--grey-3);
  margin-bottom: 32px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  padding: 6px;
  border-radius: 100px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
}

.newsletter-form input::placeholder { color: var(--text-faint); }

.newsletter-form button {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--blue-bright);
}

/* ============ FOOTER ============ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 8px;
}

.footer-brand p.en {
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--blue-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

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

.hero-content > * { animation: fadeIn 0.8s ease backwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 56px; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .editorial-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .inspiration-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .insp-tile.big { grid-row: span 1; grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-strip { font-size: 11px; padding: 8px 16px; }
  .top-strip .sep { display: none; }
  .header-inner { grid-template-columns: auto auto; gap: 14px; padding: 0 20px; }
  .search-wrap { display: none; }
  .logo { font-size: 22px; }
  .nav-inner { gap: 18px; padding: 0 20px; overflow-x: auto; }
  .nav-inner a { font-size: 12px; padding: 14px 0; }
  .hero { padding: 0 20px; margin: 32px auto; }
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 14px; }
  .section-head { padding: 0 20px; margin: 60px auto 32px; }
  .section-title { font-size: 32px; }
  .categories, .products, .inspiration, .features, .newsletter { padding: 0 20px; }
  .categories { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .editorial { padding: 60px 0; }
  .editorial-inner { padding: 0 20px; }
  .editorial-content h3 { font-size: 36px; }
  .inspiration-grid { grid-template-columns: 1fr; }
  .insp-tile.big { grid-column: span 1; }
  .newsletter-frame { padding: 40px 24px; }
  .newsletter h3 { font-size: 28px; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
