* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
}

.hero{padding:100px 20px;background:#f6f6f6;text-align:center;}
.hero h1{font-size:2.8rem;margin-bottom:15px;}
.hero p{max-width:600px;margin:0 auto 30px;font-size:1.05rem;}
.btn{background:#111;color:#fff;padding:14px 28px;border-radius:6px;text-decoration:none;display:inline-block;}
.btn.outline{background:transparent;color:#111;border:2px solid #111;}
.btn.small{padding:10px 18px;font-size:0.9rem;}

section {
  padding: 60px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.card, .product {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 10px;
}

.deals {
  background: #111;
  color: #fff;
}

.footer {
  padding: 20px;
  font-size: 0.9rem;
  background: #f7f7f7;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }

  .collection-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  nav a {
    margin-left: 10px;
    font-size: 0.95rem;
  }

  .offer-bar {
    font-size: 0.85rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .tablink {
    padding: 8px 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .tabcontent {
    padding: 0 10px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .wa-float {
    bottom: 15px;
    right: 15px;
    padding: 12px;
    font-size: 20px;
  }

  .popup-box {
    width: 90%;
    padding: 25px;
  }
}

