/* =================================================================
   LUMIÈRE — Beauty Cosmetics Store Template (Bilingual UA/EN)
   Style: Clean aesthetic · matte white · pink-to-purple glassmorphism
   ================================================================= */

:root {
  --white: #ffffff;
  --white-soft: #fdfafd;
  --white-warm: #fef9fb;
  --bg: #faf7fb;
  --pink-1: #ffe4ef;
  --pink-2: #ffc9dd;
  --pink-3: #ff9ec5;
  --pink-deep: #e87aae;
  --purple-1: #f0e6ff;
  --purple-2: #d9c4f5;
  --purple-3: #b894e8;
  --purple-deep: #8b5fbf;
  --lavender: #e8def5;
  --rose: #fff0f5;
  --mauve: #c8a2c8;
  --text: #4a3a4a;
  --text-soft: #6b5a6b;
  --text-muted: #9a8a9a;
  --text-faint: #c4b8c4;
  --line: rgba(139, 95, 191, 0.12);
  --line-pink: rgba(232, 122, 174, 0.15);
  --shadow-soft: 0 4px 20px rgba(139, 95, 191, 0.08);
  --shadow: 0 8px 32px rgba(139, 95, 191, 0.12);
  --shadow-deep: 0 16px 48px rgba(139, 95, 191, 0.18);
  --shadow-pink: 0 8px 32px rgba(232, 122, 174, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-blur: blur(20px);
  --gradient-main: linear-gradient(135deg, #ff9ec5, #b894e8);
  --gradient-soft: linear-gradient(135deg, #ffe4ef, #f0e6ff);
  --gradient-deep: linear-gradient(135deg, #e87aae, #8b5fbf);
}

* { 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: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ============ DREAMY BACKGROUND GRADIENTS ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(255, 158, 197, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(184, 148, 232, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(255, 201, 221, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(240, 230, 255, 0.18) 0%, transparent 50%),
    var(--white);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: orb-float 20s ease-in-out infinite;
}

.orb.o1 { width: 300px; height: 300px; background: var(--pink-2); top: 10%; left: -100px; opacity: 0.4; }
.orb.o2 { width: 400px; height: 400px; background: var(--purple-2); bottom: 10%; right: -150px; opacity: 0.3; animation-delay: -7s; }
.orb.o3 { width: 200px; height: 200px; background: var(--lavender); top: 50%; left: 60%; opacity: 0.4; animation-delay: -14s; }

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--gradient-soft);
  color: var(--purple-deep);
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.top-strip .sep { color: var(--pink-deep); margin: 0 16px; opacity: 0.6; }

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

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

.logo {
  font-family: 'Italiana', serif;
  font-size: 30px;
  letter-spacing: 3px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.logo:hover { transform: scale(1.02); }

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--gradient-main);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(232, 122, 174, 0.5);
}

.logo .accent {
  background: var(--gradient-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

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

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

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

.search-btn:hover {
  background: var(--gradient-deep);
  box-shadow: var(--shadow-pink);
}

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

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

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  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(--gradient-main);
  color: var(--white);
}

.icon-btn {
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.icon-btn:hover {
  background: var(--gradient-soft);
  border-color: var(--pink-3);
  transform: translateY(-2px);
}

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

/* ============ NAVIGATION ============ */
.nav-bar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

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

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

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

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

.nav-inner a:hover::after, .nav-inner a.active::after {
  width: 30px;
}

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

/* ============ HERO ============ */
.hero {
  max-width: 1320px;
  margin: 48px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--purple-deep);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

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

.hero-title {
  font-family: 'Italiana', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .accent {
  background: var(--gradient-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 480px;
}

.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: 500;
  letter-spacing: 0.5px;
  padding: 16px 34px;
  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(--gradient-main);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: var(--gradient-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}

.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--purple-deep);
  border-color: var(--glass-border);
}

.btn-ghost:hover {
  background: var(--gradient-soft);
  border-color: var(--pink-3);
}

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

.stat .value {
  font-family: 'Italiana', serif;
  font-size: 36px;
  color: var(--purple-deep);
  line-height: 1;
}

.stat .label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.hero-bottle-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 32px 32px;
  overflow: hidden;
  background: var(--gradient-soft);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--glass-border);
}

.hero-bottle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-bottle-wrap:hover img { transform: scale(1.05); }

.hero-glass-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}

.glass-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.glass-text .title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

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

.glass-chip {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  animation: chip-float 5s ease-in-out infinite;
}

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

.glass-chip.c1 { top: 40px; left: -30px; }
.glass-chip.c2 { top: 50%; right: -30px; animation-delay: -2.5s; }

.glass-chip .emoji { font-size: 20px; }

.glass-chip .text .title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  line-height: 1;
}

.glass-chip .text .sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 1320px;
  margin: 100px auto 48px;
  padding: 0 40px;
  text-align: center;
}

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

.section-title {
  font-family: 'Italiana', serif;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-title .accent {
  background: var(--gradient-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.section-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 400;
}

.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ CATEGORIES ============ */
.categories {
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-tile {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cat-tile:nth-child(1) { background: linear-gradient(135deg, rgba(255, 228, 239, 0.6), rgba(255, 201, 221, 0.4)); }
.cat-tile:nth-child(2) { background: linear-gradient(135deg, rgba(240, 230, 255, 0.6), rgba(217, 196, 245, 0.4)); }
.cat-tile:nth-child(3) { background: linear-gradient(135deg, rgba(255, 240, 245, 0.6), rgba(255, 228, 239, 0.4)); }
.cat-tile:nth-child(4) { background: linear-gradient(135deg, rgba(232, 222, 245, 0.6), rgba(240, 230, 255, 0.4)); }
.cat-tile:nth-child(5) { background: linear-gradient(135deg, rgba(217, 196, 245, 0.5), rgba(184, 148, 232, 0.3)); }
.cat-tile:nth-child(6) { background: linear-gradient(135deg, rgba(255, 201, 221, 0.5), rgba(255, 158, 197, 0.3)); }
.cat-tile:nth-child(7) { background: linear-gradient(135deg, rgba(240, 230, 255, 0.5), rgba(200, 162, 200, 0.3)); }
.cat-tile:nth-child(8) { background: linear-gradient(135deg, rgba(255, 228, 239, 0.5), rgba(232, 222, 245, 0.3)); }

.cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cat-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--pink-3);
}

.cat-tile:hover::before { opacity: 0.5; }

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

.cat-tile:hover .cat-emoji { transform: scale(1.15) rotate(-5deg); }

.cat-name {
  font-family: 'Italiana', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.cat-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cat-count {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--purple-deep);
  font-weight: 500;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

/* ============ PRODUCTS ============ */
.products {
  max-width: 1320px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: var(--pink-3);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--purple-deep);
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.new { background: var(--gradient-main); color: var(--white); border-color: transparent; }
.product-badge.hot { background: var(--gradient-deep); color: var(--white); border-color: transparent; }
.product-badge.sale { background: var(--white); color: var(--pink-deep); }

.product-image-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.product-image-wrap.g1 { background: linear-gradient(135deg, var(--pink-1), var(--lavender)); }
.product-image-wrap.g2 { background: linear-gradient(135deg, var(--purple-1), var(--pink-1)); }
.product-image-wrap.g3 { background: linear-gradient(135deg, var(--rose), var(--purple-1)); }
.product-image-wrap.g4 { background: linear-gradient(135deg, var(--lavender), var(--pink-2)); }
.product-image-wrap.g5 { background: linear-gradient(135deg, var(--pink-1), var(--purple-2)); }
.product-image-wrap.g6 { background: linear-gradient(135deg, var(--purple-1), var(--rose)); }
.product-image-wrap.g7 { background: linear-gradient(135deg, var(--pink-2), var(--lavender)); }
.product-image-wrap.g8 { background: linear-gradient(135deg, var(--rose), var(--purple-2)); }

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

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

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  color: var(--text-soft);
  font-size: 16px;
}

.product-wishlist:hover { background: var(--pink-3); color: var(--white); border-color: transparent; }

.product-info { padding: 20px; }

.product-cat {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--purple-deep);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}

.product-name {
  font-family: 'Italiana', serif;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.product-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  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: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.product-meta .shade { color: var(--purple-deep); 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: 'Italiana', serif;
  font-size: 26px;
  color: var(--purple-deep);
  line-height: 1;
}

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

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

.add-btn:hover {
  background: var(--gradient-deep);
  transform: scale(1.1);
}

/* ============ EDITORIAL ============ */
.editorial {
  background: var(--gradient-soft);
  margin: 100px 0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.editorial::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--pink-2);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.editorial::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--purple-2);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.editorial-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.editorial-image {
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-deep);
}

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

.editorial-content .section-eyebrow { text-align: left; }

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

.editorial-content h3 .accent {
  background: var(--gradient-deep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.editorial-content p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.editorial-quote {
  font-family: 'Italiana', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--purple-deep);
  padding: 24px 28px;
  border-left: 3px solid var(--pink-3);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 0 20px 20px 0;
  margin: 28px 0;
}

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

.ed-stat .value {
  font-family: 'Italiana', serif;
  font-size: 36px;
  color: var(--purple-deep);
  line-height: 1;
  margin-bottom: 6px;
}

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

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

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

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  text-align: center;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-soft);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.feature-title {
  font-family: 'Italiana', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.feature-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

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

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

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

.newsletter-frame::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--white);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.newsletter-frame::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: var(--purple-deep);
  border-radius: 50%;
  filter: blur(60px);
  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: 500;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.newsletter h3 {
  font-family: 'Italiana', serif;
  font-size: 44px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.newsletter h3 .accent { font-style: italic; }

.newsletter .h3-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.newsletter p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 300;
}

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

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

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

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

.newsletter-form button:hover {
  background: var(--purple-deep);
}

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

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.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-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 6px;
}

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

.footer-col h4 {
  font-family: 'Italiana', serif;
  font-size: 18px;
  color: var(--purple-deep);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.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;
  font-weight: 300;
}

.footer-col a:hover { color: var(--pink-deep); }

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

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

.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-soft);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--gradient-main);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
}

/* ============ 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) {
  .hero { 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; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto auto; gap: 12px; padding: 0 20px; }
  .search-wrap { display: none; }
  .logo { font-size: 24px; }
  .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: 44px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .section-head { padding: 0 20px; }
  .section-title { font-size: 36px; }
  .categories, .products, .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; }
  .newsletter-frame { padding: 40px 24px; }
  .newsletter h3 { font-size: 30px; }
  .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; }
}
