* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  /* 🌊 ANIMATED SKY BACKGROUND */
  body {
    background: linear-gradient(-45deg, #87ceeb, #00bfff, #6dd5fa, #2193b0);
    background-size: 400% 400%;
    animation: bgMove 10s ease infinite;
    color: white;
  }
  
  @keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* APP */
  .app {
    max-width: 420px;
    margin: 0 auto;   /* remove top space */
    min-height: 100vh;
  }
 
  /* ✨ HEADER GLASS */
  header {
    display: flex;
    justify-content: space-between; /* VERY IMPORTANT */
    align-items: center;
    padding: 10px 15px;
    position: relative;
  }
  header {
    margin: 0;
    padding: 5px 10px; /* reduce top gap */
  }
 
  /* LOGO GLOW */
  header h1 {
    letter-spacing: 4px;
    text-shadow:
      0 0 10px rgba(255,255,255,0.8),
      0 0 20px rgba(0,191,255,0.9);
  }
  
  /* MENU */
  .menu-icon {
    font-size: 22px;
    cursor: pointer;
  }
  
  /* SIDE MENU SLIDE */
  .side-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 65%;
    height: 100%;
  
    background-color: #ffffff; /* ✅ solid white */
    opacity: 1; /* ✅ full solid */
  
    backdrop-filter: none; /* ❌ remove blur */
    
    z-index: 9999; /* ✅ VERY IMPORTANT */
    
    padding: 25px;
    transition: 0.4s;
  }

  .side-menu a {
    display: block;   /* ✅ makes each item go to new line */
    margin: 15px 0;
    color: #00bfff;
    font-size: 18px;
    text-decoration: none;
  }

  .side-menu a:hover {
    color: #0080ff; /* darker blue on hover */
    transform: translateX(5px);
  }
  
  .side-menu.active {
    right: 0;
  }
  
  /* 💎 HERO */
  .hero {
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
  }
  
  
  .hero h2 {
    font-size: 32px;
    letter-spacing: 6px;
  }
  
  .tagline {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
  }
  
  /* 🧊 PRODUCTS */
  .products {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    padding: 15px;
  }
  
  /* 💎 CARD */
  .card {
    padding: 12px;
    border-radius: 18px;
    text-align: center;
  
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(15px);
  
    box-shadow:
      0 10px 30px rgba(0,0,0,0.2),
      inset 0 1px 2px rgba(255,255,255,0.4);
  
    transform: translateY(30px);
    opacity: 0;
    animation: cardShow 0.8s ease forwards;
  }
  
  /* DELAY ANIMATION */
  .card:nth-child(1) { animation-delay: 0.2s; }
  .card:nth-child(2) { animation-delay: 0.4s; }
  .card:nth-child(3) { animation-delay: 0.6s; }
  
  /* HOVER FLOAT */
  .card:hover {
    transform: translateY(-8px) scale(1.05);
  }
  
  /* IMAGE */
  .card img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
  }
  
  /* IMAGE ZOOM */
  .card:hover img {
    transform: scale(1.08);
  }
  
  /* TEXT */
  .card h3 {
    margin-top: 8px;
    font-size: 14px;
  }
  
  .card p {
    font-size: 13px;
    opacity: 0.9;
  }
  
  /* PRODUCT PAGE */
  .product-page {
    padding: 20px;
    text-align: center;
    animation: fadeUp 1s ease;
  }
  
  .product-page img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
  }
  
  /* ZOOM ON TAP */
  .product-page img:active {
    transform: scale(1.2);
  }
  
  /* ✨ ANIMATIONS */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes cardShow {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 💿 FLOATING ORB */
  .orb {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .orb img {
    width: 80px;   /* size adjust ചെയ്യാം */
    height: 80px;
    border-radius: 50%; /* optional (circle look വേണമെങ്കിൽ) */
  }
  
  /* FLOAT ANIMATION */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
  /* ✨ GLOW TEXT */
  .glow-text {
    font-size: 36px;
    letter-spacing: 6px;
    text-shadow:
      0 0 10px rgba(255,255,255,1),
      0 0 20px rgba(0,191,255,1),
      0 0 40px rgba(0,191,255,0.8);
    animation: glowPulse 2s infinite alternate;
  }
  
  /* GLOW ANIMATION */
  @keyframes glowPulse {
    from { opacity: 0.7; }
    to { opacity: 1; }
  }
  
  /* 💎 BUTTON */
  .explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 14px;
  
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
  
    box-shadow:
      0 0 15px rgba(255,255,255,0.5),
      inset 0 0 10px rgba(255,255,255,0.3);
  
    transition: 0.3s;
  }
  
  /* BUTTON HOVER */
  .explore-btn:hover {
    transform: scale(1.1);
  }
  /* 💚 WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 14px;
  
    background: linear-gradient(45deg, #25D366, #128C7E);
  
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
  }
  
  /* HOVER */
  .whatsapp-btn:hover {
    transform: scale(1.1);
  }
  /* 🧊 CATEGORY SECTION */
.categories {
  padding: 20px;
}

/* CATEGORY CARD */
.category-card {
  display: block;
  text-decoration: none;
  color: white;
  border-radius: 20px;
  overflow: hidden;
  
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* TEXT */
.category-card h3 {
  text-align: center;
  padding: 12px;
  font-size: 18px;
}

/* HOVER */
.category-card:hover {
  transform: scale(1.05);
}

/* CLICK EFFECT */
.category-card:active {
  transform: scale(0.95);
}
.logo-img {
  height: 40px;
  object-fit: contain;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.menu-icon {
  position: absolute;
  right: 15px;
}
.logo-img {
  height: 45px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
}
.categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.category-card img {
  width: 100%;
  display: block;
}
.categories {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px;
}

.category-card {
  width: 100% !important;
}

.category-card img {
  width: 100% !important;
  display: block;
}
.orb img {
  width: 80px;
  filter: drop-shadow(0 0 10px white);
}
.title-img {
  width: 180px;   /* adjust size */
  display: block;
  margin: 10px auto; /* center it */
}
.title-img {
  margin: 0;          /* remove all margins */
  display: block;
}
.title-img {
  width: 150px;
  display: block;
  margin: 0 auto;
}



.logo-img {
  display: none;
}
html, body {
  margin: 0;
  padding: 0;
}
.title-img {
  display: block;
  margin: 0 auto;
  padding: 0;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
}

.footer {
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
  opacity: 0.9;
}

.footer p {
  margin: 5px 0;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p:first-child {
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin: 20px 0 10px;
  font-size: 18px;
  letter-spacing: 2px;
}

.best-selling {
  padding: 10px 15px 20px;
}

.about {
  text-align: center;
  padding: 25px 20px;
  font-size: 12px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0.9;
}

.about p {
  margin-bottom: 12px;
}

.card {
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: white;
  margin: 8px auto;
}

.faq {
  padding: 20px;
}

.faq-item {
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.faq-item h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.faq-item p {
  font-size: 13px;
  opacity: 0.8;
}

.faq-item p {
  display: none;
}

.faq-item.active p {
  display: block;
}

.card:hover {
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 15px;
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 15px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999; /* 🔥 THIS FIXES IT */
}

.whatsapp-float i {
  color: white;
  font-size: 26px;
}
* {
  font-family: 'Poppins', sans-serif;
}