  :root {
  --primary-color: #00b6d6;
    }
    *{
    box-sizing: border-box;
    }
  body{
    margin: auto;
   }

   /* NAVBAR BASE */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
}

/* CONTAINER */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: auto;
}

/* LOGO */
.logo {
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* ================= MEGA MENU ================= */
.mega-wrapper {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #0a0f1c;
  padding: 20px;
  display: flex;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mega-wrapper:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-column h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.mega-column a {
  display: block;
  color: white;
  margin-bottom: 6px;
}

/* ================= CART ================= */
.cart-wrapper {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary-color);
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #0a0f1c;
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  transition: 0.4s ease;
}

.mobile-menu a {
  color: white;
  margin-bottom: 20px;
  text-decoration: none;
}

.mobile-menu.active {
  right: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

   /* LOGO */
.logo {
  font-size: 32px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-color);
}

/* NAV LINKS */
.nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
}
.nav-links a:hover{
    color: var(--primary-color);
}

/* BETTER SPACING FOR ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .nav-container {
    padding: 14px 16px;
  }

  .nav-actions {
    gap: 12px;
  }

  .icon-btn svg {
    width: 20px;
  }

  .hamburger span {
    width: 22px;
  }
}

/* ================= DRAWER ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #0a0f1c;
  padding: 20px;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

/* HEADER */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.drawer-logo {
  font-weight: 800;
  font-size: 20px;
  color: white;
}

.drawer-logo span {
  color: var(--primary-color);
}

/* CLOSE BUTTON */
.close-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* LINKS */
.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.icon-btn{
    height: 36px;
    width: 36px;
    border-radius: 18px;
    outline: none;
    border: none;
    color: var(--primary-color);
}

/* ================= HERO BASE ================= */
.hero-global {
  position: relative;
  height: 80vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
}

.hero-bg img {
    width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background: rgba(10, 15, 28, 0.75);
}

/* CONTENT */
.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

/* TITLE */
.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
  line-height: 1.2;
}

/* ================= SEARCH BAR ================= */
.hero-search {
    display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 8px;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ICON */
.search-icon {
  color: #aaa;
  padding-left: 10px;
}

/* INPUT */
.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 12px;
  font-size: 15px;
}

.hero-search input::placeholder {
  color: #aaa;
}

/* BUTTON */
.hero-search button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.hero-search button:hover {
  background: #009bb5;
}

/* ===== COOKIE BANNER STYLE ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  animation: fadeInUp .8s ease-in-out;
  font-size: 0.9rem;
}

.cookie-text {
  flex: 1;
  color: #333;
  line-height: 1.5;
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 6px;
  padding: .5rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  transition: all .3s ease;
}

.cookie-btn.accept {
  background: var(--primary-color);
  color: #fff;
}

.cookie-btn.accept:hover {
  background: var(--primary-color);
}

.cookie-btn.decline {
  background: #f3f3f3;
  color: #333;
}

.cookie-btn.decline:hover {
  background: #e6e6e6;
}

@keyframes fadeInUp {
  from {
    transform: translate(-50%, 40px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}


/* LIVE SEARCH BOX */
.live-search-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #0a0f1c;
  border-radius: 12px;
  margin-top: 10px;
  overflow: hidden;
  display: none;
  z-index: 999;
}

/* ITEM */
.live-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.live-item:hover {
  background: rgba(255,255,255,0.05);
}

/* IMAGE */
.live-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

/* CATEGORY */
.live-category {
  padding: 8px 12px;
  color: #00b6d6;
  display: block;
  text-decoration: none;
}

/* SECTION TITLE */
.live-title {
  padding: 8px 12px;
  font-size: 12px;
  opacity: 0.7;
}


/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .hero-title {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .hero-global {
    height: auto;
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-search {
      flex-direction: column;
    border-radius: 20px;
    padding: 15px;
  }

  .hero-search input {
    width: 100%;
    text-align: center;
  }

  .hero-search button {
    width: 100%;
  }

  .search-icon {
    display: none;
}
}