* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1e2a3e;
  line-height: 1.5;
}

:root {
  --navy: #0B2B4F;
  --gold: #D4AF37;
  --gold-dark: #b18f2a;
  --light-bg: #f8fafc;
  --gray-text: #334155;
  --border-light: #e2e8f0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
header {
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--navy);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 30px;
  padding: 2px 6px;
  min-width: 18px;
  text-align: center;
}

/* Buttons */
.btn-primary {
  background: var(--navy);
  color: white;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #09325c;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #eef2f6;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.benefit-item i {
  color: var(--gold);
  font-size: 1.4rem;
}

/* Products Section */
.products-section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
  text-align: center;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  padding: 1.2rem;
  transition: 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 40px;
  z-index: 2;
}

.product-badge.saver {
  background: #cbd5e1;
  color: #1e293b;
}

.product-img {
  background: #f1f5f9;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-content h3 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.product-pack {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(11, 43, 79, 0.08);
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  margin: 0.5rem 0;
}

.product-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1rem 0;
}

.qty-selector input {
  width: 70px;
  padding: 8px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  text-align: center;
  font-weight: 600;
}

.add-to-cart {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.add-to-cart:hover {
  background: #0a3a62;
}

/* Logistics Showcase */
.logistics-showcase {
  background: linear-gradient(145deg, #f0f4f9, #ffffff);
  border-radius: 36px;
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.logistics-img {
  flex: 1;
  min-width: 240px;
  border-radius: 28px;
  height: 220px;
  overflow: hidden;
}

.logistics-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logistics-text {
  flex: 1;
  text-align: left;
}

.logistics-text h3 {
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* Trust Badges */
.trust-badges {
  background: var(--light-bg);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  border-radius: 32px;
  margin: 2rem 0;
}

/* Testimonials */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 28px;
  max-width: 300px;
  text-align: center;
}

.testimonial-card i.fa-star {
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin: 1rem 0;
  font-style: italic;
}

.testimonial-card h4 {
  color: var(--navy);
}

/* FAQ */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
}

/* Cart Modal */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.cart-content {
  background: white;
  max-width: 500px;
  width: 90%;
  border-radius: 32px;
  padding: 1.8rem;
  max-height: 80vh;
  overflow-y: auto;
}

.close-cart {
  float: right;
  font-size: 1.8rem;
  cursor: pointer;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 0.8rem 0;
}

.checkout-btn {
  background: var(--gold);
  width: 100%;
  margin-top: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--navy);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }
}