* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 5%;
  background: black;
  color: white;
  align-items: center;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

/* HERO */
.hero {
  position: relative;
  height: 30vh;
  background: url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  padding: 7px 5%;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: #ff3c00;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 40px;
}

.hero h1 span {
  color: #ff9900;
}

.hero p {
  margin: 15px 0;
}

.hero-btn {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: scale(1.05);
}

/* CATEGORIES */
.categories {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.cat {
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.cat:hover {
  transform: scale(1.1);
}

/* FILTER */
.filters {
  padding: 20px 5%;
}

.filters input {
  width: 100%;
  padding: 10px;
}

.buttons button {
  padding: 8px 15px;
  margin: 10px 5px;
  border-radius: 20px;
  border: none;
}

.buttons .active {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: white;
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 15px;
  transition: 0.3s;
}

.searchbar {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 50px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* WHATSAPP BUTTON */
.whatsapp {
  display: inline-block;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 8px;
  border-radius: 20px;
  margin-top: 10px;
  text-decoration: none;
  width: 100%;
    text-align: center;
}

/* FOOTER */
footer {
    background-color: #000000;
   color: rgb(255, 255, 255);
  padding: 40px 5%;
}

/*footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255, 255, 255);
}*/

.footer-grid {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.footer-grid div {
  margin: 10px;
}   

.footer-grid a {
  display: block;
  color: #ffffff;
  margin: 5px 0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-grid a:hover {
  color: gold;
  transform: translateX(5px);
}

.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1);
}
/* MOBILE */
@media(max-width:768px){
  .categories { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; 
    text-align: center; 
margin-top: 5px;}
  .hero h1 { font-size: 28px; }
}