*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  color:#222;
  overflow-x:hidden;
  line-height:1.6;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:18px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.logo{
  color:white;
  font-size:clamp(1.1rem,2vw,1.5rem);
  font-weight:700;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-weight:500;
  transition:0.3s ease;
  font-size:0.95rem;
}

.nav-links a:hover,
.active{
  color:#ff9fbd;
}
/* ========================= */
/* CENTER NAV OVERLAY FIX */
/* ========================= */

.nav-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;

  background:rgba(0,0,0,0.85);

  display:none;
  align-items:center;
  justify-content:center;

  z-index:2000;
}

.nav-overlay.active{
  display:flex;
}

/* CENTER MENU */

.nav-center{
  display:flex;
  flex-direction:column;
  gap:22px;
  text-align:center;
}

.nav-center a{
  color:white;
  font-size:1.6rem;
  text-decoration:none;
  transition:0.3s ease;
}

.nav-center a:hover{
  color:#ff7aa2;
  transform:scale(1.1);
}

/* MENU BUTTON */

.menu-btn{
  background:linear-gradient(135deg,#ff3f7f,#ff7aa2);
  color:white;
  border:none;
  padding:10px 18px;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s ease;
}

.menu-btn:hover{
  transform:scale(1.05);
}

/* CLOSE BUTTON */

.close-btn{
  margin-top:20px;
  padding:10px 18px;
  border:none;
  border-radius:25px;
  background:white;
  cursor:pointer;
  font-weight:600;
}

.close-btn:hover{
  background:#ff3f7f;
  color:white;
}

/* HERO */

.hero{
  min-height:55vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding:140px 20px 80px;

  background:
  linear-gradient(rgba(0,0,0,0.55),
  rgba(0,0,0,0.55)),
  url('WhatsApp\ Image\ 2026-05-08\ at\ 21.52.47.jpeg');

  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:850px;
  color:white;
}

.hero-content h1{
  font-size:clamp(2.2rem,6vw,4.2rem);
  margin-bottom:20px;
}

.hero-content p{
  font-size:clamp(0.95rem,2vw,1.1rem);
  line-height:1.8;
}

/* PRODUCTS SECTION */

.products-section{
  padding:100px 6%;
  background:#fff7fa;
}

.products-section h2{
  text-align:center;
  font-size:clamp(2rem,5vw,3rem);
  margin-bottom:60px;
}

/* GRID */

.products-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

/* PRODUCT CARD (BIGGER THAN BEFORE) */

.product-card{
  position:relative;
  width:100%;
  height:340px;

  border-radius:22px;
  overflow:hidden;

  background:#000;

  cursor:pointer;

  box-shadow:0 12px 35px rgba(0,0,0,0.10);

  transition:0.4s ease;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.18);
}

/* IMAGE */

.product-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

.product-card:hover img{
  transform:scale(1.08);
}

/* OVERLAY */

.product-overlay{
  position:absolute;
  left:0;
  bottom:-100%;

  width:100%;
  height:52%;

  padding:24px 20px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.96),
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );

  color:white;

  transition:0.45s ease;
}

.product-card:hover .product-overlay{
  bottom:0;
}

/* TEXT */

.product-overlay h3{
  font-size:1.25rem;
  margin-bottom:10px;
}

.product-overlay p{
  font-size:0.9rem;
  line-height:1.6;
  color:#f1f1f1;
  margin-bottom:14px;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
  width:fit-content;

  background:linear-gradient(135deg,#25D366,#128C7E);
  color:white;

  text-decoration:none;

  padding:11px 20px;

  border-radius:40px;

  font-size:0.88rem;
  font-weight:600;

  transition:0.4s ease;
}

.whatsapp-btn:hover{
  background:linear-gradient(135deg,#ff3f7f,#ff7aa2);
  transform:scale(1.06);
  box-shadow:0 10px 25px rgba(255,63,127,0.4);
}

/* FOOTER */

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:25px;
}

/* TABLET */

@media(max-width:992px){

  .product-card{
    height:320px;
  }
}

/* MOBILE */

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .hero{
    min-height:60vh;
  }

  .product-card{
    height:310px;
  }

  /* mobile: show overlay always */
  .product-overlay{
    bottom:0;
    height:55%;
  }

  .product-card:hover{
    transform:none;
  }

  .product-card:hover img{
    transform:none;
  }

}

/* SMALL PHONES */

@media(max-width:480px){

  .products-container{
    grid-template-columns:1fr;
  }

  .product-card{
    height:290px;
    border-radius:20px;
  }

  .product-overlay{
    height:58%;
    padding:18px 15px;
  }

  .product-overlay h3{
    font-size:1.05rem;
  }

  .product-overlay p{
    font-size:0.82rem;
  }

  .whatsapp-btn{
    font-size:0.8rem;
    padding:9px 16px;
  }
}

/* LARGE SCREENS */

@media(min-width:1400px){

  .products-container{
    grid-template-columns:repeat(4,1fr);
  }
}

/* ========================= */
/* MOBILE MENU (HAMBURGER) */
/* ========================= */

.menu-toggle{
  display:none;
  font-size:2rem;
  color:white;
  cursor:pointer;
  user-select:none;
}

/* NAV MENU DEFAULT */
.nav-menu{
  display:flex;
}

/* MOBILE / TABLET MENU */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-menu{
    position:absolute;
    top:70px;
    right:6%;
    width:220px;

    background:rgba(0,0,0,0.9);
    backdrop-filter:blur(10px);

    border-radius:15px;

    display:none;
    flex-direction:column;

    padding:15px;
  }

  .nav-menu.active{
    display:flex;
    animation:slideDown 0.3s ease;
  }

  .nav-links{
    flex-direction:column;
    gap:15px;
  }

  .nav-links a{
    display:block;
    padding:10px;
    border-radius:10px;
  }

  .nav-links a:hover{
    background:rgba(255,255,255,0.1);
  }
}

/* ANIMATION */
@keyframes slideDown{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}