/* =========================================
   SUDARSHAN WELLNESS GLOBAL STYLE
   ========================================= */

/* ---------- Variables ---------- */
:root {
  --herbal-green: #4CAF50;
  --warm-gold: #C0A040;
  --cream-bg: #FFF9F0;
  --deep-brown: #3E2723;
  --saffron: #E1A100;
  --forest-green: #1B5E20;
  --transition: all 0.3s ease-in-out;
}

/* ---------- Topbar Section ---------- */
.topbar {
  background: linear-gradient(90deg, var(--warm-gold), var(--herbal-green));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 0;
}

.topbar .container {
  max-width: 1600px;
}

.topbar-left .topbar-link {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  transition: var(--transition);
}

.topbar-left .topbar-link:hover {
  color: var(--saffron);
}

.topbar-left i {
  margin-right: 5px;
}

.topbar-left .divider {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
}

.topbar-right a {
  color: #fff;
  font-size: 15px;
  margin-left: 12px;
  display: inline-block;
  transition: var(--transition);
}

.topbar-right a:hover {
  color: var(--saffron);
  transform: scale(1.2);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .topbar {
    font-size: 13px;
    text-align: center;
  }
  .topbar .container {
    flex-direction: column;
    gap: 5px;
  }
  .topbar-right a {
    margin: 0 6px;
  }
}


/* =========================================
   HEADER SECTION
   ========================================= */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  z-index: 1000;
}

.navbar {
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  height: 48px;
  width: auto;
  margin-right: 8px;
}

.brand-text {
  font-weight: 700;
  color: var(--forest-green);
  font-size: 20px;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: var(--deep-brown);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 15px;
  text-transform: capitalize;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--saffron);
}

.header-icons .icon-link {
  color: var(--deep-brown);
  margin-left: 15px;
  font-size: 18px;
  transition: var(--transition);
}

.header-icons .icon-link:hover {
  color: var(--saffron);
  transform: scale(1.2);
}

/* ---------- Mobile Toggle ---------- */
.navbar-toggler {
  border: none;
  background: var(--herbal-green);
  padding: 6px 10px;
  border-radius: 5px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .navbar-nav {
    background: var(--cream-bg);
    padding: 10px;
    border-radius: 8px;
  }
  .navbar-nav .nav-link {
    display: block;
    text-align: center;
    padding: 10px;
  }
  .header-icons {
    text-align: center;
    margin-top: 8px;
  }
}


/* =========================================
   HERO SECTION - PRODUCT + DESCRIPTION STYLE
   ========================================= */
.hero-section {
  width: 100%;
  background: linear-gradient(90deg, #f9f5ef 0%, #fff 40%, #eaf7ea 100%);
  padding: 50px 0;
  min-height: 500px;
}

.hero-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
}

.hero-left {
  flex: 1;
  text-align: center;
}

.hero-left .hero-product {
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease-in-out;
}

.hero-left .hero-product:hover {
  transform: scale(1.05);
}

.hero-right {
  flex: 1.2;
  color: #2e2e2e;
  padding-right: 40px;
}

.hero-right h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.hero-right h1 span {
  color: #a66a00;
}

.hero-right h2 {
  font-size: 1.4rem;
  color: #155d2a;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hero-benefits li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.hero-benefits li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  color: #2e7d32;
}

.btn-hero {
  background: linear-gradient(135deg, #e09b1b, #f7c942);
  color: #fff;
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #f7c942, #e09b1b);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .hero-right {
    padding: 20px;
  }
  .hero-left .hero-product {
    max-width: 320px;
  }
}

/* =========================================
   PRODUCT SECTION
   ========================================= */
.product-section {
  background: #fffdf8;
  padding: 70px 0;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1rem;
  color: #666;
}

/* Product Card Styling */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
  text-align: center;
  padding: 15px;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.product-img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding-top: 15px;
}

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 5px;
}

.product-info .price {
  font-size: 1rem;
  color: #a66a00;
  font-weight: 600;
  margin-bottom: 12px;
}

.btn-buy {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 25px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #c58c0b, #ffb100);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.btn-buy:hover {
  background: linear-gradient(135deg, #ffb100, #c58c0b);
  transform: scale(1.05);
}

/* Responsive Grid */
@media (max-width: 991px) {
  .product-img img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .product-img img {
    height: 220px;
  }
}

/* =========================================
   WHY CHOOSE US - DARK HERBAL THEME
   ========================================= */
.why-choose-dark {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-dark::before {
  content: "";
  background: url('../images/bg-leaf-mandala.png') center/contain no-repeat;
  opacity: 0.08;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.why-choose-dark .section-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #d6b260;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-dark .section-title h2 span {
  color: #4caf50;
}

.why-choose-dark .section-title p {
  font-size: 1.05rem;
  color: #ccc;
  max-width: 700px;
  margin: 15px auto 50px;
}

.why-card {
  background: #111;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 5px 18px rgba(214,178,96,0.1);
  border: 1px solid rgba(214,178,96,0.2);
  transition: all 0.4s ease;
  height: 100%;
}

.why-card i {
  font-size: 2.5rem;
  color: #d6b260;
  margin-bottom: 20px;
  transition: 0.3s;
}

.why-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-8px);
  background: #151515;
  box-shadow: 0 10px 25px rgba(214,178,96,0.2);
}

.why-card:hover i {
  color: #4caf50;
}

@media (max-width: 768px) {
  .why-card {
    margin-bottom: 25px;
  }
}

/* =========================================
   FOOTER SECTION - LEFT LOGO, BLACK BACKGROUND
   ========================================= */
.sudarshan-footer {
  background: #0e0e0e;
  color: #e6e6e6;
  border-top: 3px solid #d6b260;
  height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.footer-overlay {
  background: url('../images/bg-leaf-mandala.png') center/contain no-repeat;
  opacity: 0.05;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.footer-flex {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-left {
  flex: 0 0 30%;
  text-align: left;
}

.footer-left img {
  width: 130px;
  filter: brightness(1.1) drop-shadow(0 2px 6px rgba(255,255,255,0.1));
}

.footer-tagline {
  font-size: 0.95rem;
  color: #d6b260;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.footer-right {
  flex: 0 0 65%;
  text-align: right;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-left: 20px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d6b260;
}

.footer-social {
  margin: 12px 0;
}

.footer-social a {
  color: #0e0e0e;
  background: linear-gradient(135deg, #d6b260, #4c9e46);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: inline-block;
  font-size: 0.9rem;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #4c9e46, #d6b260);
  color: #fff;
  transform: scale(1.1);
}

.footer-copy {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.4;
}

.footer-copy span {
  color: #d6b260;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sudarshan-footer {
    height: auto;
    padding: 30px 15px;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-right {
    flex: 100%;
    text-align: center;
  }

  .footer-left img {
    width: 110px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}

/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */
.product-detail {
  background: #fff;
  color: #222;
}

.product-img-box img {
  border-radius: 15px;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.product-img-box img:hover {
  transform: scale(1.03);
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e2e2e;
}

.product-rating i {
  color: #d6b260;
}

.product-rating span {
  color: #777;
  margin-left: 8px;
  font-size: 0.9rem;
}

.product-shortdesc {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}

.current-price {
  color: #4caf50;
  font-weight: 700;
}

.old-price {
  color: #aaa;
  text-decoration: line-through;
}

.discount {
  color: #d6b260;
  font-weight: 600;
}

.add-to-cart,
.buy-now {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.add-to-cart {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
  border: none;
}

.add-to-cart:hover {
  transform: scale(1.05);
}

.buy-now {
  background: linear-gradient(135deg, #d6b260, #a6883d);
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}

.product-benefits {
  list-style: none;
  padding: 0;
}

.product-benefits li {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
}

.product-benefits i {
  color: #4caf50;
  margin-right: 6px;
}

.description-box {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
}

.description-box h3,
.description-box h4 {
  color: #2e2e2e;
}

.description-box p,
.description-box ul {
  color: #555;
}

/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */
.product-detail {
  background: #fff;
  color: #222;
}

.product-image-box img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.product-image-box img:hover {
  transform: scale(1.03);
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}

.product-rating i {
  color: #d6b260;
}

.product-rating span {
  color: #777;
  margin-left: 8px;
  font-size: 0.9rem;
}

.product-desc {
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}

.product-price {
  font-size: 1.4rem;
  color: #4caf50;
  font-weight: 700;
}

.add-to-cart, .buy-now {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.add-to-cart {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
}

.add-to-cart:hover {
  transform: scale(1.05);
}

.buy-now {
  background: linear-gradient(135deg, #d6b260, #a6883d);
  color: #fff;
  text-decoration: none;
}

.buy-now:hover {
  transform: scale(1.05);
}


/* Product Detail Page */
.product-detail {
  background: #fffdf9;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.product-img-box {
  border-radius: 10px;
  transition: all 0.3s ease;
}
.product-img-box:hover {
  transform: scale(1.02);
}

.product-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

.short-desc {
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 10px;
}

.product-long p {
  color: #444;
  line-height: 1.7;
}

.product-ingredients ul {
  list-style: none;
  padding-left: 0;
}
.product-ingredients ul li {
  background: url('../images/leaf-icon.png') no-repeat left center;
  background-size: 20px;
  padding-left: 32px;
  margin-bottom: 10px;
  color: #333;
}

.product-price {
  font-size: 1.6rem;
  color: #2e7d32;
  font-weight: 700;
}

.btn-success {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  border: none;
}
.btn-warning {
  background: linear-gradient(135deg, #d6b260, #a6883d);
  border: none;
}
.btn-success:hover,
.btn-warning:hover {
  transform: scale(1.05);
}

/* =========================================================
   PRODUCTS SECTION (SUDARSHAN WELLNESS)
   ========================================================= */

.product-section {
  background-color: #fff7ef;
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 90, 0, 0.15);
}

.product-image {
  height: 250px;
  object-fit: contain;
}

.view-btn {
  background: linear-gradient(135deg, #ff7a00, #ff5200);
  border: none;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 22px;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: linear-gradient(135deg, #ff5200, #d74300);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 82, 0, 0.4);
}

