  /* ==============================
         FONT & GLOBAL RESET
      ============================== */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  html,
  body {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #e0dfe2, #35d7dd);
    color: #333;
    overflow-x: hidden;
    display: flex;

    flex-direction: column;
    min-height: 100vh;
    scroll-behavior: smooth;
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
    color: inherit;
  }


  /* ==============================
        CONTAINER
      ============================== */
  .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }

  /* ==============================
        TOP BAR (Black)
      ============================== */
  .top-bar {
    background-color: #3097ee;
    color: #fff;
    padding: 12px 0;
  }

  .top-bar .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .top-bar .inner .left,
  .top-bar .inner .right {
    display: flex;
    align-items: center;
  }

  .top-bar .inner .left a {
    color: #fff;
    margin-left: 5px;
    transition: color 0.3s ease;
  }

  .top-bar .inner .left a:hover {
    color: #ffd700;
  }

  /* Social Media Icons Styling */
/* Social Media Icons - Classy Dark Boxes */
/* Social Media Icons - Classy Smaller Dark Border with Original Colors */
/* Social Media Icons - Original Logo Colors, Classy Circular */
/* Social Media Icons - Original Logo Colors, No Border */
/* Social Media Icons - Original Logo Colors, No Border */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;       /* smaller circle */
  height: 36px;
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2); /* subtle shadow for depth */
}

/* Hover effect: slight scale + shadow */
.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 12px rgba(0,0,0,0.35);
}

/* Original Colors */
.social-icon.facebook {
  background-color: #1877F2; /* Facebook Blue */
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); /* Instagram gradient */
}

.social-icon.youtube {
  background-color: #FF0000; /* YouTube Red */
}

.social-icon.tiktok {
  background-color: #000000; /* TikTok Black */
}

/* Responsive */
@media (max-width: 768px) {
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-left: 8px;
  }
}




  /* TikTok black */


  /* ==============================
        MAIN HEADER (Dark Blue)
      ============================== */
  .main-header {
    /* background-color: #ffcc00; */
    background-color: #0039a9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
  }

  .main-header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Left: Logo */
  .main-header .left a img {
    height: 60px;
    border-radius: 0%;
    transition: transform 0.3s ease;
  }

  .main-header .left a img:hover {
    transform: scale(1.05);
  }

/* ================= CENTER: SEARCH ================= */
.main-header .center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

/* ================= SEARCH GROUP ================= */
.search-group {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 650px;
  background-color: #ffffff;
  border-radius: 999px;
  border: 2px solid #6ec1ff; /* toy blue theme */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.15);
}

/* ================= SEARCH BOX ================= */
.search-box {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative; /* for absolute button */
  padding-left: 12px;
}

/* ================= ICON ================= */
.search-box i,
.search-box svg {
  flex-shrink: 0;
  font-size: 18px;
  color: #6ec1ff;
  margin-right: 10px;
}

/* ================= INPUT ================= */
.search-box input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  outline: none;
  min-width: 0;
  border-radius: 0;
}

/* ================= BUTTON ================= */
.search-box button {
  position: absolute; /* ensures button is at right corner */
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #0d6efd, #6ec1ff);
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0 999px 999px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.search-box button:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
  background: linear-gradient(135deg, #0b53c7, #4bb0ff);
}

/* ================= REMOVE OLD DIVIDER ================= */
.search-group > *:not(:last-child) {
  border-right: none;
}

/* ================= FOCUS EFFECT ================= */
.search-group:focus-within {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .search-box input {
    font-size: 14px;
    padding: 10px 12px;
  }

  .search-box button {
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .search-group {
    border-radius: 18px;
  }

  .search-box button {
    border-radius: 0 18px 18px 0;
  }
}


  /* Right: Cart & My Account */
  .main-header .right {
    display: flex;
    gap: 20px;
  }

  .main-header .right a {
    color: #000;
    background-color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 14px;
  }

  .main-header .right a:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.03);
  }

  .main-header .right i {
    margin-right: 5px;
    color: #0039a9;
    /* makes icon follow link color */
    transition: color 0.3s ease;

  }


  /* But make sure it inherits on hover */
  .main-header .right a:hover i {
    color: inherit;
    /* now icon turns white on hover */
  }

  /* ==============================
        BOTTOM NAVIGATION BAR (Sticky)
      ============================== */
  .scroll-nav {
    background: linear-gradient(to top, #87CEEB, #1E90FF);
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .scroll-nav .container {
    display: flex;
    justify-content: center;
  }

  .scroll-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .scroll-nav ul li a {
    color: #f9f8f8;
    font-weight: bolder;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .scroll-nav ul li a:hover {
    background-color: #213e6a;
    color: #fff;
    transform: scale(1.05);
  }

  .scroll-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }

    to {
      transform: translateY(0);
    }
  }

  @media (max-width: 992px) {
    .top-bar .inner {
      flex-direction: column;
      align-items: center;
      gap: 5px;
      padding: 10px;
    }

    .main-header .inner {
      flex-direction: column;
      gap: 10px;
      padding: 10px;
    }

    .main-header .center {
      order: 2;
      width: 100%;
      justify-content: center;
    }

    .search-box input {
      width: 80%;
    }

    .main-header .right {
      order: 3;
    }

    .scroll-nav ul {
      flex-direction: column;
      gap: 10px;
    }
  }

  @media (max-width: 768px) {
    .search-box input {
      width: 200px;
    }

    .search-box button {
      padding: 8px 12px;
    }

    .scroll-nav ul li a {
      font-size: 14px;
      padding: 8px 10px;
    }
  }

  .scroll-nav .hamburger {
    display: none;
    cursor: pointer;
  }

  .scroll-nav .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
  }

  @media (max-width: 768px) {
    .scroll-nav {
      display: flex;
      justify-content: space-between;
      padding: 10px;
    }

    .scroll-nav .container {
      display: none;
      width: 100%;
      text-align: center;
    }

    .scroll-nav .container.active {
      display: block;
    }

    .scroll-nav .hamburger {
      display: block;
      cursor: pointer;
    }

    .scroll-nav .hamburger div {
      width: 25px;
      height: 3px;
      background-color: rgb(243, 237, 237);
      margin: 5px 0;
    }
  }

  /* ==============================
        FOOTER STYLING
      ============================== */
  footer {
    background-color: #5aa1ed;
    color: white;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-logo img {
  
    width: 160px;
    height: auto;
    border-radius: 0%;
    border: 2px solid white;
    transition: transform 0.3s ease;
  }

  .footer-logo img:hover {
    transform: scale(1.1);
  }

  .footer-logo p {
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
  }

  .footer-links h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-links ul {
    list-style-type: none;
    padding: 0;
  }

  .footer-links ul li a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    display: block;
    transition: 0.3s ease;
  }

  .footer-links ul li a:hover {
    color: #213e6a;
    padding-left: 10px;
  }

  .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-contact p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
  }

  .social-icons a:hover {
  
    transform: scale(1.2);
  }

  .footer-copyright {
    background-color: #2067a0;
    padding: 12px 0;
    text-align: center;
    color: white;
    font-size: 14px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }

    .footer-logo img {
      width: 100px;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
      text-align: center;
    }

    .footer-links ul {

      padding-left: 0;
    }

  }

  /* ==============================
        PAGINATOR STYLING & ANIMATIONS
      ============================== */
  .paginator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap;
  }

  .page-link,
  .page-number {
    text-decoration: none;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
    cursor: pointer;
  }

  .page-link:hover,
  .page-number:hover {
    background: linear-gradient(45deg, #0056b3, #0099cc);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.5);
  }

  .page-number {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
  }

  .page-number.active {
    background: linear-gradient(45deg, #ff7eb3, #ff758c);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 118, 150, 0.5);
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .page-link:hover,
  .page-number:hover {
    animation: bounce 0.4s ease-in-out;
  }

  @media (max-width: 768px) {
    .paginator {
      flex-direction: column;
      gap: 8px;
    }

    .page-link,
    .page-number {
      padding: 8px 14px;
      font-size: 14px;
    }
  }

  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: translateY(50px) scale(0.85);
    }

    60% {
      opacity: 1;
      transform: translateY(-15px) scale(1.05);
    }

    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .product-card {
    opacity: 0;
    transform: translateY(50px) scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .product-card.visible {
    opacity: 1;
    animation: bounceIn 1.5s ease-in-out forwards;
  }


  /* WhatsApp button initially hidden */
.whatsapp-button {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;

  opacity: 1;
  pointer-events: auto;   /* ✅ FIX */
}


.whatsapp-button.show {
  opacity: 1;
  /* show after scrolling */
  pointer-events: auto;
  /* clickable */
}

/* Hover effect */
.whatsapp-button:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

