/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(48, 48, 47, 0.1);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 72px;
  box-shadow: none
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-top {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 15px;
  color: #f5ead0;
  letter-spacing: 0.12em;
}

.navbar__logo-bottom {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 15px;
  color: #edb44d;
  letter-spacing: 0.12em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 234, 208, 0.7);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #edb44d;
  transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
  color: #edb44d;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #edb44d;
  border: 1.5px solid #edb44d;
  padding: 10px 26px;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.navbar__cta:hover {
  background: #edb44d;
  color: #1a0d05;
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.4);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c9a84c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar__hamburger { display: flex; }

  .navbar__links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(26, 13, 5, 0.3);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }

  .navbar__links.open {
    max-height: 300px;
    padding: 16px 0 24px;
  }

  .navbar__links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .navbar__cta { display: none; }
}

/* ── Variables ── */
:root {
  --brown-dark:   #2a1a0e;
  --brown-mid:    #5c3317;
  --brown-bg:     #3d1f0d;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --cream:        #f5ead0;
  --white:        #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--brown-dark);
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

/* ── Hero wrapper ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Background ── */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('4.jpg') center/cover no-repeat;
  z-index: 0;
}

/* dark vignette to push focus inward */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 30%, rgba(20,8,2,0.55) 100%);
}

/* ── Grain overlay ── */
.hero__grain {
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

/* ── Copy (left) ── */
.hero__copy {
  position: relative;
  z-index: 10;
  padding-left: clamp(32px, 6vw, 100px);
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Logo */
.hero__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.logo-top {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  color: #572d0c;
  text-shadow: 0 2px 24px rgba(201,168,76,0.18);
}

.logo-bottom {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  color:#edb44d;
  text-shadow: 0 2px 32px rgba(201,168,76,0.35);
}

/* Tagline */
.hero__tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 42px);
  color: #281e18;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* Body copy */
.hero__body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.4vw, 20px);
  color: #361e0b;
  opacity: 0.82;
  line-height: 1.9;
  font-weight: 400;
}

/* CTA */
.hero__cta {
  display: inline-block;
  width: fit-content;
  margin-top: 6px;
  padding: 14px 38px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.hero__cta:hover {
  background: var(--gold);
  color: var(--brown-dark);
  box-shadow: 0 0 28px rgba(201,168,76,0.45);
}

/* ── Animated Scene (center) ── */
.hero__scene {
  position: absolute;
  /* Center-right positioning */
  left: 50%;
  top: 50%;
  transform: translate(-20%, -50%);
  z-index: 5;

  width: clamp(260px, 32vw, 480px);
  height: clamp(320px, 45vw, 580px);

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* ── Cup ── */
.cup {
  position: absolute;
  bottom: 30px;
  left: 70%;
  transform: translateX(-100%);
  width: clamp(470px, 17vw, 60px);
  z-index: 6; /* always above girls */
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.55));
  pointer-events: none;
}

/* ── Girls shared ── */
.girl {
  position: absolute;
  bottom: 0;
  width: clamp(110px, 14vw, 140px);
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

/* Sleepy girl — pivot bottom-right, sits right of cup */
.girl--sleepy {
  bottom: 110px;
  right: 295px;
  transform-origin: bottom right;
  z-index: 5;
  /* JS controls rotation & opacity */
  opacity: 0;
  transform: rotate(0deg);
}

/* Fresh girl — pivot bottom-left, sits left of cup */
.girl--fresh {
  bottom: 100px;
  left: -5px;
  transform-origin: bottom left;
  z-index: 5;
  /* JS controls rotation & opacity */
  opacity: 0;
  transform: rotate(60deg); /* starts hidden behind cup (rotated away) */
}

/* ── Neon Badge ── */
.neon-badge {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.neon-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.neon-text {
  font-family: 'Pacifico', cursive;
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-style: italic;
  color: #edb44d;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 8px rgba(238, 179, 92, 0.9),
    0 0 20px rgba(241, 193, 61, 0.5);
}

/* Traveling dot animation */
@keyframes neon-travel {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1000; }
}

.neon-dot {
  animation: neon-travel 3s linear infinite;
}

/* Best Seller Page */
/* ── Best Sellers ── */
.bs {
  width: 100%;
  min-height: 100vh;
  background: url('4.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px clamp(32px, 6vw, 100px);
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.bs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bs__left {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 0 0 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  margin: 0 auto;
}

.bs__label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3d1500;
  opacity: 1;
}

.bs__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: #572d0c;
  line-height: 1.1;
  transition: opacity 0.3s ease;
}

.bs__desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.4vw, 19px);
  color: #1d1d1c;
  line-height: 1.8;
  transition: opacity 0.3s ease;
}

.bs__price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #bd7812;
  transition: opacity 0.3s ease;
}

.bs__cta {
  display: inline-block;
  width: fit-content;
  padding: 14px 38px;
  border-radius: 50px;
  background: #edb44d;
  color: #0f0602;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.bs__cta:hover {
  background: #f3a513;
  box-shadow: 0 0 28px rgba(201,168,76,0.45);
}

.bs__thumbs {
  background: rgba(233, 183, 76, 0.5);
  padding: 16px 24px;
  border-radius: 60px;
  display: none;
  flex-direction: row;
  gap: 16px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.bs__thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.bs__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bs__thumb:hover {
  transform: scale(1.08);
  border-color: rgba(100, 53, 8, 0.6);
}

.bs__thumb.active {
  border-color: #eb830c;
  border-width: 2.5px;
  box-shadow: 0 0 16px rgba(94, 43, 1, 0.4);
}

.bs__right {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 520px;
}

.bs__featured {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bs__featured.switching {
  opacity: 0;
  transform: translateY(-60px) scale(0.95);
}

.bs__featured.entering {
  animation: fallIn 0.4s ease forwards;
}

@keyframes fallIn {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bs__featured.switching {
  opacity: 0;
  transform: scale(0.96);
}

.bs__section-title {
  position: absolute;
  top: 30px;
  left: 47%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #3d1500;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.bs__section-title1 {
  position: absolute;
  top: 30px;
  left: 34%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #edb44d;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ── BS Menu Cards ── */
.bs__menu {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-top: -130px;
}

.bs__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 10px 10px;
  border-radius: 60px;
  background: rgba(201, 168, 76, 0.2);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  min-width: 200px;
  border: 4px solid rgba(201, 168, 76, 0.4);
}

.bs__item:hover {
  background: rgba(201, 168, 76, 0.35);
}

.bs__item.active {
  background: rgba(180, 120, 20, 0.55);
  box-shadow: 0 4px 20px rgba(180, 120, 20, 0.3);
  border: 4px solid #edb44d;
  box-shadow: 0 0 8px rgba(237, 180, 77, 0.6),
              0 0 16px rgba(237, 180, 77, 0.3);
}

.bs__item-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(117, 45, 4, 0.4);
}

.bs__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bs__item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bs__item-num {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: rgba(82, 38, 3, 0.7);
  letter-spacing: 0.1em;
}

.bs__item-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #3d1500;
}

.bs__item.active .bs__item-name {
  color: #1a0a00;
}


/* ── Mobile Responsive ── */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero__copy {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
    text-align: center;
    align-items: center;
    z-index: 10;
  }

  .hero__scene {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 90vw;
    height: 60vw;
    margin-top: 20px;
  }

  .cup {
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
  }

  .girl--sleepy {
    width: 90px;
    right: 145px;
    bottom: 30px;
  }

  .girl--fresh {
    width: 90px;
    left: 130px;
    bottom: 30px;
  }

  .neon-badge {
    width: 180px;
    height: 50px;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
  }

  .neon-text {
  color: #814807;
  text-shadow:
    0 0 8px rgba(112, 60, 10, 0.9),
    0 0 20px rgba(163, 94, 26, 0.5);
}

.neon-dot {
  stroke: #814807;
}

.neon-svg rect {
  stroke: #814807;
}

  .hero__body {
  display: none;
}

  .neon-text {
    font-size: 15px;
  }

  /* Best Sellers */
  .bs {
  flex-direction: column;
  align-items: center;
   background-position: 55% -100%;
}

  .bs__left {
  order: 1;
}

  .bs__right {
  order: 3;
  margin-top: -40px;
}

  .bs__featured {
  max-width: 190px;  /* decrease to make smaller */
  margin-top: -180px;
  margin-left: 180px;  /* increase to move up */
}

.bs__section-title1 {
  margin-top: -87px;   /* move down */
  margin-left: -240px;  /* move right */
}

  .bs__thumbs {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-left: 220px;
  margin-top: -200px;
  order: 2;
  padding: 10px 16px;
}

  .bs__section-title,
  .bs__section-title1 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    white-space: normal;
    font-size: 28px;
    margin-bottom: 10px;
  }

  .bs__thumb {
  width: 40px;
  height: 40px;
}

  .bs__name {
    font-size: 32px;
  }

  .bs__price {
    font-size: 28px;
  }

.bs__menu {
  display: none;
}


}



