
/* ================= RESET ================= */
/* FORCE MOBILE TO SHOW */
/* DEFAULT: HIDE MOBILE ON LAPTOP */
.mobile {
  display: none;
}

/* SHOW MOBILE ONLY ON PHONE */
@media (max-width: 768px) {
  .mobile {
    display: block;
    background: #f6f4f1;
    min-height: 100vh;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= ROOT ================= */
:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #7a7a7a;
  --border: #e6e6e6;
  --accent: #e10600;
}

/* ================= BODY ================= */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}

/* ================= EDITORIAL LOGO ================= */

.editorial-logo {
  margin-top: 120px;   /* 🔽 reduced */
  margin-bottom: 100px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: 0.45em;
 
  transform-origin: center center;   /* 🔥 THIS FIXES THE LEFT SHIFT */


}


/* ================= HEADER ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 6vw;        /* 🔥 REDUCED HEIGHT */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--border);
  z-index: 300;
}

/* LEFT / RIGHT NAV */
.nav-left,
.nav-right {
  display: flex;
  gap: 32px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.navbar a {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
}

/* CENTER SEARCH (BACK IN HEADER) */
.header-search {
  display: flex;
  justify-content: center;
}

.header-search input {
  width: 150px;
  text-align: center;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-size: 0.8rem;
  padding: 4px 0;
  outline: none;
  letter-spacing: 0.12em;
}




.nav-links a {
  margin: 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}



/* ================= THIN STRIP ================= */
#blloomStrip {
  position: fixed;
  top: 0;
  width: 100%;
  height: 48px;
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 400;
  transition: opacity 0.4s ease;
}

#blloomStrip span {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}

/* ================= HERO ================= */

.hero-editorial {
  min-height: 100vh;
  position: relative;
  overflow: hidden;

}

.hero-editorial video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: rgba(255,255,255,0.45)

}

/* ================= HERO TEXT ================= */
.editorial-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 500;
  letter-spacing: 6px;
}

.editorial-tagline {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 420px;
}

/* ================= SHRINK ================= */
.hero-editorial.shrink .hero-overlay {
  padding-top: 120px;
}

/* ================= SECTIONS ================= */
section.content {
  padding: 80px 6vw;
}

/* ================= COLLAGE ================= */
.collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.collage h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.12em;
}

.btn {
  margin-top: 30px;
  padding: 14px 40px;
  border: 1px solid var(--fg);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transition: 0.3s;
}

.btn:hover {
  background: var(--fg);
  color: #fff;
}

/* ================= INFO GRID ================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-box {
  padding: 40px;
  border-right: 1px solid var(--border);
}

.info-box:last-child {
  border-right: none;
}

.info-box h3 {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ================= PRODUCTS ================= */
.products h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product {
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
}

.product h4 {
  margin-top: 16px;
  font-weight: 400;
}

.product span {
  display: block;
  margin-top: 8px;
  color: var(--accent);
}

/* ================= FOOTER ================= */
footer {
  padding: 60px 6vw;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .collage {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-box {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .editorial-logo {
    font-size: 48px;
    letter-spacing: 0.25em;
  }

  .navbar {
    top: 72px;
  }
}

.nav-left,
.nav-right {
  display: flex;
  gap: 36px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.navbar a {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
}
.below-header-search {
  position: fixed;
  top: 54px;            /* just below header */
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
}

.below-header-search input {
  width: 160px;
  text-align: center;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-size: 0.8rem;
  padding: 6px 0;
  outline: none;
  letter-spacing: 0.12em;
}
.below-header-search input {
  transition: width 0.3s ease;
}

.below-header-search input:focus {
  width: 220px;
}
.daily-reminder {
  margin-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero-editorial {
  position: relative;
  height: 85vh;              /* ⬅ reduced from full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-brand {
  position: relative;
  min-height: 70vh;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(255,255,255,0.65),
      rgba(255,255,255,0.65)
    ),
    url("brand.jpg");
  background-size: cover;
  
  animation: slowZoom 18s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-center {
  position: relative;
  text-align: center;
  z-index: 2;
}

.brand-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(90px, 14vw, 200px);
  letter-spacing: 0.4em;
}

.brand-line {
  margin-top: 22px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: #666;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}
.identity-showcase {
  position: relative;
  height: 70vh;              /* NOT huge */
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* MEN – slow horizontal power */
.identity.men {
  left: -10%;
  background-image: url("men.jpg");
  animation: menMove 18s linear infinite;
}

/* WOMEN – vertical elegance */
.identity.women {
  right: 10%;
  background-image: url("women.jpg");
  animation: womenMove 22s ease-in-out infinite;
}

/* KIDS – playful motion */
.identity.kids {
  bottom: -10%;
  background-image: url("kids.jpg");
  animation: kidsMove 14s ease-in-out infinite;
}


@keyframes menMove {
  from { transform: translateX(0) scale(1); }
  to   { transform: translateX(20%) scale(1.08); }
}

@keyframes womenMove {
  0%   { transform: translateY(10%) scale(1); }
  50%  { transform: translateY(-10%) scale(1.06); }
  100% { transform: translateY(10%) scale(1); }
}

@keyframes kidsMove {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.1); }
}

.hero-brand {
  position: relative;
  min-height: 70vh;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(255,255,255,0.45),
      rgba(255,255,255,0.45)
    ),
    url("brand.jpg");
  background-size: cover;
  background-position: center 30%;
  animation: slowZoom 18s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.brand-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(90px, 14vw, 200px);
  letter-spacing: 0.35em;
}

.hero-tagline {
  position: absolute;
  top: 120px;
  left: 6vw;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: #666;
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-editorial {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
}

/* IMAGE */
.hero-photo {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
    url("brand.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: opacity 1s ease;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(90px, 14vw, 200px);
  letter-spacing: 0.4em;
}

.hero-tagline {
  margin-bottom: 22px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: #555;
}


/* ================= HERO 1 : IMAGE ================= */

.hero-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: url("brand.jpg") center / cover no-repeat;
  z-index: 1;
}

.hero-image-content {
  position: relative;
  z-index: 2;
  text-align: center;
}



.hero-line {
  margin-top: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #111;
}


/* ================= HERO 2 : VIDEO ================= */

.hero-video {
  position: relative;
  height: 70vh; /* 👈 NOT TOO BIG */
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-text {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: #fff;
  text-transform: uppercase;
}


/* ================= HERO RESET ================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* IMAGE OVER VIDEO */
.hero-image {
  position: absolute;
  inset: 0;
  background: url("brand.jpg") center / cover no-repeat;
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}



/* TAGLINE */
.hero-tagline {
  margin-top: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #111;
}


/* ===== HERO BASE ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* IMAGE LAYER (TOP FIRST) */
.hero-image {
  position: absolute;
  inset: 0;
  background: url("brand.jpg") center / cover no-repeat;
  z-index: 2;
  transition: opacity 1s ease;
}

/* VIDEO LAYER (BEHIND IMAGE) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}



.hero-tagline {
  margin-top: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #111;
}

/* ===== SCROLL EFFECT ===== */
.hero.scrolled .hero-image {
  opacity: 0;
}
.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}


.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}

.hero-image {
  background: url("brand.jpg") center/cover no-repeat;
  opacity: 1;
  z-index: 1;
}

.hero-video {
  opacity: 0;
  z-index: 1;
}

.hero.scrolled .hero-image {
  opacity: 0;
}

.hero.scrolled .hero-video {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}


/* shrink effect */
.hero.scrolled .hero-logo {
  transform: scale(0.55);
  opacity: 0;
}

/* strip */
#blloomStrip {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#blloomStrip.active {
  opacity: 1;
}
.hero {
  width: 100%;
}

/* IMAGE AREA */
.hero-image-block {
  position: relative;
  height: 55vh; /* 👈 controls image height */
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("brand.jpg") center/cover no-repeat;
}

/* LOGO ON IMAGE */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}


/* GAP BETWEEN IMAGE & VIDEO */
.hero-gap {
  height: 120px; /* 👈 breathing space */
}

/* VIDEO SECTION */
.hero-video-block {
  height: 80vh;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-block {
  position: relative;
  height: 55vh;
  overflow: visible; /* ❗ WAS hidden — THIS WAS THE BUG */
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 👈 pushes BLLOOM DOWN */
  align-items: center;
  padding-bottom: 40px; /* 👈 breathing room */
}

.hero-video-block {
  height: 75vh; /* ❗ REQUIRED */
  background: black; /* safety fallback */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* NEW DROP SECTION */
.new-drop {
  position: relative;
  height: 38vh;   /* ⬅️ was too tall, now editorial */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 6vw;
}


/* VIDEO BEHIND */
.new-drop-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARKEN VIDEO A BIT */
.new-drop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55); /* WHITE wash */
  z-index: 2;
}

/* TEXT ON TOP */
.new-drop-content {
  position: relative;
  z-index: 3;
  color: white;
}

.new-drop h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #111;
}

.new-drop .btn {
  margin-top: 28px;
  padding: 12px 32px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.new-drop .btn:hover {
  background: #111;
  color: white;
}
.new-drop-video {
  filter: contrast(0.95) saturate(0.9);
}
/* HERO IMAGE */
.hero-image {
  position: relative;
  height: 60vh;
  width: 100vw;
  background-image: url("brand.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* subtle dark overlay */
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* CENTER LOGO */
.hero-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 400;
  letter-spacing: 0.008em;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}

/* BOTTOM TEXT */
.hero-hook {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  z-index: 2;
}


/* MANIFESTO BELOW IMAGE */
.hero-manifesto {
  padding: 28px 0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
}


.hero-brand.shrink {
  transform: translate(-50%, -60%) scale(0.6);
  opacity: 0;
}



/* BIG BLLOOM (THE ONLY ONE) */

/* THIN IMAGE STRIP BELOW TAGLINE */
.banner-strip {
  width: 100%;
  height: 56px;              /* very thin */
  margin-top: 24px;          /* space from text */
  background-image: url("banner.jpg");
  background-size: cover;
  background-position: center;
  
   margin-left: 0 !important;      /* stick to left */
  margin-right: auto !important;  /* prevent centering */
  transform: translateX(-6%) !important; /* push left */
  
  background-position: left center !important;
  background-size: cover !important;

  height: 70px !important;        /* keeps it thin */
  position: relative !important;
  z-index: 5 !important;

}
.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  font-family: "Playfair Display", serif;
  font-size: clamp(60px, 10vw, 140px);
  letter-spacing: 0.35em;
  color: #fff;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 5;
  pointer-events: none;
}


.hero.scrolled .hero-logo {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}
#blloomStrip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;                 /* ⬅️ MUCH thinner */
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#blloomStrip span {
  display: flex;
  gap: 150px;                    /* ⬅️ EVEN spacing */
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 400;
  color: #111;
}

.hero-image {
  width: 100vw;
  height: 60vh;
  background-size: cover;
  background-position: center;
}


.hero,
.hero-editorial,
.hero-image,
.hero-brand {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* ================= 3D FLOATING MODEL ================= */

.hero {
  position: relative;
  overflow: visible; /* IMPORTANT */
}

/* container */
.hero-3d {
  position: absolute;
  left: 50%;
  bottom: -120px; /* pulls model OUT of hero */
  transform: translateX(-50%);
  z-index: 6; /* above BLLOOM text */
  pointer-events: none;
}

/* model image */
.hero-3d img {
  width: clamp(260px, 38vw, 520px);
  transform:
    perspective(1200px)
    rotateX(6deg)
    translateY(-20px);
  filter:
    drop-shadow(0 40px 60px rgba(0,0,0,0.25));
  transition: transform 0.6s ease;
}

/* subtle hover life */
.hero-3d img:hover {
  transform:
    perspective(1200px)
    rotateX(0deg)
    translateY(-30px)
    scale(1.02);
}

.hero-logo,
.brand-logo {
  position: relative;
  z-index: 4; /* BELOW model */
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.15),
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
}
/* ===== FINAL CLEANUP: REMOVE DUPLICATE MODEL ===== */

/* 1️⃣ KEEP ONLY banner-strip model */
.banner-strip::after {
  content: "";
  position: absolute;
  left: 60%;
  top: 110px;
  transform: translateX(-50%);
  width: 320px;
  height: 1080px;
  background: url("model.png") center / contain no-repeat;
  z-index: 10;
  pointer-events: none;
}



/* 3️⃣ REMOVE THAT BIG WHITE BLOCK */
.banner-strip {
  margin-bottom: 0.005rem !important;
}


/* ===== FINAL TIGHTENING (VIDEO → BANNER + MODEL SIZE) ===== */

/* 1️⃣ Reduce gap between video and banner */
.hero-manifesto {
  margin-bottom: 0.0001rem !important;   /* 🔥 pulls banner closer */
}

.banner-strip {
  margin-top: 0.0002rem !important;      /* 🔥 closes the gap */
}

/* 2️⃣ Increase model height slightly */
.banner-strip::after {
  height: 1080px !important;           /* 🔥 was ~520px */
  width: 250px !important;            /* keeps proportions */
}

/* ===== MODEL FINAL ADJUST ===== */

.banner-strip::after {
  width: 420px !important;     /* 🔥 bigger model */
  height: 1050px !important;    /* 🔥 taller model */
  left: 98% !important;        /* 🔥 move to the right */
  top: -500px !important;      /* keeps overlap clean */
}




/* ===== SHIFT BANNER LEFT (SHOW "YOU") ===== */

.banner-strip {
  background-position: 35% center !important; /* ← shifts banner left */
}

/* ===== FORCE BANNER LEFT (HARD OVERRIDE) ===== */

.banner-strip {
  width: 85% !important;          /* not full width */
  margin-left: 0 !important;      /* stick to left */
  margin-right: auto !important;  /* prevent centering */
  transform: translateX(-6%) !important; /* push left */
  
  background-position: left center !important;
  background-size: cover !important;

  height: 50px !important;        /* keeps it thin */
  position: relative !important;
  z-index: 5 !important;
}





/* ===== FORCE MODEL UP (ABSOLUTE OVERRIDE) ===== */

img[src*="model.png"] {
  height: 520px !important;   /* 🔼 yahan height badhao */
  width: auto !important;     /* ratio safe rahe */
  max-width: none !important;
  position: relative !important;
 
  
  top: -220px !important;     /* ← pulls it UP */
  right: -40px !important;   /* ← keeps it slightly right */
 
  z-index: 999 !important;
  pointer-events: none !important;
}


img[src*="model.png"] {
  transform: none !important;
}

/* In case parent is clipping it */
img[src*="model.png"] {
  overflow: visible !important;
}

/* Emergency: if parent is flex/grid */
img[src*="model.png"] {
  align-self: flex-end !important;
  justify-self: end !important;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 48px;          /* ↓ reduced from ~70px */
  padding: 0 40px;      /* ↓ less vertical space */
  background: white;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 999;
}


.site-header a {
  font-size: 13px;
  letter-spacing: 3px;
  line-height: 1;       /* 🔥 removes extra height */
  padding: 0;           /* 🔥 */
}


.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-center input {
  height: 20px;
  padding: 2px 6px;
  font-size: 13px;
}
.site-header {
  height: 50px;
}

.site-header a {
  font-size: 12px;
}


/* BIG infinity sign */
.infinity {
  font-size: 34px;
  font-weight: 300;
  margin-left: 10px;
  vertical-align: middle;
  line-height: 1;
}

/* Hover effect */
.site-header a:hover {
  opacity: 0.6;
}

.infinity {
  font-size: 46px;     /* visually big but no vertical push */
  line-height: 1;
  margin-left: 8px;
}
main {
  padding-top: 60px;   /* slightly more than header height */
}




.site-header {
  height: 42px !important;
  padding: 0 32px !important;
  align-items: center;
}
.site-header * {
  line-height: 1 !important;
}
.site-header a {
  padding: 0 !important;
  margin: 0 18px 0 0;
  font-size: 12px;
}
.nav-center input {
  height: 18px !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.infinity {
  font-size: 24px;
  line-height: 1;
  display: inline-block;
}
main {
  padding-top: 46px;
}
.site-header { height: 36px !important; }
/* Infinity panel container */
.infinity-panel {
  position: fixed;
  top: 42px;              /* same as header height */
  right: 20px;
  width: 260px;
  background: white;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;

  transition: all 0.3s ease;
  z-index: 998;
}

/* Active state */
.infinity-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Menu items */
.infinity-panel ul {
  list-style: none;
  margin: 0;
  padding: 14px 0;
}

.infinity-panel li {
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.infinity-panel li:hover {
  background: #f6f6f6;
}
/* Wrapper */
.studio-wrapper {
  position: relative;
}

/* Horizontal bar */
.studio-bar {
  position: absolute;
  top: 100%;              /* right below header */
  right: 0;

  display: flex;
  gap: 32px;

  background: white;
  padding: 14px 26px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 998;
}

/* Show on hover */
.studio-wrapper:hover .studio-bar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Items */
.studio-bar span {
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
}

/* Hover effect */
.studio-bar span:hover {
  opacity: 0.6;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background: white;
}





.hero,
.hero *,
.new-drop,
.new-drop *,
.new-drop-video {
  pointer-events: none;
}
.navbar,
.navbar * {
  pointer-events: auto;
}

.page {
  display: none;
}

.page.active {
  display: block;
}


/* ===== BLLOOM SCROLL STRIP ===== */

#blloomStrip {
  position: fixed;
  top: 48px;                 /* just below navbar */
  left: 0;
  width: 100%;
  height: 29px;

  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9998;             /* below navbar */
  pointer-events: none;     /* NEVER block clicks */

  opacity: 0;               /* 🔥 hidden initially */
  transition: opacity 0.3s ease;
}

#blloomStrip span span {
 font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 9px;
  color: #111;
}

/* FIX CLICK ISSUE - FORCE MENU ON TOP */
.infinity-panel {
  
  font-family: 'Cormorant Garamond', serif;


  position: fixed;
  top: 70px;
  right: 20px;
  background: #fff;
  z-index: 2147483647; /* MAX POSSIBLE */
  pointer-events: auto;
}

.infinity-panel a {
  display: block;
  padding: 14px 22px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  pointer-events: auto;
}

.infinity-panel a:hover {
  background: #f2f2f2;
}


/* Infinity button styling */
.infinity {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  margin-left: 8px;

  border: 1px solid #000;
  border-radius: 50%;

  font-size: 18px;
  font-weight: 500;

  cursor: pointer;
  user-select: none;

  transition: all 0.2s ease;
}

/* Hover effect */
.infinity:hover {
  background: #000;
  color: #fff;
}

/* Click (active) feel */
.infinity:active {
  transform: scale(0.95);
}

.infinity {
  border: 1px solid rgba(0,0,0,0.4);
}
.infinity {
  background: #000;
  color: #fff;
}
.infinity:hover {
  background: #222;
}



.mobile-app {
  display: none;
}

@media (max-width: 600px) {
  .desktop-home {
    display: none !important;
  }

  .mobile-app {
    display: block !important;
  }
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {

  /* Hide desktop */
  .navbar,
  .desktop-home {
    display: none !important;
  }

  body {
    background: #fff;
  }

  /* HEADER */
  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .mobile-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 3px;
  }

  .mobile-actions {
    display: flex;
    gap: 14px;
  }

  .icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  /* THIN STRIP */
  .mobile-strip {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    font-size: 11px;
    letter-spacing: 8px;
    padding: 6px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 40;
  }

  .mobile-strip.show {
    opacity: 1;
  }

  /* HERO */
  .mobile-brand {
    padding: 80px 20px 40px;
    text-align: center;
  }

  .mobile-brand .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
  }

  .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    letter-spacing: 4px;
  }
}
/* ================= RESPONSIVE SWITCH ================= */

/* Default: hide mobile */
.mobile-only {
  display: none;
}

/* Desktop stays visible */
.desktop-home {
  display: block;
}

/* Mobile view */
@media (max-width: 768px) {

  /* Hide desktop */
  .desktop-home {
    display: none !important;
  }

  /* Show mobile */
  .mobile-only {
    display: block;
  }

  body {
    background: #fff;
  }
}

/* MOBILE DARK LUXURY TONE */
@media (max-width: 768px) {

  body {
    background: #f7f7f5;
  }

  .m-hero img {
    filter: contrast(1.05) brightness(0.9);
  }

  .m-hero-text h1 {
    font-size: 52px;
    letter-spacing: 6px;
  }

  .m-hero-text p {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: .8;
  }


  .m-cta a {
    background: #000;
    color: #fff;
    border: none;
  }
}
/* --- 1. DEFAULT: LAPTOP VIEW --- */
.desktop-home {
  display: block;
}
.mobile-bloom-home {
  display: none; /* Hidden on Laptops */
}

/* --- 2. MOBILE VIEW: TRIGGERED ON PHONES --- */
@media screen and (max-width: 767px) {
  /* Kill Laptop Version */
  .desktop-home {
    display: none !important;
  }

  /* Force Mobile Version to Open */
  .mobile-bloom-home {
    display: block !important;
    background: #fff;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* --- EXACT PICTURE DESIGN STYLES --- */
  .m-active-brand {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .m-hero-card {
    position: relative;
    margin: 0 15px;
    height: 520px;
    border-radius: 35px;
    overflow: hidden;
    background: #000;
  }

  .m-hero-card::after {
    content: "BLLOOM";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: -4px;
    z-index: 2;
  }

  .m-bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 10;
  }

  .m-bubble-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }

  .m-bottom-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    height: 75px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
  }
}
@media screen and (max-width: 767px) {
  .desktop-home { display: none !important; }
}
/* THE STYLING BELONGS IN THE CSS FILE */
@media screen and (max-width: 767px) {
    .desktop-home { display: none !important; }

  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #f6f4f1;
}

/* DESKTOP */
.desktop_header {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

/* MOBILE OFF */
.mobile {
  display: none;
}

/* MOBILE ON */
@media (max-width: 768px) {

  .desktop_header {
    display: none;
  }

  .mobile {
    display: block;
  }

  /* HEADER */
  .mobile_header {
    padding: 15px;
    background: #fff;
  }

  .mobile_top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .mobile_search {
    display: flex;
    gap: 10px;
  }

  .mobile_search input {
    flex: 1;
    padding: 10px;
    border-radius: 25px;
    border: none;
    background: #eee;
  }

  .filter {
    background: #7b5a3a;
    color: white;
    padding: 10px 14px;
    border-radius: 50%;
  }

  /* BANNER */
  .banner {
    margin: 15px;
    background: #e8ddd3;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .banner img {
    width: 90px;
    border-radius: 10px;
  }

  .banner button {
    background: #7b5a3a;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
  }

  /* CATEGORY */
  .category {
    padding: 15px;
  }

  .category_list {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .cat {
    background: white;
    padding: 12px;
    border-radius: 15px;
    font-size: 12px;
    text-align: center;
  }

  /* FLASH */
  .flash {
    padding: 15px;
  }

  .flash_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .infinity {
    font-size: 22px;
    font-weight: bold;
    color: #7b5a3a;
  }

  .tabs {
    display: flex;
    gap: 8px;
    margin: 10px 0;
  }

  .tabs button {
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    background: #eee;
    font-size: 12px;
  }

  .tabs .active {
    background: #7b5a3a;
    color: white;
  }

  .products {
    display: flex;
    gap: 10px;
  }

  .product {
    background: white;
    border-radius: 15px;
    padding: 10px;
    width: 50%;
  }

  .product img {
    width: 100%;
    border-radius: 10px;
  }

  /* BOTTOM NAV */
  .mobile_nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
  }

  .mobile_nav .active {
    color: #caa06a;
  }
}
.mobile_header {
  background: #fff;
  padding: 15px;
}

.mobile_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location {
  display: flex;
  gap: 6px;
  align-items: center;
}

.mobile_search {
  margin-top: 12px;
  background: #eee;
  border-radius: 25px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile_search input {
  border: none;
  background: transparent;
  flex: 1;
  outline: none;
}

/* BANNER */
.banner {
  margin: 15px;
  background: #e8ddd3;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.banner img {
  width: 90px;
  border-radius: 12px;
}

/* CATEGORY */
.category {
  padding: 15px;
}

.category_list {
  display: flex;
  justify-content: space-between;
}

.cat {
  background: #fff;
  border-radius: 15px;
  padding: 12px;
  width: 22%;
  text-align: center;
  font-size: 12px;
}

.cat i {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

/* FLASH */
.flash {
  padding: 15px;
}

.products {
  display: flex;
  gap: 10px;
}

.product {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  width: 50%;
}

.product img {
  width: 100%;
  border-radius: 12px;
}

/* BOTTOM NAV */
.mobile_nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 14px 0;
  font-size: 18px;
}

.mobile_nav .active {
  color: #caa06a;
}
/* CATEGORY UPGRADE */
.category_list a {
  text-decoration: none;
  color: inherit;
}

.cat {
  background: #fff;
  border-radius: 16px;
  padding: 14px 10px;
  width: 23%;
  text-align: center;
  font-size: 12px;
}

.cat i {
  font-size: 20px;
  margin-bottom: 6px;
  display: block;
}

/* SHOP FOR SECTION */
.shop_for {
  padding: 15px;
}

.shop_list {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.shop_card {
  flex: 1;
  height: 90px;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.shop_card.men {
  background: linear-gradient(135deg, #111, #444);
}

.shop_card.women {
  background: linear-gradient(135deg, #a16a7c, #d7a1b3);
}

.shop_card.kids {
  background: linear-gradient(135deg, #f2b705, #ffdd7f);
  color: #222;
}
.mobile_nav a {
  color: white;
  font-size: 18px;
}

.mobile_nav a.active {
  color: #caa06a;
}
.top_icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top_infinity {
  font-size: 22px;
  font-weight: bold;
  color: #7b5a3a; /* same brand brown */
  line-height: 1;
  cursor: pointer;
}

.profile {
  font-size: 18px;
}
/* LUXURY COLORS */
:root {
  --black: #111;
  --white: #fff;
  --grey: #f3f3f3;
}

/* SECTION TITLE */
.section_title {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CATEGORY ICONS */
.category_list.luxury .cat {
  background: var(--white);
  border-radius: 18px;
  padding: 14px;
  width: 23%;
  text-align: center;
}

.category_list.luxury img {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  filter: grayscale(100%);
}

/* VIDEO */
.brand_video {
  margin-top: 15px;
  border-radius: 20px;
  overflow: hidden;
}

.brand_video video {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* FILTER DRAWER */
.filter_drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  transition: 0.3s ease;
  z-index: 1000;
}

.filter_drawer.open {
  bottom: 0;
}

.filter_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter_group {
  margin-top: 15px;
}

.filter_group button {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: white;
}
.specialise {
  padding: 24px 16px;
  background: #fff;
  color: #000;
}

.specialise h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.specialise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.spec-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 6px;
  text-align: center;
}

.spec-card i {
  font-size: 22px;
  color: #000;
  margin-bottom: 6px;
}

.spec-card p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* VIDEO */
.specialise-video {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
}

.specialise-video video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blloom-hero {
  position: relative;
  width: 100%;
  height: 78vh;
  overflow: hidden;
  background: #000;
}

.blloom-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

/* DARK LUXURY FADE */
.blloom-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.55)
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  color: #fff;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.hero-overlay h1 {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 4px;
  margin: 0;
}

.hero-btn {
  margin-top: 12px;
  width: fit-content;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 1px;
}
/* DEFAULT → MOBILE */
.desktop-home {
  display: none;
}

.mobile {
  display: block;
}

/* DESKTOP */
@media (min-width: 1024px) {
  .desktop-home {
    display: block;
  }

  .mobile {
    display: none;
  }
}
/* Thin white strip */
.top-strip {
  height: 30px;                 /* thin & premium */
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Handwritten luxury text */
.brand-script {
 font-family: 'Playfair Display', serif;
    font-size: 20px;
  font-weight: 350;
  letter-spacing: 1px;
  color: #000;
}
.blloom-hero img {
  height: 30%;
  width: 100%;
  object-fit: cover;
}
.product-filter {
  padding: 16px;
  background: #f7f6f3;
}

/* CATEGORY TABS (MEN / WOMEN) */
.category-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.cat-tab {
  flex: 1;
  padding: 12px 0;
  border-radius: 30px;
  border: 1px solid #000;
  background: transparent;
  font-family: "Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.cat-tab.active {
  background: #000;
  color: #fff;
}

/* SORT TABS (NEWEST / POPULAR) */
.sort-tabs {
  display: flex;
  gap: 10px;
}

.sort-tab {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #000;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.sort-tab.active {
  background: #000;
  color: #fff;
}
.product-filter {
  padding: 20px 16px 10px;
  background: #f7f6f3;
}

/* MEN / WOMEN */
.category-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.cat-tab {
  flex: 1;
  padding: 14px 0;
  border-radius: 32px;
  border: 1px solid #000;
  background: transparent;
  font-family: "Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.cat-tab .icon {
  font-size: 18px;
  line-height: 1;
}

.cat-tab.active {
  background: #000;
  color: #fff;
}

/* NEWEST / POPULAR */
.sort-tabs {
  display: flex;
  gap: 18px;                 /* ⬅ increased space between pills */
  padding-left: 6px;
}

.sort-tab {
  padding: 12px 26px;        /* ⬅ bigger touch area */
  border-radius: 22px;
  border: 1px solid #000;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.sort-tab.active {
  background: #000;
  color: #fff;
}
.product-filter {
  padding: 20px 16px 10px;
  background: #f7f6f3;
}

/* MEN / WOMEN */
.category-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.cat-tab {
  flex: 1;
  padding: 14px 0;
  border-radius: 32px;
  border: 1px solid #000;
  background: transparent;
  font-family: "Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.cat-tab .icon {
  font-size: 18px;
  line-height: 1;
}

.cat-tab.active {
  background: #000;
  color: #fff;
}

/* NEWEST / POPULAR */
.sort-tabs {
  display: flex;
  gap: 18px;                 /* ⬅ increased space between pills */
  padding-left: 6px;
}

.sort-tab {
  padding: 12px 26px;        /* ⬅ bigger touch area */
  border-radius: 22px;
  border: 1px solid #000;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.sort-tab.active {
  background: #000;
  color: #fff;
}
.flash-sale {
  background: #f6f1eb;
  padding: 24px 16px;
}

/* TITLE */
.section-title {
  font-family: "Garamond", serif;
  font-size: 28px;
  margin-bottom: 16px;
}

/* MEN / WOMEN */
.gender-text {
  font-family: "Garamond", serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.gender {
  color: #aaa;
}

.gender.active {
  color: #000;
}

.divider {
  margin: 0 10px;
  color: #ccc;
}

/* WHITE MODEL BLOCK */
.model-block {
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.model-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

/* PRODUCTS BLOCK */
.products-block {
  background: #f6f1eb;
}

/* NEWEST / POPULAR */
.sort-text {
  display: flex;
  gap: 24px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.sort {
  color: #aaa;
}

.sort.active {
  color: #000;
}
/* ===== FINAL RESPONSIVE OVERRIDE (DO NOT TOUCH ABOVE) ===== */

/* DEFAULT: DESKTOP / LAPTOP */
.desktop_header {
  display: block !important;
}

.mobile_header {
  display: none !important;
}

/* MOBILE ONLY */
@media screen and (max-width: 768px) {
  .desktop_header {
    display: none !important;
  }

  .mobile_header {
    display: block !important;
  }
}

/* ===== biAX PAGE ===== */

.biax-page {
  background: #f6f1eb;
  height: 100vh;
}

.biax-wrapper {
  max-width: 420px;
  margin: auto;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.biax-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.biax-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.bot-msg {
  background: #f6f1eb;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 10px;
}

.user-msg {
  background: #000;
  color: #fff;
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  text-align: right;
}

.biax-input {
  display: flex;
  border-top: 1px solid #eee;
}

.biax-input input {
  flex: 1;
  border: none;
  padding: 14px;
}

.biax-input button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 18px;
}


/* ===== biAX FLOATING BUTTON ===== */
#biax-float-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

#biax-float-btn img {
  width: 28px;
  height: 28px;
}

/* ===== SIDE CHAT PANEL ===== */
#biax-panel {
  position: fixed;
  right: -380px;
  bottom: 0;
  width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  z-index: 9998;
}

#biax-panel.active {
  right: 0;
}

/* HEADER */
.biax-panel-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.biax-panel-header img {
  height: 26px;
}

.biax-actions button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* CHAT */
.biax-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.bot-msg {
  background: #f6f1eb;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  max-width: 85%;
}

/* INPUT */
.biax-input {
  display: flex;
  border-top: 1px solid #eee;
}

.biax-input input {
  flex: 1;
  border: none;
  padding: 14px;
  outline: none;
}

.biax-input button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 18px;
}

/* MOBILE: hide desktop chatbot */
@media (max-width: 768px) {
  #biax-float-btn,
  #biax-panel {
    display: none;
  }
}
