/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f1f3f6;
  color: #111;
}

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

.section {
  padding: 60px 6%;
}

.section.dark {
  background: #0f172a;
}

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

.section-title.light {
  color: #fff;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #facc15;
}

.nav-center a {
  margin: 0 14px;
  font-weight: 500;
  opacity: 0.85;
}

.nav-center a:hover,
.nav-center a.active {
  opacity: 1;
  border-bottom: 2px solid #facc15;
}

.whatsapp-nav {
  background: #22c55e;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  height: 80vh;
  background: linear-gradient(
      rgba(15, 23, 42, 0.6),
      rgba(15, 23, 42, 0.6)
    ),
    url("https://images.unsplash.com/photo-1511385348-a52b4a160dc2");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-text {
  margin-left: 6%;
  color: #fff;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-text p {
  margin: 15px 0 30px;
  font-size: 18px;
  opacity: 0.9;
}

.btn-primary {
  background: #facc15;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  color: #111;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #eab308;
}

/* ================= CATEGORY ================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.category-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* ================= PRODUCTS ================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 14px;
  color: #555;
}

.product-price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}



/* ================= TRUST STRIP ================= */
.trust-strip {
  background: #020617;
  color: #e5e7eb;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
  padding: 30px 6%;
  font-weight: 500;
}

/* ================= FOOTER ================= */
.footer {
  background: #0f172a;
  color: #94a3b8;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .nav-center {
    display: none;
  }
}

/* ===== PREMIUM FEATURES ===== */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:30px;
}

.feature-box{
  background:#fff;
  border-radius:18px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  transition:.35s;
}

.feature-box:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.feature-box span{
  font-size:38px;
  display:block;
  margin-bottom:12px;
}

.feature-box h4{
  font-size:18px;
  margin-bottom:10px;
}

.feature-box p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}