/* ===================== OZCAN LUXURY — Dark Luxe Theme ===================== */
:root {
  --bg: #0D0D0D;
  --bg-card: #151515;
  --bg-card-hover: #1a1a1a;
  --gold: #C9A96E;
  --gold-light: #d4b97e;
  --cream: #F5F0E8;
  --cream-dim: #b8b2a8;
  --white: #ffffff;
  --overlay: rgba(0,0,0,.55);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1280px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ======================== SPLASH SCREEN ======================== */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .8s ease, visibility .8s ease;
}
#splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-logo {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--gold);
  letter-spacing: 12px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: splashIn 1.2s .3s forwards, goldShimmer 2.5s ease-in-out 1.5s infinite;
  position: relative;
}
.splash-logo::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,.15), transparent);
  animation: shimmerSweep 2.5s ease-in-out 1.5s infinite;
}
.splash-sub {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 12px;
  opacity: 0;
  animation: splashIn 1s .9s forwards;
}
.splash-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-top: 24px;
  opacity: 0;
  animation: splashLine 1s 1.3s forwards;
}

@keyframes splashIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splashLine {
  0% { opacity: 0; width: 0; }
  100% { opacity: 1; width: 60px; }
}
@keyframes goldShimmer {
  0%, 100% { text-shadow: 0 0 20px rgba(201,169,110,.2); }
  50% { text-shadow: 0 0 40px rgba(201,169,110,.5), 0 0 60px rgba(201,169,110,.2); }
}
@keyframes shimmerSweep {
  0%, 100% { left: -60%; }
  50% { left: 160%; }
}

/* ======================== NAVIGATION ======================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0;
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,.1);
  transition: var(--transition);
}
.navbar::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .6s ease;
}
.navbar:hover::before { opacity: 1; }
.navbar.scrolled { padding: 12px 0; background: rgba(13,13,13,.95); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); transition: var(--transition);
}

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,13,13,.97);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.6rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--cream);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ======================== HERO ======================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1510 0%, #0D0D0D 50%, #12100e 100%);
  background-size: 200% 200%;
  animation: heroGradient 12s ease-in-out infinite;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,.12) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 120px 24px 80px;
  width: 100%;
}
.hero-text { max-width: 520px; }
.hero-tag {
  font-size: .75rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn .8s ease .2s forwards;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12; color: var(--cream);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn .8s ease .4s forwards;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1rem; color: var(--cream-dim); line-height: 1.7;
  margin-bottom: 36px; max-width: 420px;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn .8s ease .6s forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  font-size: .78rem; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color .4s ease, background .4s ease, transform .4s ease;
  transform: translateY(0);
}
.btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left .4s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.btn:hover { color: var(--bg); transform: translateY(-2px); }
.btn:hover::before { left: 0; }
.btn-filled { background: var(--gold); color: var(--bg); }
.btn-filled:hover { background: var(--gold-light); }

.hero-text .btn {
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn .8s ease .8s forwards;
}
.hero-text .btn-filled {
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn .8s ease .9s forwards;
}

.hero-image {
  position: relative;
  height: 580px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
  animation: heroImgIn 1s ease .5s forwards;
}
@keyframes heroImgIn {
  to { opacity: 1; transform: translateX(0); }
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.9) contrast(1.05);
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 4px;
  pointer-events: none;
}

/* ======================== SECTION COMMON ======================== */
.section { padding: 120px 0; }
.section-tag {
  font-size: .7rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; text-align: center;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center; color: var(--cream);
  margin-bottom: 56px;
  letter-spacing: 1px;
  font-weight: 400;
}
.section-title span { color: var(--gold); font-style: italic; }

/* ======================== CATEGORIES ======================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .6s ease, box-shadow .6s ease;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.7) saturate(1.1);
}
.category-card:hover img { transform: scale(1.08); }
.category-card:hover {
  border-color: rgba(201,169,110,.25);
  box-shadow: 0 0 40px rgba(201,169,110,.08);
}
.category-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(transparent 30%, rgba(0,0,0,.8));
  transition: background .5s ease;
}
.category-card:hover .category-overlay {
  background: linear-gradient(transparent 20%, rgba(0,0,0,.85));
}
.category-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; color: var(--cream);
  letter-spacing: 3px;
}
.category-overlay p {
  font-size: .78rem; color: var(--cream-dim);
  letter-spacing: 1px; margin-top: 4px;
}
.category-overlay::after {
  content: 'Keşfet →';
  position: absolute; bottom: 28px; right: 28px;
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity var(--transition), transform var(--transition);
}
.category-card:hover .category-overlay::after {
  opacity: 1;
  transform: translateX(0);
}

/* ======================== PRODUCTS ======================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,169,110,.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .5s ease, transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s ease;
}
.product-card:hover {
  border-color: rgba(201,169,110,.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 30px rgba(201,169,110,.06);
}
.product-img {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.95);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--bg);
  font-size: .65rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.product-actions {
  position: absolute; bottom: 12px; right: 12px;
  display: flex; gap: 8px;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-actions { opacity: 1; }
.product-action-btn {
  width: 40px; height: 40px;
  background: #25D366; border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(37,211,102,.4);
}
.product-action-btn:hover { background: #1ebe5b; transform: scale(1.1); }
.product-action-btn svg { fill: #fff; }
.product-info { padding: 20px 18px 22px; }
.product-brand {
  font-size: .65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  font-weight: 500;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1rem; color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.product-price {
  font-size: .95rem; color: var(--gold); font-weight: 600;
  letter-spacing: 1px;
}
.product-price .old {
  color: var(--cream-dim); text-decoration: line-through;
  font-size: .82rem; margin-left: 8px; font-weight: 400;
}

/* ======================== LOOKBOOK ======================== */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.lookbook-item {
  position: relative; border-radius: 4px;
  overflow: hidden; cursor: pointer;
}
.lookbook-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.lookbook-item:nth-child(4) { grid-column: 4; grid-row: 1 / 3; }
.lookbook-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.85);
}
.lookbook-item:hover img { transform: scale(1.05); filter: brightness(1); }
.lookbook-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.lookbook-item:hover .lookbook-overlay { opacity: 1; }
.lookbook-overlay span {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--cream);
  letter-spacing: 3px; text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* ======================== FEATURES ======================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-item {
  padding: 40px 24px;
  border: 1px solid rgba(201,169,110,.1);
  border-radius: 4px;
  transition: border-color .5s ease, transform .5s ease, box-shadow .5s ease;
}
.feature-item:hover { border-color: rgba(201,169,110,.35); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.feature-icon {
  font-size: 1.8rem; color: var(--gold); margin-bottom: 16px;
}
.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem; color: var(--cream);
  margin-bottom: 8px;
}
.feature-item p { font-size: .82rem; color: var(--cream-dim); }

/* ======================== CTA BANNER ======================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(201,169,110,.08), transparent, rgba(201,169,110,.05));
  border-top: 1px solid rgba(201,169,110,.1);
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 16px;
}
.cta-banner p {
  color: var(--cream-dim); font-size: .95rem;
  margin-bottom: 32px; max-width: 500px; margin-inline: auto;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: #25D366; color: #fff;
  border: none; border-radius: 4px;
  font-size: .85rem; letter-spacing: 1px;
  font-weight: 600; text-transform: uppercase;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-whatsapp svg { width: 20px; height: 20px; }

/* ======================== FOOTER ======================== */
.footer {
  border-top: 1px solid rgba(201,169,110,.1);
  padding: 80px 0 30px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer p { font-size: .85rem; color: var(--cream-dim); max-width: 300px; }
.footer h4 {
  font-family: var(--font-heading);
  font-size: .9rem; color: var(--cream);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: .82rem; color: var(--cream-dim);
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .75rem; color: var(--cream-dim); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim); font-size: .85rem;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* WhatsApp floating */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: float-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6); }
}
.tiktok-float{
    position: fixed;
    right: 20px;
    bottom: 90px; /* WhatsApp'ın üstünde dursun */
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    z-index: 999;
    transition: .3s;
}

.tiktok-float:hover{
    transform: translateY(-4px) scale(1.08);
    background: #111;
}

.tiktok-float svg{
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* ======================== SCROLL ANIMATIONS ======================== */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======================== CATEGORY DETAIL OVERLAY ======================== */
.cat-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s ease, visibility .5s ease;
  overflow: hidden;
}
.cat-overlay.open {
  visibility: visible;
  opacity: 1;
}

.cat-overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px;
}

.cat-overlay-close {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: pointer;
}
.cat-overlay-close:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

.cat-overlay-body {
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.cat-overlay-body::-webkit-scrollbar {
  width: 4px;
}
.cat-overlay-body::-webkit-scrollbar-track {
  background: transparent;
}
.cat-overlay-body::-webkit-scrollbar-thumb {
  background: rgba(201,169,110,.3);
  border-radius: 2px;
}

.cat-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
}
.cat-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 1.8s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.cat-overlay.open .cat-hero-bg {
  transform: scale(1);
}
.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 45%, rgba(0,0,0,.15) 100%);
}
.cat-hero-content {
  position: absolute;
  bottom: 64px;
  left: 0;
  right: 0;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cat-hero-count {
  font-size: .72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease .3s, transform .6s ease .3s;
}
.cat-overlay.open .cat-hero-count {
  opacity: 1;
  transform: translateY(0);
}
.cat-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: 2px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease .45s, transform .7s ease .45s;
}
.cat-overlay.open .cat-hero-title {
  opacity: 1;
  transform: translateY(0);
}

.cat-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0 100px;
}

.cat-product {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease, border-color var(--transition), box-shadow var(--transition);
}
.cat-product.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== SCROLL INDICATOR ======================== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
  animation: scrollBounce 2.5s infinite;
}
.scroll-indicator span {
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ======================== PRODUCT DETAIL OVERLAY ======================== */
.prod-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--bg);
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s ease, visibility .5s ease;
}
.prod-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 20;
  opacity: 0;
  transition: opacity .6s ease .3s;
}
.prod-overlay.open::before { opacity: 1; }
.prod-overlay.open {
  visibility: visible;
  opacity: 1;
}

.prod-overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.prod-overlay-close {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: pointer;
}
.prod-overlay-close:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

.prod-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.prod-nav-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: pointer;
}
.prod-nav-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gold);
  color: var(--gold);
}
.prod-nav-counter {
  font-size: .72rem;
  letter-spacing: 2px;
  color: var(--cream-dim);
  min-width: 36px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.prod-overlay-body {
  display: flex;
  height: 100%;
}

.prod-image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 40px;
  background: #0a0a0a;
  min-width: 0;
}

.prod-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 700px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px;
}
.prod-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.prod-image-wrap:hover img {
  transform: scale(1.02);
}

.prod-image-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  color: var(--cream-dim);
  font-size: .65rem;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.prod-image-wrap:hover .prod-image-hint {
  opacity: 1;
}

.prod-info-section {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 40px;
  border-left: 1px solid rgba(201,169,110,.08);
  overflow-y: auto;
}

.prod-info-content {
  max-width: 360px;
}

.prod-info-brand {
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.prod-info-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.prod-info-price {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.prod-info-price .old {
  color: var(--cream-dim);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 10px;
}

.prod-info-divider {
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,.3);
  margin: 20px 0;
}

.prod-info-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.2);
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 16px;
}

.prod-info-category {
  font-size: .78rem;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
.prod-info-category span {
  color: var(--gold);
  cursor: pointer;
  transition: color var(--transition);
  border-bottom: 1px solid transparent;
}
.prod-info-category span:hover {
  border-bottom-color: var(--gold);
}

.prod-info-id {
  font-size: .68rem;
  color: rgba(255,255,255,.2);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.prod-info-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .8rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background .3s ease, transform .4s ease, box-shadow .4s ease;
  cursor: pointer;
  text-decoration: none;
}
.prod-info-cta:hover {
  background: #1ebe5b;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.35);
}
.prod-info-cta svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ======================== IMAGE LIGHTBOX ======================== */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .4s ease, visibility .4s ease;
  cursor: zoom-out;
}
.image-lightbox.open {
  visibility: visible;
  opacity: 1;
}

.image-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  cursor: pointer;
}
.image-lightbox-close:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transform: scale(.9);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.image-lightbox.open img {
  transform: scale(1);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-desc { margin-inline: auto; }
  .hero-image { height: 400px; max-width: 500px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .lookbook-item:nth-child(1) { grid-column: 1 / 3; }
  .lookbook-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-products { grid-template-columns: repeat(2, 1fr); }
  .prod-info-section { width: 340px; padding: 80px 32px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-image { height: 320px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { height: 260px; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 260px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-item:nth-child(1) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .cat-hero { height: 40vh; min-height: 300px; }
  .cat-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-hero-content { bottom: 40px; }
  .cat-overlay-header { padding: 12px 16px; }
  .cat-overlay-close { width: 38px; height: 38px; }
  .prod-overlay-body { flex-direction: column; }
  .prod-image-section { flex: none; height: 50vh; padding: 60px 20px 20px; }
  .prod-image-wrap { max-height: 100%; }
  .prod-info-section { width: 100%; padding: 28px 24px 40px; border-left: none; border-top: 1px solid rgba(201,169,110,.08); }
  .prod-info-content { max-width: 100%; }
  .prod-overlay-header { padding: 12px 16px; }
  .prod-overlay-close, .prod-nav-btn { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cat-products { grid-template-columns: 1fr; }
  .cat-hero { height: 35vh; min-height: 250px; }
  .prod-image-section { height: 40vh; }
  .prod-nav { gap: 6px; }
  .prod-nav-counter { font-size: .65rem; min-width: 28px; }
}
