body {
  margin: 0;
   font-family: 'Raleway', sans-serif;
  /*font-family: 'Playball', cursive;*/
  background: linear-gradient(to right, #ffe9e9, #e3f2fd);
}

 h3, p {
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

header, footer {
  background: linear-gradient(to right, #272727, #3f51b5);
  color: white;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      font-family: 'Segoe UI', sans-serif;
}

nav a {
  color: #fff;
  transition: color 0.3s;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffeb3b;
}

button.see-more {
  background: linear-gradient(to right, #ff9800, #ff5722);
  color: black;
}


  a.see-more {
      display: inline-block !important;
  background: linear-gradient(to right, #ff9800, #ff5722);
 
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  
}

a.see-more:hover {
  background: linear-gradient(to right, #ff5722, #ff9800);
  transform: scale(1.05);
}

  
  
  
  
  
  

    .logo {
      display: flex;
      align-items: center;
      font-family: 'Playball';
      font-size: 20px;
      
    }
    .logo img {
      height: 40px;
      margin-right: 10px;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      font-family: 'Segoe UI', sans-serif;
    }

    
    
    

    .slider {
      width: 100%;
      max-height: 450px;
      overflow: hidden;
      position: relative;
    }
    .slider img {
      width: 100%;
       height: auto;
      max-height: 450px;
      object-fit: cover;
      display: none;
      animation: fadeIn 1s ease forwards;
    }
    .slider img.active {
      display: block;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    .categories-wrapper {
      position: relative;
      overflow: hidden;
      padding: 2rem 1rem;
    }
    .categories {
      display: flex;
      gap: 50px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }
    .category {
      text-align: center;
      flex: 0 0 auto;
    }
    .category img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .category img:hover {
      transform: scale(1.1);
    }
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      z-index: 1;
    }
    .arrow.left {
      left: 0;
    }
    .arrow.right {
      right: 0;
    }
    .products {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 1rem;
    }
    .product {
      width: 30%;
      min-width: 250px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 1rem;
      text-align: center;
      transition: transform 0.4s ease;
      opacity: 0;
      transform: scale(0.9);
      animation: appear 0.6s ease forwards;
    }
    .product img {
      width: 100%;
      border-radius: 6px;
      transition: transform 0.3s ease;
    }
    .product:hover img {
      transform: scale(1.05);
    }
    @keyframes appear {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }
/*    .see-more {*/
/*  display: block;*/
/*  width: fit-content;*/
/*  margin: 30px auto;*/
/*  padding: 10px 20px;*/
/*  background-color: #ff5722;*/
/*  color: white;*/
/*  border-radius: 5px;*/
/*  text-align: center;*/
/*  text-decoration: none;*/
/*  font-weight: bold;*/
/*}*/

    footer {
      background-color: #272727;
      color: white;
      text-align: center;
      padding: 2rem 1rem;
    }
    section {
      padding: 2rem;
      text-align: center;
    }
    h2 {
      margin-bottom: 1rem;
      color: #333;
    }
    @media (max-width: 768px) {
      .product {
        width: 90%;
      }
      nav {
        flex-direction: column;
        gap: 10px;
        padding: 1rem 0;
      }
    }
    .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}


.responsive-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.responsive-gallery img,
.responsive-gallery video {
  width: 100%;
  max-width: 360px;
  height: 220px; /* fixed height for consistency */
  object-fit: contain; /* prevents cropping */
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*.responsive-gallery {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 20px;*/
/*  justify-content: center;*/
/*}*/

/*.responsive-gallery img,*/
/*.responsive-gallery video {*/
/*  width: 100%;*/
/*  max-width: 360px;*/
/*  border-radius: 8px;*/
/*  object-fit: cover;*/
/*  box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
/*}*/
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    padding: 10px;
  }

  nav#mainMenu {
    display: none;
    flex-direction: column;
    background: #272727;
    width: 100%;
  }

  nav#mainMenu a {
    padding: 10px;
    border-top: 1px solid #444;
  }

  nav#mainMenu.show {
    display: flex;
  }
}
.back-to-top {
  position: fixed;
  bottom: 90px; /* 20px above WhatsApp */
  right: 20px;
  font-size: 28px;
  background: #ff5722;
  color: white;
  border-radius: 50%;
  padding: 10px 14px;
  text-decoration: none;
  z-index: 9998;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}



.about-section {
  background: linear-gradient(135deg, #e0f7fa, #fce4ec);
  padding: 80px 20px;
  animation: fadeIn 1.5s ease-in-out;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  margin: 50px auto;
  max-width: 1000px;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-heading {
  font-size: 42px;
  color: #6a1b9a;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
  text-shadow: 2px 2px #fff;
}

.about-heading::after {
  content: '';
  width: 80px;
  height: 5px;
  background: #ff4081;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

.about-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  background: #ffffffaa;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  animation: slideUp 1.2s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}


/*.about-section {*/
/*  background: linear-gradient(to right, #f3f4f6, #ffffff);*/
/*  padding: 80px 20px;*/
/*  text-align: center;*/
/*  animation: fadeIn 1.5s ease-in-out;*/
/*  border-radius: 20px;*/
/*  box-shadow: 0 10px 25px rgba(0,0,0,0.1);*/
/*  margin: 50px auto;*/
/*  max-width: 900px;*/
/*}*/

/*.about-title {*/
/*  font-size: 36px;*/
/*  font-weight: 700;*/
/*  color: #2c3e50;*/
/*  margin-bottom: 30px;*/
/*  position: relative;*/
/*  display: inline-block;*/
/*}*/

/*.about-title::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 60%;*/
/*  height: 4px;*/
/*  background: #3498db;*/
/*  left: 20%;*/
/*  bottom: -10px;*/
/*  border-radius: 4px;*/
/*}*/

/*.about-text {*/
/*  font-size: 18px;*/
/*  line-height: 1.8;*/
/*  color: #333;*/
/*  padding: 0 20px;*/
/*  animation: slideUp 1.2s ease;*/
/*}*/




/* Animations */
/*@keyframes fadeIn {*/
/*  0% { opacity: 0; transform: translateY(50px); }*/
/*  100% { opacity: 1; transform: translateY(0); }*/
/*}*/

/*@keyframes slideUp {*/
/*  0% { opacity: 0; transform: translateY(20px); }*/
/*  100% { opacity: 1; transform: translateY(0); }*/
/*}*/



