* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
 background-color: #fff;  
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0); /* fully transparent */
  backdrop-filter: blur(0px); /* optional */
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}
/* Navbar hover */
.navbar:hover {
  background: rgba(255, 255, 255, 0.8);
}

.nav-left, .nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-left a,
.nav-right a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: rgb(189, 189, 189);
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #111;
  letter-spacing: 2px;
  font-weight: 600;
  z-index: 999;  /* Ensure logo is above other elements */
}


/* SECTION 1 – HERO */
.hero‑lookbook {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero‑lookbook .hero‑img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease‑out;
}
.hero‑lookbook:hover .hero‑img {
  transform: scale(1.05);
}
.hero‑overlay {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}
.hero‑overlay h2 {
  font‑size: 16px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.hero‑overlay h1 {
  font‑size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero‑overlay p {
  font-size: 18px;
  max-width: 500px;
}
.divider {
  width: 60px;
  border: 1px solid #fff;
  margin‑top: 20px;
}

/* SECTION 2 – STATEMENT BLOCK */
.statement‑block {
  padding: 120px 40px;
  text-align: center;
  background: #f5f5f5;
  color: #333;
}
.statement‑block p {
  font-size: 24px;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SECTION 3 – GALLERY */
.gallery‑quiet‑standard {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 80px 40px;
}
.gallery‑left .gallery‑img.large {
  width: 100%;
  height: auto;
}
.gallery‑right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.gallery‑img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery‑img:hover {
  transform: scale(1.02);
  filter: grayscale(0.2);
}
.caption {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* SECTION 4 – ESSENTIALS IN MOTION */
.essentials‑motion {
  display: flex;
  align-items: center;
  padding: 80px 40px;
  gap: 40px;
}
.motion‑text {
  flex: 1;
  max-width: 300px;
}
.motion‑carousel {
  flex: 2;
  display: flex;
  overflow-x: auto;
  gap: 20px;
}
.motion‑img {
  width: 300px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.motion‑img:hover {
  transform: scale(1.05);
}

/* SECTION 5 – BETWEEN MOMENTS */
.between‑moments {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.full‑bleed‑img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.text‑right {
  position: absolute;
  right: 10%;
  bottom: 20%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.75);
}
.text‑right h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.text‑right p {
  font-size: 18px;
  max-width: 400px;
  line-height: 1.4;
}

/* SECTION 6 – PRODUCT LINE (STUDIO SHOTS) */
.product‑line‑studio {
  background: #eaeaea;
  padding: 80px 40px;
  text-align: center;
}
.product‑line‑studio h2 {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 40px;
}
.studio‑grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.studio‑img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.studio‑img:hover {
  transform: scale(1.03);
}

/* SECTION 7 – BRAND CLOSER / QUOTE */
.brand‑closer {
  padding: 120px 40px;
  text-align: center;
  background: #111;
  color: #fff;
}
.brand‑closer p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.8;
}
.brand‑closer h2 {
  font-size: 32px;
  letter-spacing: 4px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery‑quiet‑standard {
    grid-template-columns: 1fr;
  }
  .essentials‑motion {
    flex-direction: column;
  }
  .motion‑img {
    width: 100%;
  }
  .text‑right {
    right: 5%;
    bottom: 10%;
    font-size: 14px;
  }
}

/* teller bag stil */
.bag-link {
  position: relative;
}

.bag-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bag-count.show {
  opacity: 1;
  transform: scale(1);
}

.bag-count.pulse {
  animation: pulse 0.6s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}