* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

header {
  background: #111;
  color: #ffff;
  display: flex;
  padding: 0 15px;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  gap: 20px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #f4b400;
}
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}
.sidebar {
  position: fixed;
  left: -250px;
  top: 0;
  width: 250px;
  height: 100%;
  background: linear-gradient(135deg,#f4b400,gold);
  color: #fff;
  padding: 20px;
  transition: left 0.3s;
  z-index: 1001;
}
.sidebar.active {
  left: 0;
}
.sidebar a {
  font-weight: 500;
  display: block;
  transition: color .3s;
  margin: 15px 0;
  color: #fff;
  text-decoration: none;
}

.sidebar a:hover {
  color: #000;
}

/* Slider */
.slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 310px;
  position: relative;
}
.slides {
  display: flex;
  position: absolute;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
  object-fit: cover;
}
@keyframes slide {
  0% { transform: translateX(0); }
  25% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  100% { transform: translateX(0); }
}

    .hero {
      position: relative;
      top: -30px;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #000;
      animation: fadeIn 1.5s ease-out forwards;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
    }

    .hero-content {
      position: relative;
      max-width: 90%;
      padding: 20px;
      animation: slideUp 1.5s ease forwards;
    }

    .hero-content h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-shadow: 0 3px 10px rgba(0,0,0,0.4);
    }

    .hero-content p {
      font-size: 1rem;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .btnR {
      display: inline-block;
      padding: 12px 28px;
      font-size: 1rem;
      font-weight: 600;
      color: #000;
      background: linear-gradient(135deg,#f4b400,gold);
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }

    .btnR:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    @media (min-width: 768px) {
      .hero-content h1 {
        font-size: 3rem;
      }
      .hero-content p {
        font-size: 1.25rem;
      }
      .btnR {
        font-size: 1.1rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-content h1 {
        font-size: 4rem;
      }
      .hero-content p {
        font-size: 1.4rem;
      }
    }
    
    @media (max-width: 500px) {
      .hero {
        top: -100px;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

  .categories {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(5, 1fr); 
    justify-content: center;
    background: linear-gradient(135deg,#f4b400,gold);
    overflow: hidden;
    padding: 60px 20px;
    margin-top: -50px;
  }

  .category-card {
    background: #000;
    border-radius: 8px;
    text-align: center;
    padding: 10px 6px;
    transition: transform .5s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .category-card a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(8px, 1.2vw, 16px); 
    display: block;
    font-weight: bold;
    letter-spacing: 1px;
    width: 100%;
  }

  .category-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  
  @media (max-width: 1024px) {
    .categories {
      grid-template-columns: repeat(4, 1fr);
    }
  }


  @media (max-width: 768px) {
    .categories {
      grid-template-columns: repeat(4, 1fr);
    }
  }


  @media (max-width: 480px) {
    .categories {
      grid-template-columns: repeat(2, 1fr);
    }
  }


  .products {
    padding: 50px 30px;
    display: grid;
    gap: 30px;
    justify-content: center;
    grid-template-columns: repeat(5, 1fr);
  }

  .products-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 20px 50px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
    transition: background 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(50px);
    overflow: hidden;
  }

  .products-card:hover {
    box-shadow: 0 1px 2px gold;
  }

  .products-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .products-card a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: 90%; 
    max-width: 200px;
    margin: 10px auto 15px auto;
    text-decoration: none;
    color: #fff;
    background: #000;
    padding: 10px 0;
    border-radius: 5px;
    transition: 0.3s ease-in;
    font-size: clamp(8px, 1.2vw, 16px); 
  }

.products-card:hover a {
    background: #f4b400;
  }

 
  @media (max-width: 1024px) {
    .products {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  
  @media (max-width: 768px) {
    .products {
      grid-template-columns: repeat(4, 1fr);
    }
  }


  @media (max-width: 480px) {
    .products {
      grid-template-columns: repeat(2, 1fr);
    }
  }


.wrapper {
  background: linear-gradient(135deg,#f4b400,gold);
  padding: 30px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.wrapper h1 {
  letter-spacing: 1px;
  text-align: center;
  border-radius: 7px;
  padding: 10px;
  background: #000;
  font-size: 0.9rem;
  color: gold;
  transition: transform 0.3s;
  opacity: 0;
  transform: scale(0.8);
}

 .wrapper h1:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

  .container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .card {
      border-radius: 12px;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s;
      opacity: 0;
      transform: scale(0.8);
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .card img {
      width: 100%;
    }

  
    @media (max-width: 600px) {
      .container {
        grid-template-columns: repeat(2, 1fr);
      }
      
    }


    .review-section {
      text-align: center;
      max-width: 1400px;
      margin: auto;
      padding: 70px 0;
      background: #eaeaea;
    }

    .review-section h2 {
      font-size: 2em;
      margin-bottom: 50px;
      color: #333;
    }

    .review-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      justify-content: center;
      padding: 0 30px;
    }

    .review-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: auto;
    }

    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .review-card img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      border: 2px solid #ff6b6b;
    }

    .review-card h3 {
      font-size: 1em;
      color: #333;
      margin-bottom: 6px;
    }

    .review-card p {
      font-size: 0.85em;
      color: #666;
      margin-bottom: 8px;
      line-height: 1.4em;
    }

    .stars {
      color: #ffc107;
      font-size: 1em;
    }
    
    @media (max-width: 600px) {

      .review-section h2 {
        font-size: 1.4em;
      }

      .review-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .review-card {
        padding: 10px;
        border-radius: 12px;
      }

      .review-card img {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
      }

      .review-card h3 {
        font-size: 0.9em;
      }

      .review-card p {
        font-size: 0.75em;
      }

      .stars {
        font-size: 0.9em;
      }
    }

    @media (min-width: 601px) and (max-width: 1023px) {
      .review-container {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .review-container {
        grid-template-columns: repeat(5, 1fr);
      }
    }


@media(max-width: 768px){
  nav { display: none; }
  .menu-toggle { display: block; }
}

.feedback-container {
  background: #222;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 25px rgba(255,204,0,0.2);
  width: 90%;
  max-width: 400px;
  margin: 50px auto;
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.feedback-container:hover { transform: scale(1.05); }

.feedback-container h2 {
  margin-bottom: 20px;
  color: #ffcc00;
  font-size: 22px;
}

.feedback-container input, 
.feedback-container textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #555;
  background: #333;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s;
}

.feedback-container input:focus,
.feedback-container textarea:focus {
  border-color: #ffcc00;
  outline: none;
  box-shadow: 0 0 8px rgba(255,204,0,0.6);
}

.feedback-container button {
  width: 100%;
  background: #ffcc00;
  color: #222;
  border: none;
  padding: 12px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.feedback-container button:hover {
  background: #e6b800;
}


.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffcc00;
  color: #222;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255,204,0,0.4);
  transition: all 0.3s;
  animation: float 2s infinite;
  z-index: 1000;
}

.wa-float:hover {
  transform: scale(1.2);
  background: #e6b800;
}

@keyframes float {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-8px); }
}

.popup-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #222;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 9;
  font-weight: bold;
}

.popup-message.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 450px) {
 .feedback-container {
   padding: 20px 15px;
  }
.feedback-container h2 {
  font-size: 20px;
}
.feedback-container input,
.feedback-container textarea {
  padding: 10px;
  font-size: 13px;
}
.feedback-container button {
  padding: 10px;
  font-size: 14px;
}
.wa-float {
  width: 50px;
  height: 50px;
  font-size: 26px;
}
}

.footer {
    background: linear-gradient(135deg,#f4b400,gold);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .footer h3 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #222;
  }

  .social-icons {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  .social-icons li a.whatsapp {
    background: #25D366;
  }
  .social-icons li a.whatsapp:hover {
    animation: pulse 1.5s infinite;
    transform: scale(1.2);
  }

  .social-icons li a.instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf);
  }
  .social-icons li a.instagram:hover {
    transform: rotate(20deg) scale(1.2);
  }

  .social-icons li a.facebook {
    background: #fff;
  }
  .social-icons li a.facebook:hover {
    transform: scale(1.3) rotate(-10deg);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.7);
  }
  
  /* Youtube */
  .social-icons li a.youtube {
    background: #fff;
  }
  .social-icons li a.youtube:hover {
    transform: scale(1.3) rotate(-10deg);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
  }
  
  .social-icons li a img {
    width: 100%;
    height: 100%;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
  }

  @keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
  }

  .footer p {
    font-size: 14px;
    color: #222;
  }

  @media (max-width: 600px) {
    .social-icons li a {
      width: 50px;
      height: 50px;
      font-size: 24px;
    }
  }
  
.animate {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  transition: all 0.8s ease-out;
}