/* ═══════════════════════════════════════════
   TOPRAK ŞEKER HAIR — Premium CSS
   Renk Paleti: Krem / Kömür / Gül Altın
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5F0EB;
  --cream-light:#FDFAF7;
  --charcoal:   #111110;
  --charcoal-2: #1C1C1A;
  --rose-gold:  #C9967B;
  --rose-light: #E8C4B0;
  --gold:       #BFA17A;
  --text:       #2D2B29;
  --text-muted: #7A7671;
  --white:      #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --nav-h:      80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream-light);
  overflow-x: hidden;
}

/* ──── SCROLLBAR ──── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-gold); border-radius: 3px; }

/* ──── SELECTION ──── */
::selection { background: var(--rose-gold); color: #fff; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  min-height: var(--nav-h);
  background: rgba(17,17,16,0.97);
  transition: box-shadow var(--transition);
  overflow: visible;
}

.header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform var(--transition);
  display: block;
  flex-shrink: 0;
}
.logo-img:hover { transform: scale(1.04); }

.nav { display: flex; gap: 2.5rem; align-items: center; }
.nav a {
  color: rgba(245,240,235,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transition: width var(--transition);
}
.nav a:hover { color: var(--rose-light); }
.nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,16,0.72) 0%,
    rgba(17,17,16,0.45) 50%,
    rgba(17,17,16,0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.2s ease 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(245,240,235,0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose-gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--rose-light);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,150,123,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,235,0.5);
}
.btn-outline:hover {
  background: rgba(245,240,235,0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,235,0.6);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-dot.active { background: var(--rose-gold); border-color: var(--rose-gold); }

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(17,17,16,0.4);
  border: 1px solid rgba(245,240,235,0.2);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--rose-gold); border-color: var(--rose-gold); }
.hero-prev { left: 2rem; }
.hero-next { right: 2rem; }

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(245,240,235,0.06);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(201,150,123,0.08); }
.feature-icon { font-size: 1.2rem; color: var(--rose-gold); flex-shrink: 0; }
.feature-item strong { display: block; color: var(--cream); font-size: 0.88rem; font-weight: 600; }
.feature-item span { color: var(--text-muted); font-size: 0.78rem; }

/* ══════════════════════════════════════
   SECTIONS BASE
══════════════════════════════════════ */
.section { padding: 7rem 0; }
.section-dark { background: var(--charcoal-2); }
.section-contact { background: var(--charcoal); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   PRODUCT GRID (m1–m7)
══════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* Last row: 3 items centered */
.product-card:nth-child(5) { grid-column: 1; }
.product-card:nth-child(6) { grid-column: 2; }
.product-card:nth-child(7) { grid-column: 3; }

.product-card {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  background: #e0ddd8;
  cursor: pointer;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.product-card:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════
   GALLERY GRID (1–19)
══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1;
  background: #2a2a28;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(201,150,123,0.0);
  transition: background var(--transition);
  opacity: 0;
}
.gallery-item:hover::after { background: rgba(201,150,123,0.3); opacity: 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,10,9,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(201,150,123,0.2);
  border: 1px solid rgba(201,150,123,0.4);
  color: var(--cream);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--rose-gold); }

.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(201,150,123,0.15);
  border: 1px solid rgba(201,150,123,0.3);
  color: var(--cream);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-arrow:hover { background: var(--rose-gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ══════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════ */
.section-videos { background: var(--charcoal-2); }
.section-videos .section-title { color: var(--cream); }
.section-videos .section-desc { color: rgba(245,240,235,0.7); }
.section-videos .section-label { color: var(--rose-gold); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9/16;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.45); }

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,17,16,0.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.video-play-btn:hover { background: rgba(17,17,16,0.15); }
.video-card.playing .video-play-btn { display: none; }

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,150,123,0.9);
  color: #fff;
  font-size: 1.6rem;
  padding-left: 5px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform var(--transition), background var(--transition);
}
.video-play-btn:hover .play-icon {
  transform: scale(1.1);
  background: var(--rose-gold);
}

.instagram-cta {
  text-align: center;
  margin-top: 1rem;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 28px rgba(201,80,80,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,80,80,0.45);
}

.footer-instagram {
  color: var(--rose-gold) !important;
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.video-card.autoplay .video-play-btn { display: none; }

/* Unmute butonu */
.video-unmute-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(17,17,16,0.6);
  border: 1px solid rgba(245,240,235,0.3);
  color: var(--cream);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background var(--transition);
}
.video-unmute-btn:hover { background: var(--rose-gold); }
.video-card.autoplay .video-unmute-btn { display: flex; }

/* WhatsApp */
.contact-card-whatsapp { cursor: default; }
.whatsapp-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 1.4rem;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.contact-card-instagram .contact-link {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

/* ══════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 20px 20px 0px var(--rose-light);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--charcoal);
  color: var(--cream);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--rose-gold);
  z-index: 1;
}
.badge-year { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--rose-gold); line-height: 1; }
.badge-text { font-size: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); line-height: 1.3; margin-top: 3px; }

.about-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.about-text strong { color: var(--text); }

.mission-vision { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.mv-block {
  padding: 1.5rem;
  border-left: 3px solid var(--rose-gold);
  background: rgba(201,150,123,0.04);
  border-radius: 0 4px 4px 0;
}
.mv-block h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mv-icon { color: var(--rose-gold); font-size: 0.7rem; }
.mv-block p { font-size: 0.92rem; line-height: 1.75; color: var(--text-muted); margin: 0; }

/* ══════════════════════════════════════
   KONTAKT
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: rgba(245,240,235,0.04);
  border: 1px solid rgba(245,240,235,0.08);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(201,150,123,0.08);
  border-color: rgba(201,150,123,0.25);
  transform: translateY(-4px);
}

.contact-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--rose-light);
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.contact-card p { color: rgba(245,240,235,0.75); font-size: 0.92rem; line-height: 1.8; }
.contact-card a { color: rgba(245,240,235,0.85); text-decoration: none; transition: color var(--transition); }
.contact-card a:hover { color: var(--rose-light); }
.contact-link { display: inline-block; margin-top: 0.8rem; color: var(--rose-gold) !important; font-size: 0.82rem; letter-spacing: 0.05em; }
.contact-note { margin-top: 0.5rem; font-size: 0.8rem !important; color: rgba(245,240,235,0.45) !important; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #0A0A09;
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,235,0.06);
}
.footer-logo { height: 44px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav h5, .footer-contact h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.footer-nav a, .footer-contact a, .footer-contact span {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--rose-light); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
}
.footer-bottom p { color: rgba(122,118,113,0.6); font-size: 0.78rem; letter-spacing: 0.05em; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card:nth-child(5),
  .product-card:nth-child(6),
  .product-card:nth-child(7) { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

/* ═══ MOBILE BOTTOM NAV ═══ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,16,0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(245,240,235,0.08);
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(245,240,235,0.5);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 6px 0 4px;
}
.bottom-nav-item svg {
  width: 20px; height: 20px;
  transition: stroke var(--transition);
}
.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--rose-gold);
}
.bottom-nav-item.active svg,
.bottom-nav-item:hover svg {
  stroke: var(--rose-gold);
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .bottom-nav { display: flex; }
  body { padding-bottom: 60px; }
  .logo-img { height: 42px; max-width: 130px; }
  .video-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .nav {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(17,17,16,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 1rem 2rem; width: 100%; text-align: center; font-size: 0.9rem; }
  .burger { display: flex; }
  .features { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(245,240,235,0.06); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-arrow { width: 38px; height: 38px; font-size: 1rem; }
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
