/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#fff;
  color:#111;
  line-height:1.6;
  overflow-x:hidden;
}

/* ================= GLOBAL ================= */
img{
  width:100%;
  display:block;
}

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

.section-title{
  text-align:center;
  font-size:28px;
  margin-bottom:20px;
  font-weight:bold;
}

/* ================= NAVBAR ================= */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

/* LOGO */
.logo-box{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-img{
  width:45px;
  height:45px;
  border-radius:50%;
  object-fit:cover;
}

/* MENU */
.menu{
  display:flex;
  gap:18px;
}

.menu a{
  font-weight:600;
  transition:0.3s;
}

.menu a:hover{
  color:#25D366;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* ================= HERO ================= */
.hero{
  min-height:85vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
  background:linear-gradient(to right,#f8f8f8,#eeeeee);
}

.hero h1{
  font-size:clamp(28px,5vw,55px);
  margin-bottom:10px;
}

.hero p{
  max-width:600px;
  color:#444;
  margin-bottom:20px;
}

/* ================= BUTTONS ================= */
.btn,.btn2,.order-btn{
  padding:12px 20px;
  border-radius:8px;
  font-weight:bold;
  display:inline-block;
  transition:0.3s;
}

.btn{
  background:#111;
  color:#fff;
}

.btn2,.order-btn{
  background:#25D366;
  color:#fff;
}

.btn:hover,.btn2:hover,.order-btn:hover{
  transform:translateY(-3px);
  opacity:0.9;
}

/* ================= TRUST BADGES ================= */
.trust-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:15px 0;
}

.trust-badges span{
  background:#fff;
  padding:8px 12px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

/* ================= PRODUCTS GRID ================= */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  padding:20px;
  max-width:1200px;
  margin:auto;
}

/* PRODUCT CARD */
.product-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 3px 12px rgba(0,0,0,0.08);
  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.product-card img{
  height:230px;
  object-fit:cover;
}

.product-card h3{
  padding:10px 15px 0;
}

.product-card p{
  padding:0 15px 10px;
  color:#25D366;
  font-weight:bold;
}

/* ================= CART ================= */
.cart-box{
  text-align:center;
  background:#25D366;
  color:#fff;
  padding:10px 15px;
  margin:15px auto;
  border-radius:20px;
  width:fit-content;
  font-weight:bold;
}

/* ================= SEARCH ================= */
#search{
  width:90%;
  max-width:400px;
  padding:12px;
  margin:20px auto;
  display:block;
  border:1px solid #ccc;
  border-radius:25px;
}

/* ================= ABOUT / CONTACT / PRIVACY ================= */
.about,.contact,.gallery{
  text-align:center;
  padding:60px 20px;
}

.about p{
  max-width:700px;
  margin:auto;
  color:#555;
}

/* ================= FOOTER ================= */
.footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:25px;
  margin-top:40px;
}

.footer-links{
  margin:15px 0;
}

.footer-links a{
  color:#25D366;
  margin:0 10px;
  font-weight:600;
}

.copyright{
  font-size:13px;
  color:#aaa;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:#fff;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  z-index:999;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:768px){

  .hamburger{
    display:block;
  }

  .menu{
    position:absolute;
    top:70px;
    right:0;
    background:#fff;
    flex-direction:column;
    width:220px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);

    transform:translateX(100%);
    transition:0.3s ease;
  }

  .menu.active{
    transform:translateX(0);
  }

  .menu a{
    display:block;
    padding:10px;
    border-bottom:1px solid #eee;
  }

  .menu a:last-child{
    border-bottom:none;
  }

  .menu a:hover{
    background:#f5f5f5;
    border-radius:6px;
  }

  .hero h1{
    font-size:35px;
  }

  .product-card img{
    height:200px;
  }
}/* ================= OVERLAY MENU ================= */

.menu{
  position:fixed;
  top:0;
  right:0;
  width:30%;
  height:60vh;
  background:rgba(10,50,98,0.99);

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  gap:25px;

  transform:translateY(-100%);
  transition:0.4s ease;
  z-index:9999;
}

/* ACTIVE STATE */
.menu.active{
  transform:translateY(0);
}

/* LINKS */
.menu a{
  color:#fff;
  font-size:22px;
  font-weight:bold;
  letter-spacing:1px;
  transition:0.3s;
}

/* hover effect */
.menu a:hover{
  color:#25D366;
  transform:scale(1.1);
}

/* HAMBURGER */
.hamburger{
  font-size:20px;
  cursor:pointer;
  z-index:1000;
}

/* FIX NAVBAR ALWAYS ON TOP */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:10001;
}.menu a{
  opacity:0;
  animation:fadeIn 0.5s forwards;
}

.menu.active a:nth-child(1){animation-delay:0.1s;}
.menu.active a:nth-child(2){animation-delay:0.2s;}
.menu.active a:nth-child(3){animation-delay:0.3s;}
.menu.active a:nth-child(4){animation-delay:0.4s;}
.menu.active a:nth-child(5){animation-delay:0.5s;}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(-20px);}
  to{opacity:1; transform:translateY(0);}
}.product-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
}.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
}.slider img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:12px;
}.product-card,
.gallery-grid,
.slider{
  overflow:hidden;
}.hamburger{
  font-size:32px;
  font-weight:bold;
  cursor:pointer;
  z-index:10000;
  transition:0.3s ease;
}

.hamburger:hover{
  transform:scale(1.1);
  color:#25D366;
}
/* ================= PRODUCT CARD PRO UI ================= */

.product-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:0.35s ease;
  position:relative;
}

/* HOVER EFFECT */
.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
}

/* IMAGE */
.product-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.4s ease;
}

/* IMAGE ZOOM */
.product-card:hover img{
  transform:scale(1.06);
}

/* PRODUCT NAME */
.product-card h3{
  padding:15px 15px 5px;
  font-size:20px;
  color:#111;
}

/* PRICE */
.product-card p{
  padding:0 15px 15px;
  color:#25D366;
  font-weight:bold;
  font-size:18px;
}

/* BUTTON */
.product-card .order-btn,
.product-card button{
  display:block;
  width:90%;
  margin:0 auto 18px;
  text-align:center;
  padding:12px;
  border:none;
  border-radius:10px;
  background:#111;
  color:#fff;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s ease;
}

/* BUTTON HOVER */
.product-card .order-btn:hover,
.product-card button:hover{
  background:#25D366;
  transform:scale(1.03);
}.badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#25D366;
  color:#fff;
  padding:6px 10px;
  border-radius:20px;
  font-size:12px;
  font-weight:bold;
  z-index:10;
}