/* =====================================================
   KLOZET KAARAN — Main Stylesheet
   Design: Kinetic Noir / Urban Editorial
   ===================================================== */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Anybody:wght@400;600;700;800;900&family=Hanken+Grotesk:wght@400;500;700&family=Inter:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ─── Design Tokens (CSS Variables) ─── */
:root {
  /* Colors */
  --color-primary:        #f58220;   /* Orange accent */
  --color-primary-light:  #ffb786;   /* Lighter orange */
  --color-background:     #000000;   /* Pure black */
  --color-surface:        #121212;   /* Elevated black */
  --color-surface-2:      #1f2020;   /* Higher surface */
  --color-surface-3:      #2a2a2a;   /* Card surface */
  --color-on-bg:          #ffffff;   /* Text on black */
  --color-on-surface:     #e4e2e1;   /* Body text */
  --color-muted:          rgba(255,255,255,0.4);  /* Muted text */
  --color-dimmer:         rgba(255,255,255,0.1);  /* Subtle borders */

  /* Typography */
  --font-headline: 'Anybody', sans-serif;
  --font-body:     'Hanken Grotesk', sans-serif;
  --font-accent:   'Inter', sans-serif;

  /* Spacing */
  --margin-desktop:  80px;
  --margin-mobile:   20px;
  --gutter:          24px;
  --section-gap:     120px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-on-surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: var(--color-primary);
  color: #000;
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--color-primary); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-on-bg);
}

.text-primary   { color: var(--color-primary) !important; }
.text-muted-kk  { color: var(--color-muted); }

/* ─── Material Icons helper ─── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ─── Noise overlay (gritty texture) ─── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
}

/* ─── Glass Card ─── */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Orange glow border on hover ─── */
.orange-glow-hover {
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.orange-glow-hover:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(245, 130, 32, 0.2);
}

/* ─── Section spacing ─── */
.section-gap {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.px-site {
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}

/* ─── Navigation (Top of Page State) ─── */
#main-nav {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 1.5rem var(--margin-desktop);
  transition: all 0.4s ease-in-out;
  
  /* Solid black bar spanning edge-to-edge at the very top */
  background: #000000 !important;
  background-color: #000000 !important;
  
  /* No border here — the marquee bar directly above already
     provides a clean edge; a second faint line right underneath it
     just reads as clutter rather than a deliberate one. */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================================
   SITE-WIDE MARQUEE BAR — scrolling announcement strip
   above the nav.
================================================ */
.kk-marquee {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 901;
  background: #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  box-sizing: border-box;
}
.kk-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: kk-marquee-scroll 22s linear infinite;
}
.kk-marquee-track span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 2rem;
}
.kk-marquee-track span.kk-marquee-dot {
  color: var(--color-primary);
  padding: 0 0.5rem;
}
@keyframes kk-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .kk-marquee-track { animation: none; }
  .kk-marquee { overflow-x: auto; }
}

/* ─── Navigation (Scrolling Down State) ─── */
#main-nav.scrolled {
  /* Melts into a beautiful, completely see-through background */
  background: transparent !important;
  background-color: transparent !important;
  
  /* Drops the border entirely so it looks completely seamless */
  border-bottom: none !important;
  box-shadow: none !important;
  
  /* Slightly pulls it up for a tighter layout frame while moving */
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Override Bootstrap nav-link colors */
#main-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0 !important;
  transition: color 0.3s ease;
}
#main-nav .nav-link:hover,
#main-nav .nav-link.active {
  color: var(--color-primary) !important;
}
#main-nav .nav-link.active {
  color: #fff !important;
}

.navbar-toggler {
  border: none !important;
  color: #fff;
  padding: 0;
}
.navbar-toggler:focus { box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile nav dropdown */
#navbarCollapse {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
#navbarCollapse .nav-link {
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7) !important;
}
#navbarCollapse .nav-link:last-child { border-bottom: none; }

/* ─── Side Social Bar ─── */
.side-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px 0 0 12px;
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 0 20px rgba(245,130,32,0.15);
}
.side-social a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.side-social a:hover {
  color: var(--color-primary);
  transform: translateX(-2px);
}
.side-social .vertical-text {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
}

/* ─── Buttons ─── */
.btn-kk-primary {
  background: var(--color-primary);
  color: #000;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  padding: 1.1rem 2.5rem;
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.btn-kk-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(245,130,32,0.4);
}

.btn-kk-outline {
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 1.1rem 2.5rem;
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.btn-kk-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ─── Label / overline text ─── */
.label-overline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
}

/* ─── Hero ─── */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(60px, 10vw, 100px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

/* ─── Atmospheric background — industrial texture + drifting light ───
   Replaces the old flat photo. Two soft blurred orange blobs drift
   slowly behind everything, over a dark radial gradient base. */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(28,23,18,0.85) 0%, rgba(5,5,5,0.92) 65%),
    url("../images/hero.jpg") center center / cover no-repeat;
  overflow: hidden;
}
.hero-atmosphere::before,
.hero-atmosphere::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.32;
  will-change: transform;
}
.hero-atmosphere::before {
  width: 520px;
  height: 520px;
  background: #f58220;
  top: -8%;
  right: 8%;
  animation: kk-light-drift-a 16s ease-in-out infinite;
}
.hero-atmosphere::after {
  width: 420px;
  height: 420px;
  background: #8a3d10;
  bottom: -12%;
  right: 28%;
  animation: kk-light-drift-b 20s ease-in-out infinite;
}
@keyframes kk-light-drift-a {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-70px, 50px); }
}
@keyframes kk-light-drift-b {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(60px, -40px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-atmosphere::before,
  .hero-atmosphere::after { animation: none; }
}

.hero-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-background) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.hero-image-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--color-background), transparent);
}

.hero-ambient-glow {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: rgba(245, 130, 32, 0.18);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

/* Floating hero glass cards */
.hero-float-card {
  position: absolute;
  z-index: 30;
  padding: 1.5rem;
}
.hero-float-card h4 {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* ─── Hero card stack → fan-out reveal ───
   JS (main.js) measures each card's resting position, then sets
   --stack-x / --stack-y / --stack-rot custom props so every card
   starts overlapped at a common point before animating out to its
   natural spot. Runs once, on load. */
.hero-float-card.card-stack-init {
  opacity: 0;
  transform: translate(var(--stack-x, 0), var(--stack-y, 0))
             scale(0.72)
             rotate(var(--stack-rot, 0deg));
  transition: none;
}
.hero-float-card.card-stack-fan {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
  transition:
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) var(--stack-delay, 0s),
    opacity 0.6s ease var(--stack-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-card.card-stack-init,
  .hero-float-card.card-stack-fan {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ─── Hero card product deck (hover reveal) ───
   Each hero-float-card holds 2–3 product links, pre-arranged in a
   tight overlapping "deck" directly under the card. On hover/focus,
   the deck fans out sideways so each product is clickable.

   NOTE: visibility is controlled by the JS-managed ".deck-open" class
   (see main.js) rather than plain :hover. There's a real pixel gap
   between the card and the fanned-out deck below it — with pure CSS
   :hover, moving the mouse through that gap can drop the hover state
   before the cursor reaches the product, making it unclickable. The
   JS listener adds a short grace period so this can't happen.
   :focus-within is kept as a parallel trigger for keyboard users. */
.hero-float-card {
  cursor: default;
}
.hero-float-card:focus-within,
.hero-float-card.deck-open {
  animation-play-state: paused;
  z-index: 60;
}

.card-product-deck {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 6px;
  width: 1px;   /* zero footprint — items are positioned absolutely */
  height: 1px;
  z-index: 60;
}

.deck-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 118px;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 32px rgba(0,0,0,0.55);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.deck-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}
.deck-item-name {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 8px 0;
}
.deck-item-price {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 900;
  color: var(--color-primary);
  padding: 2px 8px 8px;
}

/* Resting "stacked deck" position — slightly offset & rotated, hidden */
.deck-item:nth-child(1) { z-index: 3; transform: translate(-50%, -8px) scale(0.88) rotate(-5deg); transition-delay: 0.05s; }
.deck-item:nth-child(2) { z-index: 2; transform: translate(-50%, -4px) scale(0.88) rotate(3deg);  transition-delay: 0.12s; }
.deck-item:nth-child(3) { z-index: 1; transform: translate(-50%, 0)    scale(0.88) rotate(-2deg); transition-delay: 0.19s; }

/* Fanned-out, visible position when open (JS class) or focused (keyboard) */
.hero-float-card.deck-open .deck-item,
.hero-float-card:focus-within .deck-item {
  opacity: 1;
  pointer-events: auto;
}
.hero-float-card.deck-open .deck-item:nth-child(1),
.hero-float-card:focus-within .deck-item:nth-child(1) {
  transform: translate(calc(-50% - 74px), 14px) scale(1) rotate(-7deg);
  transition-delay: 0s;
}
.hero-float-card.deck-open .deck-item:nth-child(2),
.hero-float-card:focus-within .deck-item:nth-child(2) {
  transform: translate(-50%, 20px) scale(1) rotate(0deg);
  transition-delay: 0.06s;
}
.hero-float-card.deck-open .deck-item:nth-child(3),
.hero-float-card:focus-within .deck-item:nth-child(3) {
  transform: translate(calc(-50% + 74px), 14px) scale(1) rotate(7deg);
  transition-delay: 0.12s;
}

.deck-item:hover,
.deck-item:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 16px 36px rgba(245, 130, 32, 0.35);
  z-index: 10 !important;
}
.hero-float-card.deck-open .deck-item:hover,
.hero-float-card:focus-within .deck-item:focus-visible {
  transform: translateY(-6px) scale(1.06) !important;
}

/* Cards near the right edge of the viewport: fan toward the left only
   so the deck doesn't get clipped off-screen. */
.hero-float-card[data-category="anime"].deck-open .deck-item:nth-child(2),
.hero-float-card[data-category="anime"]:focus-within .deck-item:nth-child(2) {
  transform: translate(calc(-50% - 40px), 20px) scale(1) rotate(-2deg);
}
.hero-float-card[data-category="anime"].deck-open .deck-item:nth-child(1),
.hero-float-card[data-category="anime"]:focus-within .deck-item:nth-child(1) {
  transform: translate(calc(-50% - 148px), 14px) scale(1) rotate(-8deg);
}


/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: var(--margin-desktop);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: bounce-line 1.5s ease-in-out infinite;
}
@keyframes bounce-line {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.2); }
}

/* ─── Floating animation ─── */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(5px); }
}
.animate-float         { animation: float 8s ease-in-out infinite; }
.animate-float-delayed { animation: float 10s ease-in-out infinite 1s; }
.animate-float-slow    { animation: float 12s ease-in-out infinite 2s; }

/* ─── Brand Story Section ─── */
.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
}

.text-outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
  color: transparent;
}

.orange-accent-bar {
  width: 96px;
  height: 8px;
  background: var(--color-primary);
}

.brand-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-surface);
}
.brand-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.brand-image-inner-border {
  position: absolute;
  inset: 0;
  border: 20px solid var(--color-background);
}
.brand-gsm-card {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
}

/* ─── Collections Grid ─── */
.collection-card {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  aspect-ratio: 16/9;
  cursor: pointer;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.collection-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.15) 70%, transparent);
}
.collection-card-content {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
}
.collection-card-content h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1;
}
.collection-card-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.collection-card-link:hover { gap: 1rem; }

/* ─── Drop Banner ─── */
.drop-banner {
  height: 70vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: var(--color-background);
}
.drop-banner-bg {
  position: absolute;
  inset: 0;
}
.drop-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
  transform: scale(1.1);
}
.drop-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.drop-title {
  font-family: var(--font-headline);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  color: transparent;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* ─── Product Cards (Best Sellers Slider) ─── */
.product-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2rem;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
  display: flex;
  gap: 2.5rem;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-slider::-webkit-scrollbar { display: none; }

.product-slider .product-card {
  min-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .product-slider .product-card { min-width: 420px; }
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--color-background);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-hover-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-card-hover-btn { opacity: 1; }

/* Touch devices don't have real :hover — on iOS Safari especially,
   tapping a card can make :hover styles "stick" after the tap,
   leaving this dark overlay visibly stuck over the product photo.
   Hiding it outright on non-hover-capable devices keeps the image
   clean; the whole card is still a normal tappable link regardless. */
@media (hover: none) {
  .product-card-hover-btn { display: none; }
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.4rem 0.8rem;
}

.product-card-name {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.product-card-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}
.product-card-price {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-primary);
}

/* Slider arrows */
.slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.slider-arrow:hover {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
}

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.feature-item {
  background: var(--color-background);
  padding: 4rem;
  text-align: center;
  transition: background 0.5s ease;
  cursor: default;
}
.feature-item:hover { background: var(--color-surface); }
.feature-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  display: block;
  transition: transform 0.4s ease;
}
.feature-item:hover .feature-icon { transform: scale(1.1); }
.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.feature-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Instagram Grid ─── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 0 8px;
}
.insta-cell {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface);
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-cell:hover img,
.insta-cell:active img {
  transform: scale(1.1);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--color-background);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem var(--margin-desktop);
}
.footer-email-input {
  flex: 1;
  background: var(--color-surface);
  border: none;
  color: #fff;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  outline: none;
  transition: box-shadow 0.3s ease;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.2); }
.footer-email-input:focus { box-shadow: inset 0 -2px 0 var(--color-primary); }

.footer-nav-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 2rem;
}
.footer-nav a {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4rem;
  padding-top: 2rem;
}
.footer-copy {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ─── Page Header (inner pages) ─── */
.page-header {
  padding-top: calc(var(--margin-desktop) * 2 + 64px);
  padding-bottom: 4rem;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}
.page-header-title {
  font-family: var(--font-headline);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.page-header-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.page-header-divider .bar {
  width: 64px;
  height: 2px;
  background: var(--color-primary);
}
.page-header-divider p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

/* ─── Collections Page filter + grid ─── */
.filter-sidebar {
  position: sticky;
  top: 100px;
}
.filter-section-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.filter-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}
.filter-label:hover { color: #fff; }
.filter-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
}

.filter-chip-btn {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.filter-chip-btn:hover,
.filter-chip-btn.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ─── Services / About page ─── */
.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 3rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(245,130,32,0.1);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: block;
}
.service-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.service-desc {
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ─── Contact page ─── */
.contact-highlight {
  border: 2px solid var(--color-primary);
  background: rgba(245,130,32,0.05);
  padding: 1.75rem 2rem;
  transition: background 0.3s ease;
  cursor: pointer;
}
.contact-highlight:hover { background: rgba(245,130,32,0.1); }

.contact-form-panel {
  position: relative;
  z-index: 10;
  padding: 3rem;
}
.contact-form-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(245,130,32,0.08);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.form-field-group { margin-bottom: 2rem; }
.form-field-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus { border-bottom-color: var(--color-primary); }
.form-input:focus + .form-field-label { color: var(--color-primary); }

/* ─── Blog cards ─── */
.blog-card {
  background: var(--color-surface);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.07);
  filter: grayscale(0);
}
.blog-card-body { padding: 2rem; }
.blog-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.blog-card-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-decoration: none;
  display: block;
}
.blog-card-title:hover { color: var(--color-primary); }
.blog-card-excerpt {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.blog-card-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ─── Reveal on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Utility ─── */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

a { text-decoration: none; }

/* ─── WhatsApp floating button ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 700;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(245,130,32,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(245,130,32,0.6);
  color: #000;
}

/* ================================================
   CART + WISHLIST — badges, drawers, quick-add popover
   No hearts anywhere — bookmark icon for "saved" items,
   matches the streetwear tone instead of a beauty-brand feel.
================================================ */

/* Nav icon badges (cart / saved count bubble) */
#kkCartBtn, #kkWishlistBtn { position: relative; }
.kk-badge, .kk-cart-badge, .kk-wishlist-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--color-primary);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Overlay shared by both drawers */
.kk-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.kk-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Slide-in drawer (cart + wishlist share this shell) */
.kk-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-surface, #111);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 9991;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.kk-drawer.open {
  transform: translateX(0);
}
.kk-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.kk-drawer-head h3 {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}
.kk-drawer-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.kk-drawer-close:hover { opacity: 1; }

.kk-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.kk-drawer-empty {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 2rem;
  text-align: center;
}
.kk-drawer-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.kk-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Line item shared by cart + wishlist drawers */
.kk-line-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.kk-line-item img {
  width: 64px;
  height: 78px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  background: #1a1a1a;
}
.kk-line-info { flex: 1; min-width: 0; }
.kk-line-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 2px;
  line-height: 1.3;
}
.kk-line-meta {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin: 0 0 6px;
}
.kk-line-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
}
.kk-line-price {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.85rem;
}
.kk-line-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.kk-line-remove:hover { color: var(--color-primary); }

.kk-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 2px 8px;
}
.kk-qty-stepper span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
}
.kk-qty-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
}
.kk-qty-btn:hover { color: var(--color-primary); }

.kk-mini-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 0;
}
.kk-mini-btn:hover { text-decoration: underline; }

/* Wrapper giving quick-add / bookmark buttons a positioning
   context, without touching the existing .product-card-image
   internals (badge, hover overlay, etc.) */
.kk-card-media {
  position: relative;
}

/* Quick-add "+" and bookmark buttons sitting on product card images.
   Siblings of the <a> that links to the product page — never nested
   inside it, so the markup stays valid and both stay independently
   clickable. */
.kk-quick-add,
.kk-bookmark {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(10,10,10,0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.kk-quick-add {
  bottom: 10px;
  right: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.kk-bookmark {
  top: 10px;
  right: 10px;
  font-size: 0;
}
.kk-bookmark .material-symbols-outlined {
  font-size: 18px;
}
.kk-quick-add:hover,
.kk-bookmark:hover {
  background: var(--color-primary);
  color: #000;
  transform: scale(1.08);
}
.kk-bookmark.active {
  background: var(--color-primary);
  color: #000;
}

/* Variant-picker popover (quick add) */
.kk-popover-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9995;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.kk-popover-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.kk-popover {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: min(360px, 90vw);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--color-surface, #111);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.25rem;
  z-index: 9996;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.kk-popover.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.kk-popover-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.kk-popover-head img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.kk-popover-head > div { flex: 1; min-width: 0; }
.kk-popover-title {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 2px;
  line-height: 1.3;
}
.kk-popover-price {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0;
}
.kk-popover-head .kk-drawer-close { margin-left: auto; flex-shrink: 0; }

.kk-popover-section { margin-bottom: 1.1rem; }
.kk-popover-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.kk-size-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.kk-size-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.kk-size-btn.active, .kk-size-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.kk-color-row {
  display: flex;
  gap: 0.6rem;
}
.kk-color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  outline: 1px solid rgba(255,255,255,0.2);
  outline-offset: 2px;
}
.kk-color-swatch.active {
  border-color: var(--color-primary);
}
.kk-color-name {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  margin: 8px 0 0;
}
.kk-popover-qty-row .kk-qty-stepper {
  display: inline-flex;
}

@media (max-width: 480px) {
  .kk-drawer { width: 100vw; }
}

/* Forces any inner containers inside the navigation bar to be completely see-through */
#main-nav .container, 
#main-nav .container-fluid, 
#main-nav .row,
#main-nav .navbar-collapse {
  background: transparent !important;
  background-color: transparent !important;
}

/* Ultimate cleanup to make sure no internal block has any background or shadow */
#main-nav,
#main-nav * {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Vaporizes the final background element hidden inside Bootstrap's collapsible wrapper */
#main-nav .navbar-collapse,
#main-nav #navbarCollapse {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Keeps structural child containers clean without fighting the main background toggles */
#main-nav .container-fluid,
#main-nav #navbarCollapse,
#main-nav .navbar-nav {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
/* ================================================
   HERO — ORBITING COLLECTION CAROUSEL
   ================================================
   Three real collections, continuously orbiting a center
   point. Pure CSS keyframe animation (GPU-accelerated,
   no JS driving the motion) — one shared @keyframes cycle,
   each item offset by a negative animation-delay so all
   three occupy a different point in the orbit at any time.
   One card is always front/full-size/bright; the other two
   recede smaller and dimmer to the sides. Hover pauses it.
================================================ */
.hero-orbit-zone {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 30;
  width: 520px;
  max-width: 44vw;
}
.hero-orbit-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-orbit {
  position: relative;
  height: 420px;
}

/* Soft glow anchoring the orbit visually — the "hub" everything
   circles around. */
.hero-orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,32,0.16) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  margin-left: -95px;
  margin-top: -125px;
  text-decoration: none;
  --deck-color: var(--color-primary);
  --deck-glow: rgba(245, 130, 32, 0.35);
  animation: kk-orbit-cycle 18s ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-orbit-item--rust  { --deck-color: #f58220; --deck-glow: rgba(245, 130, 32, 0.45); animation-delay: 0s; }
.hero-orbit-item--steel { --deck-color: #5b7a91; --deck-glow: rgba(91, 122, 145, 0.45); animation-delay: -6s; }
.hero-orbit-item--gold  { --deck-color: #d1a24a; --deck-glow: rgba(209, 162, 74, 0.45); animation-delay: -12s; }

/* One shared elliptical path — front (bottom-center, full size/
   opacity) -> upper-left (small/dim) -> upper-right (small/dim) ->
   back to front. All three items run the SAME keyframes; their
   negative animation-delays just start them at different points
   in the cycle, so they're always evenly spaced around the orbit. */
@keyframes kk-orbit-cycle {
  0%, 100% {
    transform: translate(0, 120px) scale(1);
    opacity: 1;
    z-index: 3;
  }
  33.33% {
    transform: translate(-150px, -70px) scale(0.68);
    opacity: 0.55;
    z-index: 1;
  }
  66.66% {
    transform: translate(150px, -70px) scale(0.68);
    opacity: 0.55;
    z-index: 1;
  }
}

.hero-orbit:hover .hero-orbit-item,
.hero-orbit-item:focus-within {
  animation-play-state: paused;
}

.hero-orbit-card {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--deck-color);
  background: #111;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.hero-orbit-item:hover .hero-orbit-card {
  box-shadow: 0 24px 44px rgba(0,0,0,0.55), 0 0 40px var(--deck-glow);
  transform: scale(1.03);
}

.hero-orbit-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.85) brightness(0.75);
  transition: transform 0.5s ease, opacity 0.35s ease;
}
.hero-orbit-item:hover .hero-orbit-card img { transform: scale(1.06); opacity: 0.7; }

.hero-orbit-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.7rem 0.8rem;
}
.hero-orbit-num {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--deck-color);
}
.hero-orbit-icon { font-size: 16px !important; color: rgba(255,255,255,0.5); }

.hero-orbit-statement {
  position: relative;
  z-index: 2;
  margin: 0.4rem 0.85rem 0;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}

.hero-orbit-bottom {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 75%);
}
.hero-orbit-name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.hero-orbit-tag {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2px 0 0;
}
.hero-orbit-bottom .material-symbols-outlined {
  font-size: 18px;
  color: var(--deck-color);
  transition: transform 0.3s ease;
}
.hero-orbit-item:hover .hero-orbit-bottom .material-symbols-outlined { transform: translateX(4px); }

.hero-orbit-hint {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-orbit-hint .material-symbols-outlined { font-size: 15px; }

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-item { animation: none; }
  .hero-orbit-item--rust  { transform: translate(-190px, 0); opacity: 1; }
  .hero-orbit-item--steel { transform: translate(0, 0); opacity: 1; }
  .hero-orbit-item--gold  { transform: translate(190px, 0); opacity: 1; }
}

/* Mobile: an orbit has no room to breathe on a phone screen, so it
   becomes a horizontal swipeable row instead — same three cards,
   animation disabled, laid out in a simple flex row. */
@media (max-width: 991px) {
  .hero-orbit-zone {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin-top: 2rem;
  }
  .hero-orbit {
    height: auto;
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .hero-orbit::-webkit-scrollbar { display: none; }
  .hero-orbit-hub { display: none; }
  .hero-orbit-item {
    position: relative;
    top: auto; left: auto;
    margin: 0;
    flex: 0 0 150px;
    scroll-snap-align: start;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-orbit-card { height: 220px; }

  /* Auto-advancing carousel + glow pulse — gives the mobile hero some
     of the "always moving" feel the desktop orbit has, without trying
     to recreate true 3D rotation on a narrow screen. JS toggles
     .is-active on whichever card is currently centered. */
  .hero-orbit-item.is-active .hero-orbit-card {
    animation: kk-orbit-pulse 2.2s ease-in-out infinite;
  }
  @keyframes kk-orbit-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(245,130,32,0); }
    50%      { box-shadow: 0 0 28px 4px var(--deck-glow, rgba(245,130,32,0.45)); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-orbit-item.is-active .hero-orbit-card { animation: none; }
  }
}

/* ================================================
   DROP DASHBOARD — 2x2 grid of panels replacing the
   old Brand Story section (Live Drop / Why Us /
   Certificate / Special Edition).
================================================ */
.kk-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.kk-dash-panel {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.kk-dash-panel-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.kk-dash-panel-num {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--color-primary);
}
.kk-dash-panel-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Live Drop / Special Edition panels */
.kk-dash-drop {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.kk-dash-drop img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.kk-dash-drop-name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 2px;
  text-transform: uppercase;
}
.kk-dash-drop-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 8px;
}
.kk-dash-stock {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.kk-dash-stock strong {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-family: var(--font-headline);
}
.kk-dash-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
}
.kk-dash-cta .material-symbols-outlined { font-size: 16px; transition: transform 0.25s ease; }
.kk-dash-cta:hover .material-symbols-outlined { transform: translateX(3px); }

/* Why Klozet Kaaran panel */
.kk-dash-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.kk-dash-value {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.kk-dash-value .material-symbols-outlined {
  font-size: 22px;
  color: var(--color-primary);
}
.kk-dash-value p {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

/* Certificate of Authenticity panel */
.kk-dash-cert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}
.kk-dash-cert-icon {
  font-size: 34px !important;
  color: var(--color-primary);
  flex-shrink: 0;
}
.kk-dash-cert-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.kk-dash-cert-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .kk-dash-grid { grid-template-columns: 1fr; }
  .kk-dash-values { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   CHAPTER SECTIONS — new content appended at the very
   bottom of the homepage, below the existing Instagram
   grid. Nothing above this point was modified — these
   are pure additions, ported from the React "Street
   Archive" concept into vanilla HTML/CSS/JS, using real
   catalog products throughout.
================================================ */
.kk-chapter-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.kk-chapter-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* ── Chapter 00: New Drop runway (horizontal scroll-snap) ── */
.kk-runway {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--margin-desktop) 2rem;
  scrollbar-width: none;
}
.kk-runway::-webkit-scrollbar { display: none; }
.kk-runway-card {
  position: relative;
  flex: 0 0 min(72vw, 340px);
  height: 62vh;
  min-height: 380px;
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-surface);
}
.kk-runway-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.kk-runway-card:hover img { transform: scale(1.05); }
.kk-runway-info {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 80%);
}
.kk-runway-drop {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 2px;
}
.kk-runway-title {
  font-family: var(--font-headline); font-weight: 800; font-size: 1.15rem;
  color: #fff; margin: 0; text-transform: uppercase;
}

/* ── Chapter 01: Field Notes (asymmetric grid) ── */
.kk-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .kk-field-grid { grid-template-columns: repeat(4, 1fr); }
  .kk-field-offset-1 { margin-top: 4rem; }
  .kk-field-offset-2 { margin-top: 1.5rem; }
  .kk-field-offset-3 { margin-top: 6rem; }
}
.kk-field-media {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface);
}
.kk-field-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.kk-field-item:hover .kk-field-media img { transform: scale(1.05); }
.kk-field-add {
  position: absolute; inset-inline: 0; bottom: 0;
  width: 100%; height: auto;
  border-radius: 0;
  background: #fff; color: #000;
  border: none;
  padding: 0.6rem 0;
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
  display: block;
  z-index: 5;
}
.kk-field-item:hover .kk-field-add { transform: translateY(0); }
.kk-field-index {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin: 0.75rem 0 0.15rem;
}
.kk-field-name {
  font-family: var(--font-headline); font-weight: 800; font-size: 0.9rem;
  color: #fff; text-transform: uppercase; margin: 0;
}
.kk-field-price { font-size: 0.8rem; color: var(--color-primary); font-weight: 800; margin: 0; }

/* ── Chapter 02: Color Drop (swipeable strip) ── */
.kk-colordrop-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--margin-desktop) 1rem;
  scrollbar-width: none;
}
.kk-colordrop-track::-webkit-scrollbar { display: none; }
.kk-colordrop-card {
  position: relative;
  flex: 0 0 min(85vw, 460px);
  height: 65vh;
  min-height: 420px;
  scroll-snap-align: center;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-surface);
  transition: transform 0.3s ease;
}
.kk-colordrop-card:hover { transform: scale(1.01); }
.kk-colordrop-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kk-colordrop-tint { position: absolute; inset: 0; }
.kk-colordrop-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 45%); }
.kk-colordrop-name {
  position: absolute; left: 1rem; bottom: -6px;
  font-family: var(--font-headline); font-weight: 900;
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  line-height: 1;
  color: rgba(255,255,255,0.95);
  mix-blend-mode: overlay;
  pointer-events: none;
  margin: 0;
  text-transform: uppercase;
}
.kk-colordrop-bottom {
  position: absolute; right: 1.25rem; bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 2;
}
.kk-colordrop-bottom span { color: #fff; font-weight: 800; font-size: 0.9rem; }
.kk-colordrop-arrow {
  background: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  width: 40px; height: 40px; color: #fff; cursor: pointer;
  transition: border-color 0.2s ease;
}
.kk-colordrop-arrow:hover { border-color: #fff; }

/* ── Chapters 03–05: collection moodboards (irregular tiles) ── */
.kk-mood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
@media (min-width: 768px) {
  .kk-mood-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
}
.kk-mood-big  { grid-column: span 2; grid-row: span 2; }
.kk-mood-small { grid-column: span 1; grid-row: span 1; }
.kk-mood-tall { grid-column: span 1; grid-row: span 2; }
.kk-mood-wide { grid-column: span 2; grid-row: span 1; }
.kk-mood-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-surface);
}
.kk-mood-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.kk-mood-tile:hover img { transform: scale(1.06); }
.kk-mood-info {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 85%);
}
.kk-mood-name {
  font-family: var(--font-headline); font-weight: 800; font-size: 0.85rem;
  color: #fff; margin: 0; text-transform: uppercase;
}
.kk-mood-tile .kk-bookmark,
.kk-mood-tile .kk-quick-add {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.kk-mood-tile:hover .kk-bookmark,
.kk-mood-tile:hover .kk-quick-add {
  opacity: 1;
}
@media (hover: none) {
  .kk-mood-tile .kk-bookmark,
  .kk-mood-tile .kk-quick-add {
    opacity: 1;
  }
}
