/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-ivory: #FAFAF7;
  --color-white: #FFFFFF;
  --color-gold: #C9A84C;
  --color-gold-light: #E8D5A0;
  --color-dark: #1A1A1A;
  --color-dark-2: #2C2C2C;
  --color-mid: #6B6B6B;
  --color-light: #F5F3EE;
  --color-border: #E8E4DC;
  --color-border-light: #F0EDE6;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1360px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 10px 20px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-dark);
}
.logo-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-item > a:hover { color: var(--color-gold); }

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  padding: 28px 32px;
  min-width: 560px;
  display: none;
  gap: 32px;
  z-index: 200;
}

.dropdown-sm {
  min-width: 200px;
  left: 0;
  transform: none;
}

.nav-item.has-dropdown:hover .dropdown {
  display: flex;
}

.dropdown-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.dropdown-col ul li + li { margin-top: 6px; }

.dropdown-col ul a {
  font-size: 13px;
  color: var(--color-mid);
  transition: color var(--transition);
}
.dropdown-col ul a:hover { color: var(--color-dark); }

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-dark);
  transition: color var(--transition);
  position: relative;
}
.icon-btn:hover { color: var(--color-gold); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-gold);
  color: white;
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE MENU BTN */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-dark);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

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

.btn-light {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}
.btn-light:hover {
  background: var(--color-ivory);
}

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

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: #b8973e;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 10px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--header-height) - 40px);
  min-height: 560px;
  max-height: 820px;
  background: var(--color-light);
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.slide-light { background: var(--color-ivory); }
.slide-dark { background: #0d1b2a; }

.slide-image {
  height: 100%;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-content {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slide-content-light .slide-eyebrow,
.slide-content-light .slide-title,
.slide-content-light .slide-text {
  color: rgba(255,255,255,0.9);
}

.slide-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.slide-content-light .slide-eyebrow {
  color: var(--color-gold-light);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-dark);
}

.slide-title span {
  font-weight: 500;
  font-style: italic;
  color: var(--color-gold);
}

.slide-content-light .slide-title { color: var(--color-white); }
.slide-content-light .slide-title span { color: var(--color-gold-light); }

.slide-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-mid);
  max-width: 440px;
}

/* SLIDER CONTROLS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.slider-btn svg { width: 20px; height: 20px; }
.slider-btn:hover { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.7); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.dot.active {
  width: 28px;
  background: var(--color-white);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 20px auto 0;
}
.section-divider.left { margin: 20px 0 0; }

.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-mid);
}

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ===== PRODUCTS ===== */
.products-section { background: var(--color-white); }

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

.product-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  transition: border-color var(--transition);
}
.product-card:hover { border-color: var(--color-border); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-gold);
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-badge.new { background: var(--color-dark); }

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

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.08));
  padding: 20px;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  display: block;
  width: 12px;
  height: 12px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: #E0D8CC;
}
.star.filled { background: var(--color-gold); }
.star.half {
  background: linear-gradient(90deg, var(--color-gold) 50%, #E0D8CC 50%);
}

.review-count {
  font-size: 11px;
  color: var(--color-mid);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.2;
}

.product-desc {
  font-size: 13px;
  color: var(--color-mid);
}

.product-size {
  font-size: 12px;
  color: #999;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-light);
}

.product-price {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
  font-family: var(--font-serif);
}

.wishlist-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: color var(--transition);
}
.wishlist-btn svg { width: 18px; height: 18px; }
.wishlist-btn:hover { color: var(--color-gold); }
.wishlist-btn.active { color: var(--color-gold); }
.wishlist-btn.active svg { fill: var(--color-gold); }

/* ===== BENEFITS STRIP ===== */
.benefits-strip {
  background: var(--color-dark);
  padding: 40px 0;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,0.85);
}

.benefit-item svg {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.benefit-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ===== SKIN TEST ===== */
.skin-test-section {
  background: var(--color-light);
  padding: 0;
  overflow: hidden;
}

.skin-test-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.skin-test-image {
  overflow: hidden;
}
.skin-test-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skin-test-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-dark-2);
}
.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ===== PRODUCT LINES ===== */
.lines-section { background: var(--color-white); }

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

.line-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  gap: 12px;
}
.line-card:hover {
  border-color: var(--color-gold);
  background: var(--color-light);
}

.line-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-gold);
}

.line-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-dark);
}

.line-card p {
  font-size: 12px;
  color: var(--color-mid);
  line-height: 1.5;
}

/* ===== EVENTS ===== */
.events-section {
  background: var(--color-ivory);
  padding: 0;
  overflow: hidden;
}

.events-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.events-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.event-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--color-dark-2);
}
.event-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}
.event-icon svg { width: 18px; height: 18px; }

.events-image {
  overflow: hidden;
}
.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--color-white);
  padding: 0;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stat-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mid);
}

.about-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-dark);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 12px;
  color: var(--color-mid);
  line-height: 1.4;
}

/* ===== INSTAGRAM ===== */
.instagram-section { background: var(--color-light); }

.instagram-handle {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
}
.instagram-handle:hover { opacity: 0.7; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.insta-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-border);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.06); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--color-dark);
  padding: 72px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
}
.newsletter-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.newsletter-form input {
  flex: 1;
  min-width: 280px;
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--color-gold); }
.newsletter-form .btn { flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
}
.footer-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.social-links a:hover { color: var(--color-gold); }
.social-links svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer-legal, .footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--color-gold); border-color: var(--color-gold); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text strong {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 12px;
  color: var(--color-mid);
}
.cookie-text a { color: var(--color-gold); }
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .lines-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .slide { grid-template-columns: 1fr; position: relative; }
  .slide-image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .slide-image img { opacity: 0.3; }
  .slide-dark .slide-image img { opacity: 0.5; }
  .slide-content {
    position: relative;
    z-index: 1;
    padding: 60px 48px;
    justify-content: center;
    min-height: inherit;
  }
  .skin-test-inner, .events-inner, .about-inner {
    grid-template-columns: 1fr;
  }
  .skin-test-image, .events-image, .about-image { height: 360px; }
  .skin-test-content, .events-content, .about-content { padding: 60px 48px; }
  .lines-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .top-bar { display: none; }

  .header-inner { padding: 0 20px; gap: 16px; }

  .mobile-menu-btn { display: flex; }

  .nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
    justify-content: flex-start;
  }
  .nav.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-item > a {
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border-light);
    display: block;
    width: 100%;
  }
  .dropdown {
    display: none !important;
  }

  .slide-content { padding: 40px 24px; }
  .slide-text { font-size: 14px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .skin-test-content, .events-content, .about-content { padding: 48px 24px; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-num { font-size: 26px; }

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

  .newsletter-inner { flex-direction: column; gap: 28px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.15); min-width: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-slider { min-height: 480px; }
  .slide-content { padding: 32px 20px; }
  .slide-title { font-size: 32px; }
}
