  :root {
  --primary-color: #00b6d6;
  --c-primary:    #00b6d6;
  --c-primary-dk: #0092ad;
  --c-accent:     #ff6b2b;
  --c-gold:       #f5b000;
  --c-green:      #16a34a;
  --c-red:        #dc2626;
  --c-bg:         #ffffff;
  --c-bg2:        #f5f7fa;
  --c-bg3:        #eef0f4;
  --c-surface:    #ffffff;
  --c-text:       #111827;
  --c-text2:      #4b5563;
  --c-text3:      #9ca3af;
  --c-border:     #e5e7eb;
  --c-border2:    #d1d5db;
  --r:            12px;
  --r-sm:         8px;
  --r-xs:         6px;
  --fh:
      Inter,
      SF Pro Display,
      Segoe UI,
      Helvetica Neue,
      Arial,
      sans-serif;
  --fb:
      Inter,
      SF Pro Text,
      Segoe UI,
      Roboto,
      Helvetica,
      Arial,
      sans-serif;
}
html{
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
    scroll-behavior: smooth; 
}
    *{
    box-sizing:border-box;margin:0;padding:0}
  body{
    margin: auto;
    font-family:var(--fb);
    color:var(--c-text);
    line-height:1.6; background:#f7f8fa;font-family:'Inter',sans-serif}

   /* 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;
    min-height: 420px;
    display: flex;
    padding: 120px 0px 40px 0px;
    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;
}

 #toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
  transform: translateY(-20px);
  transition: 0.3s ease;
  z-index: 9999;
}

#toast.show {
  display: block;
  transform: translateY(0);
}

#toast.success { background: #28a745; }
#toast.error { background: #dc3545; }

.cart-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden;
        transition: .3s; z-index: 999;
      }
      .cart-overlay.active { opacity: 1; visibility: visible; }

      .cart-drawer {
        position: fixed; top: 0; right: -100%;
        width: 380px; height: 100%;
        background: white; z-index: 1000;
        display: flex; flex-direction: column;
        transition: .4s ease;
      }
      .cart-drawer.active { right: 0; }

      .cart-header {
        display: flex; justify-content: space-between;
        padding: 20px; border-bottom: 1px solid #eee;
        color: var(--primary-color);
      }
      .close-cart { background: none; border: none; cursor: pointer; color: #fa2121; }

      .cart-items { flex: 1; overflow-y: auto; padding: 20px; }

      .cart-item { display: flex; gap: 12px; margin-bottom: 20px; }
      .cart-item img { width: 60px; height: 60px; object-fit: contain; border-radius: 6px; border: 1px solid #eee; }
      .cart-item-info { flex: 1; }
      .cart-item-info h4 { font-size: 14px; margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }
      .cart-item-info span { color: var(--primary-color); font-weight: bold; }

      .cart-qty { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
      .cart-qty button {
        width: 28px; height: 28px; border: none; background: #f1f1f1;
        cursor: pointer; border-radius: 4px; font-size: 16px; font-weight: 600;
        transition: background .15s;
      }
      .cart-qty button:hover { background: #e0e0e0; }

      .remove-btn { background: none; border: none; color: red; cursor: pointer; font-size: 12px; margin-top: 4px; }
      .remove-btn:hover { text-decoration: underline; }

      .cart-footer { padding: 20px; border-top: 1px solid #eee; }
      .cart-total { display: flex; justify-content: space-between; margin-bottom: 15px; font-family: 'DM Sans', sans-serif; }

      .checkout-btn {
        width: 100%; padding: 13px; background: var(--primary-color);
        color: white; border: none; border-radius: 8px; cursor: pointer;
        font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
        transition: background .2s;
      }
      .checkout-btn:hover { background: #0092ad; }

      .add-cart.added { background: green; }

      .cart-empty {
        text-align: center; padding: 40px 20px;
        font-family: 'DM Sans', sans-serif; color: #888; font-size: 14px;
      }
      .cart-empty svg { margin-bottom: 12px; opacity: .4; }

      
      /* ===== 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 {
  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);
}
.live-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}
.live-category {
  padding: 8px 12px;
  color: #00b6d6;
  display: block;
  text-decoration: none;
}
.live-title {
  padding: 8px 12px;
  font-size: 12px;
  opacity: 0.7;
}

/* ================= 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;
  }
    .cookie-banner {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      padding: 1rem;
    }
    .cookie-actions {
      width: 100%;
      justify-content: flex-end;
    }
  }
  @media (max-width: 500px) { .cart-drawer { width: 100%; } }