/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  padding-top: 70px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  transition: box-shadow 0.3s ease, height 0.3s ease;
  height: 70px;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ================= CONTAINER ================= */
.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ================= LOGO ================= */
.logo img {
  height: 30px;
  width: auto;
  transition: height 0.3s ease;
}

/* ================= DESKTOP NAV ================= */
.main-nav {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list a {
  text-decoration: none;
  color: #000;
  padding: 6px 16px;
  border-radius: 30px;
  background: #f0f6fa;
  transition: all 0.3s ease;
}

/* DESKTOP ACTIVE + HOVER */
.nav-list a.active,
.nav-list a:hover {
  background-color: #38bdf8 !important; /* blue bg */
  color: #fff !important;               /* white text */
}

/* ================= BUTTON ================= */
.btn-primary {
  background: linear-gradient(90deg, #000, #38bdf8);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  filter: brightness(1.2);
}

/* ================= MOBILE ================= */
.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 90px;
}

/* MOBILE MENU */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.95);
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* MOBILE ACTIVE + HOVER */
.mobile-nav a.active,
.mobile-nav a:hover {
  background-color: #38bdf8 !important; /* blue bg */
  color: #fff !important;
  font-weight: 600;
}

.mobile-btn {
  margin-top: 24px;
  text-align: center;
}

/* SHOW MOBILE MENU */
.mobile-nav.open {
  display: block;
}

/* ================= SHOP BUTTON ================= */
#shop-today {
  display: none;
}

/* ================= RESPONSIVE ================= */
@media (min-width: 992px) {
  .main-nav {
    display: block;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  #shop-today {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .logo img {
    height: 24px;
  }

  .site-header {
    height: 50px;
  }
}
