/* ===========================
   Global Variables & Reset
=========================== */
:root {
  --brand: #0E9013;
  --muted: #6b7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* ===========================
   Navigation
=========================== */
.topbar {
  background: #0E9013;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
}
.topbar .brand {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}
.topbar .nav-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}
.topbar .nav-links a:hover {
  color: #FFD700;
}
.topbar .btn-order {
  background: #FFD700;
  color: #0E9013;
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topbar .btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* ===========================
   Hero Section
=========================== */
.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 44px 20px;
}
.hero-left {
  flex: 1;
}
.hero-right {
  flex: 1;
  text-align: center;
}

/* ===========================
   Price Card
=========================== */
.price-old {
  text-decoration: line-through;
  color: #9b9b9b;
  font-size: 14px;
}
.price-now {
  font-size: 22px;
  color: var(--brand);
  font-weight: 900;
}
.muted {
  color: var(--muted);
}

/* ===========================
   Offer Highlight
=========================== */
.highlight-offer {
  color: #d60000;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

/* ===========================
   Countdown Timer
=========================== */
.countdown {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #d60000;
  padding: 8px 15px;
  border-radius: 6px;
  display: inline-flex;
  gap: 8px;
}

/* ===========================
   Sections
=========================== */
.section-light {
  padding: 40px 20px;
  background: #f9f9f9;
}
.section-white {
  padding: 40px 20px;
  background: #fff;
}

/* ===========================
   Headings
=========================== */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}
.green-heading {
  background: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
}

/* ===========================
   Emoji Styling
=========================== */
.emoji {
  font-size: 36px;
}

/* ===========================
   Testimonials
=========================== */
.testimonial-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}
.testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.testimonial-name {
  margin-top: 14px;
  font-weight: 600;
  color: #d32f2f;
  font-size: 14px;
}

/* ===========================
   Pricing
=========================== */
.pricing-text {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}
.old-price {
  text-decoration: line-through;
  color: #999;
}
.new-price {
  font-size: 22px;
  font-weight: 700;
  color: #d32f2f;
}

/* ===========================
   HR
=========================== */
.custom-hr {
  margin: 30px auto;
  width: 70%;
  border: 0;
  border-top: 1px solid #ccc;
}

/* ===========================
   Responsive
=========================== */
@media(max-width:768px){
  .hero-wrap {
    flex-direction: column;
    text-align: center;
  }
  .topbar .nav-links {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .topbar .nav-links a {
    margin: 6px 12px;
  }
}
