/* omega.css — Omega-3 Product Styling */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5faff;
  color: #222;
}

.header {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  padding: 2rem;
  color: white;
  text-align: center;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 500;
}

.video-section {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.product-video {
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.price-box {
  background: white;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.strike {
  text-decoration: line-through;
  color: #999;
}

.discount {
  font-size: 1.8rem;
  color: #e63946;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1.5rem;
  transition: background 0.3s ease-in-out;
}

.whatsapp-btn:hover {
  background: #128c7e;
}

.testimonials {
  background: #ffffff;
  padding: 2rem;
  text-align: center;
}

.testimonial-card {
  background: #e8f7ff;
  margin: 1rem auto;
  padding: 1rem;
  max-width: 500px;
  border-left: 5px solid #00c6ff;
  border-radius: 10px;
}

.questions {
  background: #fff9ec;
  text-align: center;
  padding: 2rem;
}

footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}.omega-benefits {
  background: #eef2f7;
  padding: 50px 20px;
}

.omega-benefits h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.benefit-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.benefit-block:nth-child(even) {
  flex-direction: column-reverse;
}

.benefit-text {
  max-width: 700px;
  text-align: center;
  padding: 20px;
}

.benefit-text h3 {
  color: #0f766e;
  margin-bottom: 10px;
}

.benefit-text p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
}

.benefit-img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}.cta-order {
  background: linear-gradient(to right, #0f766e, #164e63);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0 0 20px 20px;
  margin-top: 40px;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fcd34d;
}

.cta-container p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px;
}

.cta-price {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.old-price {
  text-decoration: line-through;
  margin-right: 15px;
  color: #e2e8f0;
}

.new-price {
  font-weight: bold;
  color: #fbbf24;
}

.offer-tag {
  font-size: 1rem;
  font-style: italic;
  color: #fef3c7;
  margin-top: 5px;
}

.cta-btn {
  display: inline-block;
  background-color: #facc15;
  color: #1f2937;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #eab308;
  color: #fff;
}.navbar {
  background-color: #164e63;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #facc15;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #164e63;
    position: absolute;
    top: 60px;
    right: 0;
    width: 60%;
    padding: 20px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
}.footer-nav {
  background-color: #0f172a;
  color: #f1f5f9;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-nav h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #38bdf8;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding: 0;
}

.footer-links li a {
  color: #e0f2fe;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #facc15;
  text-decoration: underline;
}

.copy {
  font-size: 0.9rem;
  color: #94a3b8;
}