/* =====================================================
   NOORA LUXURY BEAUTY EXPERIENCE — LUXURY HOME v2
   Palette: Black · Cream · Nude · Soft Gold · Brown
   ===================================================== */

/* ── COLOR TOKENS — Luxury Nude Palette ── */
:root {
  --nb-brown:      #8B6355;
  --nb-brown-dk:   #6E4E42;
  --nb-nude:       #C8B5A0;
  --nb-ivory:      #EDE8E3;
  --nb-ivory-dk:   #E2D9D0;
  --nb-cream:      #F7F4F1;

  /* Gold */
  --nb-gold:       #C8A84B;
  --nb-gold-light: #E8CC78;
  --nb-gold-lo:    #9A7830;
  --nb-gold-grad:  linear-gradient(105deg, #9A7830 0%, #C8A84B 35%, #E8CC78 52%, #C8A84B 68%, #9A7830 100%);

  /* Dark (hero/section overlays) */
  --nb-dark:       #1A120C;
  --nb-warm-dark:  #8B6355;   /* section 4 fallback = brown */

  /* Aliases for compatibility */
  --nb-luxury-brown:  #8B6355;
  --nb-nude-beige:    #C8B5A0;
  --nb-soft-ivory:    #EDE8E3;
  --nb-luxury-gold:   #C8A84B;
  --nb-bg-white:      #F7F4F1;
  --nb-gold-pale:     #E8CC78;

  --nb-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --nb-sans:    "Inter", system-ui, -apple-system, sans-serif;

  --nb-ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nb-ease-out: cubic-bezier(0.16, 1, 0.30, 1);
  --nb-dur:      0.55s;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOMEPAGE OVERRIDES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-home-page { overflow-x: hidden; }
.nb-home-page .nb-main-content {
  padding-top: 0 !important;
  background: transparent !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FULLPAGE SLIDE TRANSITIONS  (sadece anasayfa)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-home-page .nb-cube-wrapper,
.nb-cube-wrapper {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  background: var(--nb-dark);
}

/* All sections stacked, start below viewport */
.nb-fp-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  will-change: transform;
  transform: translateY(100%);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.92s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Visible section */
.nb-fp-section.nb-slide-active {
  transform: translateY(0);
  pointer-events: all;
  z-index: 5;
}

/* Exiting upward (scroll down → current goes up) */
.nb-fp-section.nb-slide-exit-up {
  transform: translateY(-100%);
  pointer-events: none;
  z-index: 4;
}

/* Exiting downward (scroll up → current goes down) */
.nb-fp-section.nb-slide-exit-down {
  transform: translateY(100%);
  pointer-events: none;
  z-index: 4;
}

/* Waiting above (previous sections) */
.nb-fp-section.nb-slide-above {
  transform: translateY(-100%);
  pointer-events: none;
  z-index: 1;
  transition: none;
}

/* Waiting below (next sections) */
.nb-fp-section.nb-slide-below {
  transform: translateY(100%);
  pointer-events: none;
  z-index: 1;
  transition: none;
}

/* Section nav dots */
.nb-cube-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nb-cube-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  padding: 0;
}
.nb-cube-dot.is-active {
  background: var(--nb-gold-light);
  transform: scale(1.4);
}
@media (max-width: 767px) { .nb-cube-nav { display: none; } }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 1 — HERO  (statik, tek görsel)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-s1-hero {
  background: var(--nb-dark);
}

.nb-s1-hero .nb-hero-static {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.nb-hero-overlay-lux {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.70) 100%
  );
}

/* Hero content */
.nb-hero-content-lux {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 60px 80px;
}
.nb-hero-eyebrow {
  font-family: var(--nb-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nb-gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nb-hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--nb-gold-light);
}
.nb-hero-h1 {
  font-family: var(--nb-display);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 28px;
  max-width: 800px;
}
.nb-hero-sub-lux {
  font-family: var(--nb-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.nb-cta-lux {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--nb-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,204,120,0.82);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(200,168,75,0.35);
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.nb-cta-lux:hover {
  color: #E8CC78;
  border-color: rgba(200,168,75,0.65);
  gap: 20px;
  text-decoration: none;
}
.nb-cta-lux svg { flex-shrink: 0; }

/* Hero scroll indicator */
.nb-hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nb-hero-scroll span {
  font-family: var(--nb-sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}
.nb-hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--nb-gold), transparent);
  animation: nb-scroll-pulse 2s ease-in-out infinite;
}
@keyframes nb-scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   }
}

/* Owl dots override */
.nb-s1-hero .owl-dots {
  position: absolute;
  bottom: 36px;
  left: 60px;
  display: flex;
  gap: 8px;
  margin: 0;
}
.nb-s1-hero .owl-dot span {
  background: rgba(255,255,255,0.25) !important;
  width: 24px !important;
  height: 1px !important;
  border-radius: 0 !important;
  margin: 0 !important;
  transition: background 0.3s ease, width 0.3s ease !important;
}
.nb-s1-hero .owl-dot.active span {
  background: var(--nb-gold-light) !important;
  width: 40px !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 2 — SPLIT LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-s2-split {
  background: var(--nb-bg-white);
  display: flex;
}
.nb-s2-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.nb-s2-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--nb-ease-out);
}
.nb-s2-split:hover .nb-s2-image img {
  transform: scale(1.03);
}
.nb-s2-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,240,232,0) 0%, rgba(245,240,232,0.12) 100%);
  z-index: 1;
}
.nb-s2-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 80px 72px;
}
.nb-s2-eyebrow {
  font-family: var(--nb-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nb-brown);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nb-s2-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--nb-gold-grad);
}
.nb-s2-title {
  font-family: var(--nb-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--nb-dark);
  margin-bottom: 28px;
}
.nb-s2-text {
  font-family: var(--nb-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(20,18,16,0.65);
  max-width: 380px;
  margin-bottom: 44px;
}
.nb-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--nb-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nb-brown);
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(139,99,85,0.28);
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.nb-cta-dark:hover {
  color: var(--nb-brown-dk);
  border-color: var(--nb-brown);
  gap: 20px;
  text-decoration: none;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 3 — FEATURED PRODUCTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-s3-products {
  background: var(--nb-ivory);
  display: flex;
  flex-direction: column;
}
.nb-s3-swipe-hint { display: none; }
.nb-s3-header {
  padding: 96px 80px 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
}
.nb-s3-eyebrow {
  font-family: var(--nb-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nb-luxury-brown);
  margin-bottom: 10px;
}
.nb-s3-title {
  font-family: var(--nb-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #1e1610;
  margin: 0;
}
.nb-s3-view-all {
  font-family: var(--nb-sans);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(30,22,16,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(133,101,86,0.25);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nb-s3-view-all:hover {
  color: var(--nb-luxury-brown);
  border-color: var(--nb-luxury-brown);
  text-decoration: none;
}
.nb-s3-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.nb-product-card-lux {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(133,101,86,0.12);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.nb-product-card-lux:last-child { border-right: 0; }
.nb-product-card-lux-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--nb-ease-out);
  background: rgba(255,255,255,0.04);
}
.nb-product-card-lux:hover .nb-product-card-lux-img {
  transform: scale(1.07);
}
.nb-product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background 0.4s ease;
}
.nb-product-card-lux:hover .nb-product-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.88) 100%
  );
}
.nb-product-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.35s var(--nb-ease);
}
.nb-product-card-lux:hover .nb-product-card-info {
  transform: translateY(0);
}
.nb-product-card-name {
  font-family: var(--nb-display);
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.nb-product-card-price {
  font-family: var(--nb-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.10em;
  color: var(--nb-gold-light);
  margin-bottom: 12px;
}
.nb-product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nb-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s var(--nb-ease) 0.05s, color 0.25s ease;
}
.nb-product-card-lux:hover .nb-product-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.nb-product-card-cta:hover { color: var(--nb-gold-light); }

/* No-image placeholder */
.nb-product-no-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nb-warm-dark) 0%, var(--nb-brown) 100%);
}
.nb-product-no-img span {
  font-family: var(--nb-display);
  font-size: 14px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 4 — EDITORIAL FULLSCREEN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-s4-editorial {
  background: var(--nb-luxury-brown);
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.nb-s4-editorial:hover { text-decoration: none; }
.nb-s4-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--nb-ease-out);
}
.nb-s4-editorial:hover .nb-s4-bg {
  transform: scale(1.04);
}
.nb-s4-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  transition: background 0.5s ease;
}
.nb-s4-editorial:hover .nb-s4-overlay {
  background: rgba(10,10,10,0.45);
}
.nb-s4-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 40px;
}
.nb-s4-super {
  font-family: var(--nb-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: none;
  color: var(--nb-gold-light);
  margin-bottom: 28px;
}
.nb-s4-super[lang="en"] {
  text-transform: none !important;
}
.nb-s4-title {
  font-family: var(--nb-display);
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 32px;
  max-width: 900px;
}
.nb-s4-sub {
  font-family: var(--nb-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 52px;
  text-transform: uppercase;
}
.nb-s4-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--nb-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 32px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.nb-s4-editorial:hover .nb-s4-cta {
  color: var(--nb-dark);
  background: var(--nb-gold-light);
  border-color: var(--nb-gold-light);
}

/* Decorative lines */
.nb-s4-line {
  position: absolute;
  background: rgba(255,255,255,0.08);
}
.nb-s4-line-v {
  width: 1px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  animation: nb-line-pulse 3s ease-in-out infinite;
}
@keyframes nb-line-pulse {
  0%, 100% { height: 40px; opacity: 0.4; }
  50%       { height: 80px; opacity: 0.8; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 5 — THREE COLUMNS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-s5-columns {
  background: var(--nb-ivory);
  display: flex;
  flex-direction: column;
}
.nb-s5-header {
  padding: 96px 80px 28px;
  flex-shrink: 0;
}
.nb-s5-eyebrow {
  font-family: var(--nb-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nb-brown);
  margin-bottom: 8px;
}
.nb-s5-title {
  font-family: var(--nb-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  color: #2C1F17;
  margin: 0;
}
.nb-s5-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.nb-s5-col {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.nb-s5-col:last-child { border-right: 0; }
.nb-s5-col-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--nb-ease-out);
}
.nb-s5-col:nth-child(3) .nb-s5-col-bg {
  background-position: right center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 6 — THREE VERTICAL MEDIA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-s6-media-showcase {
  background: #f6f3ef;
  display: flex;
  flex-direction: column;
}

.nb-s6-media-head {
  flex: 0 0 auto;
  padding: 88px 72px 28px;
  text-align: center;
}

.nb-s6-media-eyebrow {
  font-family: var(--nb-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nb-brown);
  margin-bottom: 10px;
}

.nb-s6-media-eyebrow[lang="en"] {
  text-transform: none;
}

.nb-s6-media-title {
  font-family: var(--nb-display);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  color: #1e1610;
  margin: 0;
}

.nb-s6-media-grid {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 56px);
  align-items: start;
  padding: 124px clamp(32px, 6vw, 110px) 56px;
}

.nb-s6-media-card {
  position: relative;
  min-width: 0;
}

.nb-s6-media-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-decoration: none;
}

.nb-s6-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  background: #17100c;
}

.nb-s6-media-img,
.nb-s6-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--nb-ease-out);
}

.nb-s6-media-card:hover .nb-s6-media-img,
.nb-s6-media-card:hover .nb-s6-media-video {
  transform: scale(1.035);
}

.nb-s6-media-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,0.54) 100%);
}

.nb-s6-media-copy {
  position: relative;
  z-index: 2;
  padding: 22px 8px 0;
  text-align: center;
}

.nb-s6-media-copy h4 {
  font-family: var(--nb-sans);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #14100d;
  margin: 0 0 12px;
}

.nb-s6-media-copy p {
  font-family: var(--nb-sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(20,16,13,0.58);
  margin: 0 auto 16px;
  max-width: 320px;
}

.nb-s6-media-copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nb-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #211812;
  border-bottom: 1px solid rgba(33,24,18,0.42);
  padding-bottom: 3px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 7 — PACKSHOT VIDEO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-s6-packshot {
  background: #0f0906;
}

.nb-packshot-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nb-packshot-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15,9,6,0.26) 0%, rgba(15,9,6,0.02) 45%, rgba(15,9,6,0.34) 100%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), rgba(15,9,6,0.22) 72%);
}

.nb-packshot-mark {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--nb-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1.6;
  text-align: center;
  color: rgba(232,204,120,0.78);
  text-transform: none;
  white-space: nowrap;
  text-shadow: 0 1px 18px rgba(0,0,0,0.42);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 7 — FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-home-footer-section {
  background: var(--nb-ivory);
}
.nb-home-footer-section .nb-home-footer-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--nb-ivory);
}
.nb-home-footer-section .nb-site-footer {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 48px 0 24px !important;
}
.nb-home-footer-section .nb-site-footer .row {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.nb-home-footer-section .copyright {
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .nb-home-footer-section {
    overflow-y: auto;
  }
  .nb-home-footer-section .nb-home-footer-wrap {
    min-height: 100%;
    height: auto;
    justify-content: flex-start;
  }
  .nb-home-footer-section .nb-site-footer {
    display: block;
    padding: 36px 0 16px !important;
  }
  .nb-home-footer-section .nb-site-footer::before {
    margin-bottom: 22px;
  }
  .nb-home-footer-section .nb-site-footer .row {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}
.nb-s5-col:hover .nb-s5-col-bg {
  transform: scale(1.06);
}
.nb-s5-col-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.0) 30%,
    rgba(0,0,0,0.70) 100%
  );
  transition: background 0.4s ease;
}
.nb-s5-col:hover .nb-s5-col-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.78) 100%
  );
}
.nb-s5-col-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
}
.nb-s5-col-tag {
  font-family: var(--nb-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--nb-gold-light);
  margin-bottom: 8px;
}
.nb-s5-col-title {
  font-family: var(--nb-display);
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.nb-s5-col-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nb-sans);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s var(--nb-ease) 0.08s, color 0.25s ease;
}
.nb-s5-col:hover .nb-s5-col-link {
  opacity: 1;
  transform: translateY(0);
}
.nb-s5-col-link:hover { color: var(--nb-gold-light); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL-REVEAL ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nb-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--nb-ease-out), transform 0.9s var(--nb-ease-out);
}
.nb-reveal.nb-visible {
  opacity: 1;
  transform: translateY(0);
}
.nb-reveal-d1 { transition-delay: 0.10s; }
.nb-reveal-d2 { transition-delay: 0.20s; }
.nb-reveal-d3 { transition-delay: 0.30s; }
.nb-reveal-d4 { transition-delay: 0.40s; }
.nb-reveal-d5 { transition-delay: 0.50s; }

.nb-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--nb-ease-out), transform 1s var(--nb-ease-out);
}
.nb-reveal-left.nb-visible {
  opacity: 1;
  transform: translateX(0);
}
.nb-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--nb-ease-out), transform 1s var(--nb-ease-out);
}
.nb-reveal-right.nb-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hero-specific: reveal on page load */
.nb-hero-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--nb-ease-out), transform 0.8s var(--nb-ease-out);
}
.nb-hero-animate.nb-loaded {
  opacity: 1;
  transform: translateY(0);
}
.nb-hero-animate-d1 { transition-delay: 0.25s; }
.nb-hero-animate-d2 { transition-delay: 0.45s; }
.nb-hero-animate-d3 { transition-delay: 0.65s; }
.nb-hero-animate-d4 { transition-delay: 0.85s; }


/* Footer styles are in noora.css (global) */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Tablet (≤991px) */
@media (max-width: 991.98px) {
  .nb-hero-content-lux {
    padding: 0 32px 80px;
  }
  .nb-s3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nb-s3-header {
    padding: 88px 32px 24px;
  }
  .nb-s5-grid {
    grid-template-columns: 1fr;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nb-s5-col {
    min-height: 33.33dvh;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nb-s5-header {
    padding: 88px 32px 20px;
  }
  .nb-s5-col-link { opacity: 1; transform: translateY(0); }
  .nb-s6-media-head {
    padding: 84px 32px 22px;
  }
  .nb-s6-media-grid {
    gap: 18px;
    padding: 106px 32px 42px;
  }
  .nb-s6-media-frame {
    aspect-ratio: 9 / 13;
  }
  .nb-s6-media-copy {
    padding-top: 16px;
  }
  .nb-s6-media-copy h4 {
    font-size: 12px;
  }
  .nb-s6-media-copy p {
    display: none;
  }

  .nb-s2-split { flex-direction: column; }
  .nb-s2-image { flex: 0 0 45%; }
  .nb-s2-content {
    flex: 0 0 55%;
    padding: 40px 36px;
  }

  .nb-hero-scroll { display: none; }
}

/* Mobile (≤767px) */
@media (max-width: 767.98px) {
  .nb-s1-hero .nb-hero-slide,
  .nb-s1-hero .nb-hero-static {
    padding-bottom: 60px;
    align-items: flex-end;
  }
  .nb-hero-content-lux {
    padding: 0 20px 64px;
  }
  .nb-hero-h1 {
    font-size: clamp(34px, 11vw, 52px);
  }
  .nb-hero-sub-lux { display: none; }

  .nb-s2-split { flex-direction: column; }
  .nb-s2-image { flex: 0 0 40%; }
  .nb-s2-content { flex: 0 0 60%; padding: 32px 24px; }
  .nb-s2-title { font-size: 32px; }

  .nb-s3-header {
    min-height: 178px;
    padding: 92px 20px 18px;
    align-items: flex-end;
  }
  .nb-s3-eyebrow {
    font-size: 8px;
    margin-bottom: 8px;
  }
  .nb-s3-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1;
  }
  .nb-s3-view-all {
    font-size: 8px;
    letter-spacing: .18em;
  }

  /* Mobil: tek ekran içinde editoryal ürün grid'i */
  .nb-s3-products {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: hidden;
  }
  .nb-s3-grid {
    flex: 1 1 auto;
    min-height: 0;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: 1fr;
    grid-auto-rows: 1fr;
    overflow: hidden;
    gap: 0;
    padding: 0;
  }
  .nb-s3-grid.nb-s3-count-1 {
    grid-template-columns: 1fr !important;
  }
  .nb-s3-grid.nb-s3-count-3,
  .nb-s3-grid.nb-s3-count-4 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .nb-s3-grid::-webkit-scrollbar { display: none; }
  .nb-product-card-lux {
    flex: initial !important;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    border-right: 1px solid rgba(133,101,86,0.12) !important;
    border-top: 1px solid rgba(133,101,86,0.10);
    background: #fff;
  }
  .nb-product-card-lux:nth-child(2n) {
    border-right: 0 !important;
  }
  .nb-product-card-lux-img {
    object-fit: contain;
    padding: 18px 12px 86px;
    background: #fff;
    transform: none !important;
  }
  .nb-product-card-overlay {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0) 34%,
      rgba(26,18,12,.16) 56%,
      rgba(26,18,12,.82) 100%
    );
  }
  .nb-product-card-info {
    padding: 0 14px 16px;
    transform: none;
  }
  .nb-product-card-name {
    font-size: 16px;
    line-height: 1.12;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .nb-product-card-price {
    margin-bottom: 0;
    font-size: 10px;
  }
  .nb-product-card-lux:last-child { border-right: none !important; }
  .nb-product-card-cta {
    display: none !important;
  }

  /* Kaydır ipucu yazısı */
  .nb-s3-swipe-hint {
    display: none;
  }

  .nb-s4-title { font-size: clamp(32px, 10vw, 56px); }

  .nb-s5-header { display: none; }
  .nb-s5-columns {
    height: 100dvh;
    overflow: hidden;
  }
  .nb-s5-grid {
    flex: 1 1 auto;
    height: 100dvh;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }
  .nb-s5-col {
    min-height: 0;
  }
  .nb-s5-col-link { opacity: 1; transform: none; }

  .nb-s6-media-showcase {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nb-s6-media-head {
    padding: 82px 20px 18px;
  }
  .nb-s6-media-title {
    font-size: clamp(28px, 8vw, 36px);
  }
  .nb-s6-media-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 112px 24px 34px;
  }
  .nb-s6-media-card:nth-child(n+2) {
    display: none;
  }
  .nb-s6-media-frame {
    aspect-ratio: 9 / 12;
  }
  .nb-s6-media-copy h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .nb-s6-media-copy p {
    display: block;
    font-size: 11px;
    margin-bottom: 12px;
  }
  .nb-s6-media-copy span {
    font-size: 9px;
  }

  .nb-packshot-video {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.28);
    transform-origin: center 44%;
    object-fit: cover;
    object-position: center 42%;
  }
  .nb-packshot-mark {
    bottom: 18px;
    width: min(100% - 40px, 360px);
    font-size: 8px;
    letter-spacing: 0.24em;
    white-space: normal;
  }

  .nb-s4-line-v { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  .nb-s3-grid { grid-template-columns: 1fr 1fr !important; }
  .nb-product-card-name { font-size: 14px; }
  .nb-product-card-lux-img { padding: 16px 10px 80px; }
}
