* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a2e);
  color: #f5f5f5;
  padding: 0 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  border-bottom: 2px solid #00ffd0;
  flex-wrap: wrap;
}

header>nav:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

header img {
  width: 60px;
  border-radius: 10px;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #00ffd0;
}

.cart{
  padding: 0 15px;
}

/* ================================
   Default (Desktop – unchanged UI)
  ================================*/

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #0f0f1f;
    border-bottom: 1px solid #2a2a40;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.hamburger {
    display: none;
}

/* ================================
            NAV HIGHLIGHT
  ================================*/

.site-header .nav-links a {
  position: relative;
  color: #ccc;
  transition: color 0.2s ease;
}

.site-header .nav-links a.active {
  color: #00ffd0;
  font-weight: 600;
}

.site-header .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #00ffd0;
  border-radius: 2px;
}

/* ================================
   CART COUNT BADGE - FIXED POSITIONING
  ================================*/

.site-header .cart {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #00ffd0;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 255, 208, 0.5);
  z-index: 10;
}

.cart-count:not(:empty) {
  display: flex;
}

@keyframes badgePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.cart-badge-pop {
  animation: badgePop 0.3s ease-in-out;
}

/* ================================
      MOBILE HAMBURGER LOGIC
  ================================*/
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #0f0f1f;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 18px;
        display: none;
        z-index: 1000;
        border-top: 1px solid #2a2a40;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links nav {
        width: 100%;
        text-align: center;
    }

    .cart-count {
        top: -6px;
        right: -6px;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

/* BUTTON */
button {
  background-color: #00ffd0;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: #00c2a6;
  transform: scale(1.05);
}

/* =========================
   FOOTER BASE
========================= */

footer {
  background: #0b0b16;
  color: #cfcfcf;
  border-top: 1px solid #1f1f33;
  margin-top: 60px;
  font-size: 0.9rem;
}

footer section {
  width: 100%;
}

footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.section-1-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-1-heading img {
  width: 42px;
  height: auto;
}

.section-1-heading h2 {
  font-size: 1.2rem;
  color: #ffffff;
}

.section-1-description p {
  line-height: 1.6;
  color: #bdbdbd;
}

.section-2-heading h3,
.section-3-heading h3,
.section-4-heading h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #ffffff;
  border-bottom: 1px solid #2a2a40;
  padding-bottom: 6px;
}

.section-2-description ul,
.section-3-description ul {
  list-style: none;
  padding: 0;
}

.section-2-description li a,
.section-3-description li a{
  margin-bottom: 8px;
  cursor: pointer;
  color: #bdbdbd;
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
}

.section-2-description li a:hover,
.section-3-description li a:hover {
  color: #00ffd0;
  padding-left: 6px;
}

.section-4-description {
  display: flex;
  gap: 12px;
  align-items: center;
}

.section-4-description img {
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 50%;
  background: #141428;
  border: 1px solid #2a2a40;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.section-4-description img:hover {
  transform: translateY(-3px);
  border-color: #00ffd0;
}

footer .rights {
  text-align: center;
  padding: 14px 10px;
  border-top: 1px solid #1f1f33;
  font-size: 0.8rem;
  color: #9a9a9a;
}

@media (max-width: 900px) {
  footer .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 500px) {
  footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-1-heading {
    justify-content: center;
  }

  .section-4-description {
    justify-content: center;
  }
}

/* ================================
   FLOATING WHATSAPP SUPPORT BOT
  ================================*/

.floating-support-bot {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-support-bot:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.floating-support-bot img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 768px) {
  .floating-support-bot {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .floating-support-bot img {
    width: 30px;
    height: 30px;
  }
}

.floating-support-bot::before {
  content: '24/7 Support';
  position: absolute;
  right: 70px;
  background: #0a0a14;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.floating-support-bot:hover::before {
  opacity: 1;
}
