/* Cunnet-inspired dark theme + Jamila brand */
:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --text: #f5f5f7;
  --muted: #9a9aa3;
  --line: rgba(255,255,255,0.08);
  --ty: #f27a1a;
  --ty-dark: #d96a10;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --wrap: min(1200px, 90vw);
  --font: 'Inter', sans-serif;
  --display: 'Syne', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.wrap { width: var(--wrap); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(10,10,11,0.9), transparent);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo img { height: 26px; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--text); }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.lang-switch__btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}
.lang-switch__btn:hover { opacity: 0.9; transform: scale(1.05); }
.lang-switch__btn.is-active {
  opacity: 1;
  background: rgba(242,122,26,0.2);
  box-shadow: 0 0 0 1px rgba(242,122,26,0.35);
}
.site-nav .btn-ty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: #fff;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.site-nav .btn-ty img {
  height: 13px;
  width: auto;
  margin: 10px 12px;
  filter: none;
  flex-shrink: 0;
}
.site-nav .btn-ty__label {
  padding: 10px 0 10px 12px;
  border-left: 1px solid rgba(0,0,0,0.08);
  color: #1a1a1a;
  line-height: 1;
}
.site-nav .btn-ty__icon {
  padding: 10px 12px 10px 8px;
  font-size: 13px;
  line-height: 1;
  color: var(--ty);
  opacity: 0.85;
}
.site-nav .btn-ty:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  border-color: rgba(255,255,255,0.2);
  color: #1a1a1a;
}

/* Hero slider */
.slider-hero { padding-top: 0; }
.slider-hero--compact .slider { height: clamp(360px, 52vh, 520px); }
.slider-hero--compact .slider__headline { font-size: clamp(40px, 8vw, 72px); }
.slider-hero--compact .slider__content { padding-bottom: 56px; }
.slider {
  position: relative;
  height: clamp(520px, 85vh, 720px);
  overflow: hidden;
}
.slider__track { position: absolute; inset: 0; }
.slider__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.slider__slide.is-active { opacity: 1; }
.slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s linear;
}
.slider__slide.is-active img { transform: scale(1); }

.slider__fog { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.slider__fog-layer {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,11,0.55) 0%, transparent 28%),
    linear-gradient(to top, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.35) 38%, transparent 72%);
}

.slider__content {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  padding: 0 max(5vw, 24px) clamp(48px, 8vh, 88px);
  max-width: var(--wrap);
  margin-inline: auto;
  text-align: left;
}
.slider__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.slider__headline {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 112px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
}
.slider__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 360px;
  line-height: 1.6;
}
.slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-slider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ty);
  border: 1px solid var(--ty);
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-slider:hover {
  background: var(--ty-dark);
  border-color: var(--ty-dark);
}
.btn-slider--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
}
.btn-slider--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}

/* Jamila × Trendyol lockup */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.brand-lockup__j {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}
.brand-lockup__t {
  height: 22px;
  width: auto;
}
.brand-lockup__x {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.38);
  transform: translateY(-1px);
}
.brand-lockup--hero {
  margin-bottom: 22px;
}
.brand-lockup--hero .brand-lockup__j { height: 28px; }
.brand-lockup--hero .brand-lockup__t { height: 24px; }
.brand-lockup--hero .brand-lockup__x { font-size: 24px; }
.brand-lockup--band .brand-lockup__j { height: 34px; }
.brand-lockup--band .brand-lockup__t { height: 30px; }
.brand-lockup--band .brand-lockup__x {
  font-size: 32px;
  color: rgba(255,255,255,0.45);
}

.slider__dots {
  position: absolute; z-index: 4;
  bottom: clamp(52px, 8vh, 92px);
  right: max(5vw, 24px);
  left: auto;
  transform: none;
  display: flex; gap: 6px;
}
.slider__dot {
  width: 32px; height: 2px;
  border-radius: 1px;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.35s var(--ease);
  padding: 0;
}
.slider__dot.is-active { background: var(--ty); width: 48px; }

/* Sections */
.section { padding: 100px 0; }
.section--sm { padding: 72px 0; }
.section-title {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-title span { color: var(--ty); }
.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.75;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ty);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242,122,26,0.35);
}
.product-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1e;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  padding: 20px;
  text-align: center;
}
.product-card__body { padding: 20px; }
.product-card__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ty);
  margin-bottom: 8px;
}
.product-card__name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.25s;
}
.product-card__link img { height: 12px; opacity: 0.8; }
.product-card:hover .product-card__link { color: var(--ty); }
.product-card__img { position: relative; }
.product-card__pin {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ty);
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pinned-section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 48px;
}

/* Horizontal product slider */
.product-slider-section { padding-top: 48px; padding-bottom: 24px; }
.product-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-slider__track::-webkit-scrollbar { display: none; }
.product-card--slide {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
}
.product-slider-nav {
  display: flex;
  gap: 8px;
}
.product-slider-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.product-slider-nav__btn:hover {
  border-color: var(--ty);
  background: rgba(242,122,26,0.12);
}

/* Category filter */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.filter-btn.is-active {
  background: var(--ty);
  border-color: var(--ty);
  color: #fff;
}

/* Trendyol band */
.ty-band {
  background: linear-gradient(135deg, #f27a1a, #c45e0e);
  padding: 64px 0;
  text-align: center;
}
.ty-band__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.btn-outline {
  display: inline-flex;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  transition: background 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Instagram feed — corporate */
.ig-feed {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.ig-feed__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ig-feed__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.ig-feed__title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.ig-feed__title span:last-child { color: var(--text); }
.ig-feed__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}
.ig-feed__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-2);
  min-width: min(100%, 380px);
  transition: border-color 0.25s, background 0.25s;
}
.ig-feed__profile:hover {
  border-color: rgba(255,255,255,0.18);
  background: #141418;
}
.ig-feed__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.ig-feed__avatar img { width: 100%; height: auto; filter: none; }
.ig-feed__profile-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ig-feed__profile-text strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ig-feed__profile-text span {
  font-size: 13px;
  color: var(--muted);
}
.ig-feed__follow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.ig-feed__profile:hover .ig-feed__follow {
  border-color: rgba(255,255,255,0.25);
}
.ig-feed__grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ig-feed__grid-head h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.ig-feed__grid-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.ig-feed__grid-link:hover { color: var(--text); }
.ig-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.ig-post {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.ig-post:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}
.ig-post__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1e;
}
.ig-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.ig-post:hover .ig-post__media img { transform: scale(1.05); }
.ig-post__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.ig-post__hover svg { width: 24px; height: 24px; }
.ig-post:hover .ig-post__hover { opacity: 1; }
.ig-post__meta {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ig-post__cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ig-post__link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.ig-feed__embed-wrap { margin-top: 8px; }
.ig-feed__embed-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.ig-feed__embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 480px;
}
.ig-feed__embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.site-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer img { opacity: 0.7; }
.site-footer p { font-size: 12px; color: var(--muted); }
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(131,58,180,0.25), rgba(253,29,29,0.2));
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  opacity: 1;
  transition: transform 0.25s, box-shadow 0.25s;
}
.footer-ig svg { width: 18px; height: 18px; opacity: 1; }
.footer-ig:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* Page hero */
.page-hero {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero p { color: var(--muted); font-size: 16px; }

/* Contact page */
.contact-section { padding-top: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(242,122,26,0.25); }
.contact-card--ty { border-color: rgba(242,122,26,0.35); }
.contact-card__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ty);
  margin-bottom: 10px;
}
.contact-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.contact-card__text a { color: var(--text); transition: color 0.2s; }
.contact-card__text a:hover { color: var(--ty); }
.contact-card__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ty);
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-social a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.contact-social a:hover {
  border-color: var(--ty);
  background: rgba(242,122,26,0.1);
}
.contact-social__ig {
  background: linear-gradient(135deg, rgba(131,58,180,0.2), rgba(253,29,29,0.15)) !important;
  border-color: rgba(220, 39, 67, 0.35) !important;
  font-weight: 600 !important;
}
.contact-social__ig:hover {
  border-color: rgba(220, 39, 67, 0.6) !important;
  background: linear-gradient(135deg, rgba(131,58,180,0.35), rgba(253,29,29,0.25)) !important;
}
.contact-map__title {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.contact-map__frame {
  aspect-ratio: 4/3;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.contact-map__address {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .site-nav a:not(.btn-ty):not([data-i18n]) { display: none; }
  .site-nav a[data-i18n] { display: none; }
  .lang-switch { margin-right: 4px; }
  .contact-grid { grid-template-columns: 1fr; }
  .ig-feed__header { flex-direction: column; align-items: flex-start; }
  .ig-feed__profile { width: 100%; }
  .ig-feed__grid { grid-template-columns: repeat(3, 1fr); }
  .site-nav .btn-ty img { margin: 9px 10px; height: 12px; }
  .site-nav .btn-ty__label { padding: 9px 0 9px 10px; font-size: 10px; }
  .site-nav .btn-ty__icon { padding: 9px 10px 9px 6px; font-size: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .slider__headline { font-size: clamp(44px, 14vw, 72px); }
  .brand-lockup--hero .brand-lockup__j { height: 22px; }
  .brand-lockup--hero .brand-lockup__t { height: 19px; }
  .brand-lockup--hero .brand-lockup__x { font-size: 20px; }
  .brand-lockup--hero { gap: 12px; margin-bottom: 18px; }
  .slider__actions { flex-direction: column; align-items: flex-start; }
  .btn-slider { width: 100%; max-width: 280px; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .ig-feed__grid { grid-template-columns: repeat(2, 1fr); }
}
