* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #FFF8F0;
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  padding: 18px 40px;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #8B1E1E;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.nav-links a:hover {
  color: #8B1E1E;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  background: url('https://images.unsplash.com/photo-1604908176997-4315b1b98c1c')
    center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(139, 30, 30, 0.85),
    rgba(0, 0, 0, 0.4)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

/* LOGO */
.hero-logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  margin-top: 10px;
  opacity: 0.9;
  font-size: 18px;
}

.hero button {
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: #E5A100;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  transform: scale(1.05);
  background: #c98d00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-logo {
    width: 170px;
  }
}

/* FILTERS */
.filters {
  text-align: center;
  padding: 30px;
}

.filter-btn {
  margin: 5px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #8B1E1E;
  color: white;
}

/* PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 40px;
  gap: 30px;
}

.product {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product:hover {
  transform: translateY(-8px);
}

.product img {
  width: 100%;
}

.product-content {
  padding: 15px;
}

.product h4 {
  font-weight: 600;
}

.product p {
  color: #8B1E1E;
  margin: 5px 0;
}

.product button {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #2E7D32;
  color: white;
  cursor: pointer;
}

/* FEATURES */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  width: 180px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* TESTIMONIAL */
.testimonials {
  background: #fdf1e7;
  padding: 60px 20px;
  text-align: center;
}

.testimonial {
  max-width: 500px;
  margin: 20px auto;
}

/* FOOTER */
footer {
  background: #8B1E1E;
  color: white;
  padding: 30px;
  text-align: center;
}

.footer-links a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

/* MOBILE */
@media(max-width:768px){
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 20px;
    flex-direction: column;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 30px;
  }
}

.prepaid-note {
  font-size: 14px;
  color: #777;
  font-weight: normal;
}
.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}