/* ========================== */
/* SUMATRATONIC EXTERNAL CSS  */
/* ========================== */

/* ========================== */
/* Global Variables & Resets  */
/* ========================== */
:root {
  --brand-color: #b30000;
  --muted-color: #6b7280;
  --text-color: #444;
  --bg-light: #f9f9f9;
  --bg-white: #fff;
  --btn-hover: #a10000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-white);
}

/* ========================== */
/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-color);
}

.topbar {
  background: var(--brand-color);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 15px 0;
}

/* ========================== */
/* Hero Section */
.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 44px 0;
}

.hero-left { flex: 1; }
.hero-right { flex: 1; text-align: center; }

/* ========================== */
/* Pricing Cards */
.price-old { text-decoration: line-through; color: #9b9b9b; font-size: 14px; }
.price-now { font-size: 22px; color: var(--brand-color); font-weight: 900; }
.muted { color: var(--muted-color); }

/* ========================== */
/* Offer Highlight */
.highlight-offer {
  color: #d60000;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

/* ========================== */
/* Countdown */
.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: var(--bg-light); }
.section-white { padding: 40px 20px; background: var(--bg-white); }

/* 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 */
.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 Section */
.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; }

/* ========================== */
/* Buttons */
.btn-order {
  background: var(--brand-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-order:hover {
  background: var(--btn-hover);
  color: #fff;
}

/* ========================== */
/* HR Line */
.custom-hr { margin: 30px auto; width: 70%; border: 0; border-top: 1px solid #ccc; }

/* ========================== */
/* Footer */
footer.footer {
  background: var(--brand-color);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  font-size: 14px;
}

footer.footer a {
  color: #fff;
  text-decoration: underline;
}

footer.footer a:hover {
  color: #ddd;
}

/* ========================== */
/* Responsive */
@media screen and (max-width: 768px) {
  .hero-wrap { flex-direction: column; gap: 20px; }
  .nav { flex-direction: column; gap: 10px; }
  .nav-links { flex-direction: column; gap: 10px; }
}
