:root {
    --royal-gold: #D4AF37;
    --dark-gold: #AA8C2C;
    --rich-black: #0A0A0A;
    --off-white: #F5F5F5;
    --deep-brown: #3D2314;
    --dark-blue: #15243C;
    --sky-blue: #0F2540;
    --herb-green: #2D5C34;
    --royal-gold: #D4AF37;
    --dark-gold: #AA8C2C;
    --rich-black: #0A0A0A;
    --off-white: #F5F5F5;
    --deep-brown: #3D2314;
    --light-gold: #F0E68C;
    --burnt-orange: #CC5500;
    --ancient-red: #8B0000;
}

    
  .sw-product-display-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Split View Layout */
.sw-product-split-view {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
}

/* Left Column - Product Slideshow */
.sw-product-slideshow {
  width: 55%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, var(--rich-black), #222);
}

.sw-slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

.sw-slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-slideshow-slide.active {
  opacity: 1;
}

.sw-slide-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border-radius: 10px;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease-in-out;
}

.sw-slide-image.hover-effect {
  transform: perspective(1000px) rotateY(5deg);
}

/* Slide Navigation */
.sw-slide-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 100;
}

.sw-slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sw-slide-dot.active {
  background-color: var(--royal-gold);
  transform: scale(1.2);
}

.sw-slide-dot:hover {
  background-color: rgba(255,255,255,0.6);
}

/* Slide Arrows */
.sw-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.sw-slide-arrow:hover {
  background-color: var(--royal-gold);
  color: var(--rich-black);
}

.sw-slide-arrow.prev {
  left: 20px;
}

.sw-slide-arrow.next {
  right: 20px;
}

/* Product Badges */
.sw-product-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
}

.sw-product-badged {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 16px;
  background-color: var(--royal-gold);
  color: var(--rich-black);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.sw-badge-sale {
  background-color: #e74c3c;
  color: white;
}

/* Right Column - Product Highlights */
.sw-product-highlights {
  width: 45%;
  padding: 40px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  display: flex;
  flex-direction: column;
}

.sw-product-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--rich-black);
  margin-bottom: 5px;
}

.sw-product-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.sw-product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sw-rating-stars {
  color: var(--royal-gold);
  font-size: 18px;
  margin-right: 10px;
}

.sw-rating-count {
  color: #777;
  font-size: 14px;
}

.sw-product-price-container {
  margin-bottom: 25px;
}

.sw-product-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--royal-gold);
  margin-right: 10px;
}

.sw-product-old-price {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
}

.sw-product-save {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-left: 10px;
}

.sw-product-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Product Feature Icons */
.sw-product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.sw-feature-item {
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
}

.sw-feature-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-gold);
  margin-right: 10px;
  flex-shrink: 0;
}

.sw-feature-text {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

/* Size Selection */
.sw-product-size {
  margin-bottom: 25px;
}

.sw-size-label {
  font-weight: 600;
  color: var(--rich-black);
  margin-bottom: 10px;
}

.sw-size-options {
  display: flex;
  gap: 10px;
}

.sw-size-option {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sw-size-option:hover {
  border-color: var(--royal-gold);
}

.sw-size-option.active {
  background-color: var(--royal-gold);
  color: var(--rich-black);
  border-color: var(--royal-gold);
  font-weight: 600;
}

/* Quantity and Add to Cart */
.sw-product-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.sw-quantity-control {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.sw-quantity-btn {
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sw-quantity-btn:hover {
  background-color: #eee;
}

.sw-quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-weight: 600;
}

.sw-add-to-cart-btn {
  flex: 1;
  height: 50px;
  background-color: var(--royal-gold);
  color: var(--rich-black);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sw-add-to-cart-btn:hover {
  background-color: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(170,140,44,0.3);
}

/* Product Meta */
.sw-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.sw-wishlist-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #777;
  cursor: pointer;
  transition: color 0.3s ease;
}

.sw-wishlist-btn:hover {
  color: #e74c3c;
}

.sw-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sw-share-label {
  color: #777;
  font-size: 14px;
}

.sw-social-icons {
  display: flex;
  gap: 10px;
}

.sw-social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
}

.sw-social-icon:hover {
  transform: translateY(-3px);
}

.sw-icon-facebook:hover {
  background-color: #3b5998;
  color: white;
}

.sw-icon-twitter:hover {
  background-color: #1da1f2;
  color: white;
}

.sw-icon-instagram:hover {
  background-color: #e1306c;
  color: white;
}

.sw-icon-pinterest:hover {
  background-color: #bd081c;
  color: white;
}

/* Image Labels */
.sw-image-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sw-image-label {
  position: absolute;
  background-color: rgba(255,255,255,0.9);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--rich-black);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sw-image-label.visible {
  opacity: 1;
}

.sw-label-ashwagandha {
  top: 30%;
  left: 25%;
}

.sw-label-shilajit {
  top: 40%;
  left: 70%;
}

.sw-label-safed-musli {
  top: 60%;
  left: 40%;
}

/* Product Thumbnails */
.sw-product-thumbnails {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sw-product-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.sw-product-thumbnail.active {
  border-color: var(--royal-gold);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sw-product-thumbnail:hover:not(.active) {
  transform: scale(1.05);
}

/* Augmented Reality Button */
.sw-ar-view-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255,255,255,0.2);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sw-ar-view-btn:hover {
  background-color: rgba(255,255,255,0.3);
}

.sw-video-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255,255,255,0.2);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sw-video-btn:hover {
  background-color: rgba(255,255,255,0.3);
}

/* Ingredients Callout */
.sw-ingredients-callout {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255,255,255,0.9);
  border-radius: 25px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.sw-ingredients-callout:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sw-ingredients-callout i {
  color: var(--royal-gold);
}

.sw-ingredients-callout span {
  font-weight: 600;
  color: var(--rich-black);
}

/* Special Ayurvedic Icons */
.sw-ayurvedic-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sw-ayurvedic-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.sw-icon-1 {
  top: 20%;
  left: 15%;
  background-image: url('/api/placeholder/30/30');
}

.sw-icon-2 {
  top: 15%;
  right: 20%;
  background-image: url('/api/placeholder/30/30');
}

.sw-icon-3 {
  bottom: 25%;
  left: 20%;
  background-image: url('/api/placeholder/30/30');
}

.sw-icon-4 {
  bottom: 20%;
  right: 15%;
  background-image: url('/api/placeholder/30/30');
}

/* Energy Aura Effect */
.sw-energy-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0.1) 40%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(15px);
  animation: sw-pulse-aura 4s infinite alternate ease-in-out;
  z-index: 1;
}

@keyframes sw-pulse-aura {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .sw-product-split-view {
    flex-direction: column;
  }

  .sw-product-slideshow,
  .sw-product-highlights {
    width: 100%;
  }

  .sw-slideshow-wrapper {
    height: 500px;
  }

  .sw-feature-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sw-slideshow-wrapper {
    height: 400px;
  }

  .sw-product-highlights {
    padding: 25px;
  }

  .sw-product-title {
    font-size: 24px;
  }

  .sw-product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sw-quantity-control {
    width: 100%;
  }

  .sw-size-options {
    flex-wrap: wrap;
  }

  .sw-product-thumbnails {
    bottom: 80px;
  }

  .sw-product-thumbnail {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .sw-slideshow-wrapper {
    height: 350px;
  }

  .sw-product-badges {
    top: 10px;
    left: 10px;
  }

  .sw-product-badge {
    padding: 5px 10px;
    font-size: 10px;
  }

  .sw-slide-arrow {
    width: 35px;
    height: 35px;
  }

  .sw-product-meta {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* Video Modal */
.sw-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.sw-video-modal.show {
  display: flex;
}

.sw-video-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.sw-close-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.sw-close-video:hover {
  background-color: rgba(255,255,255,0.4);
}

.sw-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}



/* Product Tabs */
.product-tabs {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
overflow: hidden;
margin-bottom: 40px;
}

.tab-nav-container {
position: relative;
background-color: #fff;
border-bottom: 1px solid #eee;
}

.nav-tabs {
border-bottom: none;
padding: 0 20px;
display: flex;
flex-wrap: nowrap;
margin-bottom: 0;
}

.nav-tabs .nav-item {
margin-right: 10px;
}

.nav-tabs .nav-link {
border: none;
border-bottom: 3px solid transparent;
color: #666;
font-weight: 600;
font-size: 15px;
padding: 15px 20px;
transition: all 0.3s ease;
border-radius: 0;
position: relative;
}

.nav-tabs .nav-link i {
margin-right: 6px;
color: var(--dark-gold);
}

.nav-tabs .nav-link.active {
color: var(--rich-black);
border-bottom: 3px solid var(--royal-gold);
background-color: transparent;
}

.nav-tabs .nav-link:hover:not(.active) {
color: var(--dark-gold);
border-color: rgba(212,175,55,0.3);
}

.nav-tabs .review-count {
display: inline-block;
background-color: rgba(212,175,55,0.15);
color: var(--dark-gold);
font-weight: 600;
padding: 2px 8px;
border-radius: 12px;
font-size: 12px;
}

.tab-content {
padding: 30px;
background-color: #fff;
}

.tab-pane {
animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}

/* Tab Content Styling */
.tab-content-title {
font-weight: 700;
color: var(--rich-black);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #f0f0f0;
position: relative;
}

.tab-content-title::after {
content: "";
position: absolute;
left: 0;
bottom: -2px;
width: 60px;
height: 2px;
background-color: var(--royal-gold);
}

.tab-content p {
color: #555;
line-height: 1.7;
margin-bottom: 15px;
}

/* Specific Tab Content */
.description-content {
max-width: 100%;
}

.feature-list {
list-style: none;
padding-left: 0;
margin-bottom: 25px;
}

.feature-list li {
padding-left: 28px;
position: relative;
margin-bottom: 10px;
color: #555;
}

.feature-list li:before {
content: "\f00c";
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
left: 0;
top: 2px;
color: var(--royal-gold);
}

.how-it-works-box {
background-color: #f9f9f9;
border-radius: 8px;
padding: 20px;
margin-bottom: 25px;
border-left: 3px solid var(--royal-gold);
}

.how-it-works-box h5 {
color: var(--rich-black);
font-weight: 600;
margin-bottom: 15px;
}

.directions-box {
background-color: #fff;
border: 1px solid #eee;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
}

.directions-box h5 {
color: var(--rich-black);
font-weight: 600;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}

.directions-list {
list-style: none;
padding-left: 0;
}

.directions-list li {
display: flex;
align-items: flex-start;
margin-bottom: 12px;
color: #555;
}

.directions-list i {
color: var(--royal-gold);
margin-right: 10px;
margin-top: 4px;
}

/* Specifications Tab */
.specs-table {
width: 100%;
border-collapse: collapse;
}

.specs-table tr {
border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
border-bottom: none;
}

.specs-table th,
.specs-table td {
padding: 12px 15px;
text-align: left;
}

.specs-table th {
width: 40%;
font-weight: 600;
color: #444;
background-color: rgba(245, 245, 245, 0.5);
}

.specs-table td {
color: #666;
}

/* Ingredients Tab */
.ingredients-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}

.ingredient-card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.04);
overflow: hidden;
transition: all 0.3s ease;
}

.ingredient-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.ingredient-img {
height: 160px;
width: 100%;
object-fit: cover;
}

.ingredient-info {
padding: 15px;
}

.ingredient-info h5 {
color: var(--rich-black);
font-weight: 600;
font-size: 16px;
margin-bottom: 10px;
}

.ingredient-info p {
color: #666;
font-size: 14px;
line-height: 1.6;
margin-bottom: 0;
}

.ingredient-tag {
display: inline-block;
background-color: rgba(212,175,55,0.15);
color: var(--dark-gold);
font-size: 12px;
font-weight: 500;
padding: 3px 10px;
border-radius: 12px;
margin-bottom: 10px;
}

/* Reviews Tab */
.reviews-container {
max-width: 100%;
}

.reviews-summary {
display: flex;
background-color: #f9f9f9;
border-radius: 8px;
padding: 20px;
margin-bottom: 30px;
align-items: center;
}

.review-average {
text-align: center;
padding-right: 20px;
margin-right: 20px;
border-right: 1px solid #eee;
min-width: 120px;
}

.average-rating {
font-size: 48px;
font-weight: 700;
color: var(--rich-black);
line-height: 1;
margin-bottom: 5px;
}

.rating-stars {
color: var(--royal-gold);
font-size: 16px;
margin-bottom: 5px;
}

.total-reviews {
color: #777;
font-size: 14px;
}

.rating-bars {
flex-grow: 1;
}

.rating-bar {
display: flex;
align-items: center;
margin-bottom: 8px;
}

.rating-bar:last-child {
margin-bottom: 0;
}

.rating-level {
width: 35px;
text-align: right;
color: #777;
font-size: 14px;
margin-right: 10px;
}

.progress {
flex-grow: 1;
height: 8px;
background-color: #e9e9e9;
border-radius: 4px;
margin-right: 10px;
}

.progress-bar {
background-color: var(--royal-gold);
border-radius: 4px;
}

.rating-count {
width: 35px;
color: #777;
font-size: 14px;
}

.review-actions {
min-width: 150px;
text-align: center;
}

.write-review-btn {
background-color: var(--royal-gold);
color: white;
border: none;
padding: 8px 20px;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
display: inline-block;
margin-bottom: 10px;
}

.write-review-btn:hover {
background-color: var(--dark-gold);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.reviews-list {
margin-bottom: 20px;
}

.review-card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.04);
padding: 20px;
margin-bottom: 20px;
transition: all 0.3s ease;
}

.review-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.review-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 15px;
}

.reviewer-info {
display: flex;
align-items: center;
}

.reviewer-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
margin-right: 15px;
border: 2px solid #eee;
}

.reviewer-details h5 {
margin: 0 0 5px;
font-size: 16px;
font-weight: 600;
color: var(--rich-black);
}

.review-date {
color: #999;
font-size: 13px;
}

.verified-badge {
display: inline-flex;
align-items: center;
background-color: #e8f5e9;
color: #2e7d32;
padding: 2px 6px;
border-radius: 3px;
font-size: 11px;
font-weight: 600;
margin-left: 8px;
}

.review-content {
color: #555;
line-height: 1.7;
margin-bottom: 15px;
}

.review-footer {
display: flex;
justify-content: space-between;
color: #999;
font-size: 13px;
}

.helpful-btn {
display: flex;
align-items: center;
background: none;
border: none;
color: #777;
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
font-size: 13px;
}

.helpful-btn:hover {
color: var(--royal-gold);
}

.helpful-btn i {
margin-right: 5px;
}

.load-more-container {
text-align: center;
}

.load-more-btn {
background-color: transparent;
color: var(--dark-gold);
border: 1px solid var(--dark-gold);
padding: 8px 25px;
border-radius: 4px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.load-more-btn:hover {
background-color: var(--royal-gold);
color: white;
border-color: var(--royal-gold);
}

/* Responsive */
@media (max-width: 768px) {
.nav-tabs {
flex-wrap: nowrap;
overflow-x: auto;
padding-bottom: 5px;
}

.nav-tabs .nav-link {
white-space: nowrap;
padding: 12px 15px;
font-size: 13px;
}

.tab-content {
padding: 20px 15px;
}

.reviews-summary {
flex-direction: column;
}

.review-average {
padding-right: 0;
margin-right: 0;
border-right: none;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
margin-bottom: 15px;
}

.review-actions {
margin-top: 15px;
}

.review-header {
flex-direction: column;
}

.review-rating {
margin-top: 10px;
}
}





/* Section Basics */
.why-choose-us {
    position: relative;
    background-color: var(--rich-black);
    overflow: hidden;
    padding: 80px 0;
    color: var(--off-white);
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/200/200') repeat;
    opacity: 0.05;
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

/* Ancient Energy Patterns */
.energy-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.2;
    animation: rotate 60s linear infinite;
}

.top-right {
    top: -100px;
    right: -100px;
}

.bottom-left {
    bottom: -100px;
    left: -100px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Section Title Styling */
.section-subtitle {
    font-size: 14px;
    color: var(--royal-gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    animation: fadeIn 0.8s ease-out;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--royal-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 25px;
    width: 80%;
    max-width: 300px;
}

.title-decoration-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.title-decoration-icon {
    margin: 0 15px;
    color: var(--royal-gold);
    font-size: 18px;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }

    to {
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    }
}

.section-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccc;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
}

/* Feature Cards */
.feature-card {
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 30px 20px;
    min-height: 250px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--royal-gold), var(--dark-gold));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 28px;
    color: var(--rich-black);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 15px;
    position: relative;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--royal-gold);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 70px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.feature-text {
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
}

/* Stats Styling */
.stats-container {
    padding: 30px;
    height: 100%;
}

.stats-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--royal-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.stats-description {
    color: #eee;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.stat-text {
    font-size: 16px;
    color: #eee;
    font-weight: 600;
}

.btn-hero-primary {
    background-color: var(--royal-gold);
    color: var(--rich-black);
    padding: 15px 35px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    background-color: #e0be50;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--rich-black);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }

    .feature-card {
        min-height: 220px;
    }

    .stats-container {
        padding: 20px 0;
        margin-top: 30px;
    }

}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }



    .stats-row {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 15px;
    }

    .offer-title {
        font-size: 24px;
    }

    .offer-highlight {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .section-description {
        font-size: 16px;
    }

    .title-decoration {
        width: 100%;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .feature-title {
        font-size: 18px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .stats-title {
        font-size: 24px;
    }

    .stats-description {
        font-size: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .btn-hero-primary {
        padding: 12px 25px;
        font-size: 16px;
    }

    .offer-badge {
        font-size: 12px;
    }

    .offer-title {
        font-size: 20px;
    }

    .offer-highlight {
        font-size: 24px;
    }

    .offer-text {
        font-size: 14px;
    }

    .btn-offer-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
}



/* Related Products Section */
.related-products-section {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
padding: 40px;
margin-bottom: 40px;
}

.section-heading {
text-align: center;
margin-bottom: 40px;
position: relative;
}

.section-heading h2 {
font-size: 28px;
font-weight: 700;
color: var(--rich-black);
margin-bottom: 15px;
position: relative;
display: inline-block;
}

.section-heading h2::after {
content: "";
position: absolute;
left: 50%;
bottom: -10px;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(to right, var(--royal-gold), var(--dark-gold));
border-radius: 2px;
}

.section-heading p {
font-size: 16px;
color: #666;
max-width: 700px;
margin: 0 auto;
}

/* Product Card */
.product-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: all 0.3s ease;
height: 100%;
position: relative;
overflow: hidden;
}

.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-badge {
position: absolute;
top: 15px;
left: 15px;
background-color: var( --royal-gold );
color: var(--rich-black);
font-size: 12px;
font-weight: 600;
padding: 5px 12px;
border-radius: 15px;
z-index: 1;
box-shadow: 0 3px 8px rgba(212,175,55,0.3);
}

.product-image {
position: relative;
overflow: hidden;
height: 220px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fafafa;
border-radius: 10px 10px 0 0;
}

.product-img {
max-height: 180px;
max-width: 90%;
transition: all 0.5s ease;
}

.product-card:hover .product-img {
transform: scale(1.05);
}

.product-quickview {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(10,10,10,0.7);
color: #fff;
text-align: center;
padding: 10px;
transform: translateY(100%);
transition: all 0.3s ease;
font-size: 14px;
font-weight: 500;
cursor: pointer;
}

.product-quickview i {
margin-right: 5px;
}

.product-card:hover .product-quickview {
transform: translateY(0);
}

.product-info {
padding: 20px;
}

.product-category {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--dark-gold);
font-weight: 600;
margin-bottom: 10px;
}

.product-title {
font-size: 18px;
font-weight: 600;
color: var(--rich-black);
margin-bottom: 12px;
height: 48px;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.product-rating {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.rating-stars {
color: var(--royal-gold);
font-size: 14px;
margin-right: 8px;
}

.rating-count {
font-size: 13px;
color: #777;
}

.product-price {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.current-price {
font-size: 20px;
font-weight: 700;
color: var(--royal-gold);
margin-right: 10px;
}

.original-price {
font-size: 15px;
text-decoration: line-through;
color: #999;
}

.product-actions {
display: flex;
gap: 10px;
}

.btn-cart, .btn-wishlist {
padding: 8px 12px;
border-radius: 5px;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
}

.btn-cart {
background-color: var(--royal-gold);
color: white;
border: none;
flex-grow: 1;
}

.btn-cart:hover {
background-color: var(--dark-gold);
}

.btn-wishlist {
background-color: #f5f5f5;
color: #555;
border: none;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
}

.btn-wishlist:hover {
background-color: #f0f0f0;
color: #e91e63;
}

/* View All Link */
.view-all-container {
text-align: center;
margin-top: 40px;
}

.view-all-link {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 30px;
background-color: transparent;
color: var(--rich-black);
border: 2px solid var(--royal-gold);
border-radius: 5px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
text-decoration: none;
}

.view-all-link:hover {
background-color: var(--royal-gold);
color: white;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

.view-all-link i {
margin-left: 8px;
}

/* Responsive Styles */
@media (max-width: 992px) {
.related-products-section {
padding: 30px 20px;
}
}

@media (max-width: 768px) {
.section-heading h2 {
font-size: 24px;
}

.section-heading p {
font-size: 14px;
}

.product-image {
height: 180px;
}
}

@media (max-width: 576px) {
.product-card {
max-width: 300px;
margin: 0 auto;
}
}

/* Arrow Controls */
.products-navigation {
position: relative;
}

.nav-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
background-color: white;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 1;
color: var(--rich-black);
border: 1px solid #eee;
transition: all 0.3s ease;
}

.nav-arrow:hover {
background-color: var(--royal-gold);
color: white;
border-color: var(--royal-gold);
}

.nav-prev {
left: -20px;
}

.nav-next {
right: -20px;
}

@media (max-width: 768px) {
.nav-arrow {
width: 35px;
height: 35px;
font-size: 14px;
}

.nav-prev {
left: -10px;
}

.nav-next {
right: -10px;
}
}




/* Base Styles - Light Theme */
.swastha-unique-features {
    background-color: var(--off-white);
    background-image: linear-gradient(to bottom, rgba(245, 245, 245, 0.97), rgba(248, 248, 248, 0.95)), url("/api/placeholder/1920/1080");
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.swastha-unique-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/api/placeholder/200/200");
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
}

/* Section Header Styles */
.swastha-section-header {
    margin-bottom: 60px;
    position: relative;
}

.swastha-decorative-element {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.swastha-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--royal-gold));
}

.swastha-line:last-child {
    background: linear-gradient(90deg, var(--royal-gold), transparent);
}

.swastha-emblem {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    background-color: var(--royal-gold);
    transform: rotate(45deg);
    position: relative;
}

.swastha-emblem::before,
.swastha-emblem::after {
    content: '';
    position: absolute;
    background-color: var(--royal-gold);
    border-radius: 50%;
}

.swastha-emblem::before {
    width: 10px;
    height: 10px;
    top: -5px;
    left: 5px;
}

.swastha-emblem::after {
    width: 10px;
    height: 10px;
    bottom: -5px;
    left: 5px;
}

.swastha-overline {
    color: var(--dark-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 12px;
}

.swastha-section-title {
    color: var(--rich-black);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.swastha-section-title span {
    color: var(--royal-gold);
    position: relative;
}

.swastha-section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--royal-gold);
}

/* Features Grid Styles - Light Theme */
.swastha-features-row {
    margin-top: 20px;
}

.swastha-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 40px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    margin-bottom: 30px;
}

.swastha-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.swastha-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.swastha-feature-card:hover::before {
    opacity: 1;
}

.swastha-feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.swastha-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--royal-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.swastha-feature-icon i {
    color: #FFFFFF;
    font-size: 24px;
}

.swastha-icon-aura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: pulse-aura 2s infinite alternate ease-in-out;
}

@keyframes pulse-aura {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }

    to {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.swastha-feature-card:hover .swastha-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.swastha-feature-title {
    color: var(--deep-brown);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.swastha-feature-text {
    color: #444444;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.swastha-feature-decoration {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
    width: 50%;
    margin: 0 auto;
    position: relative;
}

.swastha-feature-decoration::before,
.swastha-feature-decoration::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--royal-gold);
}

.swastha-feature-decoration::before {
    left: 0;
}

.swastha-feature-decoration::after {
    right: 0;
}

/* CTA Banner Styles - Light Theme */
.swastha-cta-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--royal-gold), var(--dark-gold));
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.swastha-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 0;
}

.swastha-banner-emblem {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url("/api/placeholder/150/150");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    right: -30px;
    top: -30px;
}

.swastha-cta-text {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.swastha-cta-button {
    background: var(--rich-black);
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    display: inline-block;
}

.swastha-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    background: #1a1a1a;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .swastha-unique-features {
        padding: 70px 0;
    }

    .swastha-section-title {
        font-size: 30px;
    }

    .swastha-cta-banner {
        flex-direction: column;
        padding: 25px;
    }

    .swastha-cta-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .swastha-unique-features {
        padding: 50px 0;
    }

    .swastha-section-title {
        font-size: 26px;
    }

    .swastha-feature-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .swastha-overline {
        font-size: 12px;
        letter-spacing: 3px;
    }
}

@media (max-width: 576px) {
    .swastha-section-header {
        margin-bottom: 40px;
    }

    .swastha-section-title {
        font-size: 22px;
    }

    .swastha-feature-title {
        font-size: 18px;
    }

    .swastha-feature-text {
        font-size: 13px;
    }

    .swastha-cta-text {
        font-size: 20px;
    }

    .swastha-cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}



/* FAQ Section Styling */
.faq-section {
    background-color: #F5F5F5;
    background-image:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 400px),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.07), transparent 300px),
        url('/api/placeholder/50/50');
    background-size: cover, cover, 100px;
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: top right, bottom left, center;
    position: relative;
    padding: 80px 0;
    color: #0A0A0A;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            #D4AF37 20%,
            transparent 40%,
            transparent 60%,
            #D4AF37 80%,
            transparent 100%);
    opacity: 0.7;
}

/* Section Header */
.section-header {
    position: relative;
    margin-bottom: 50px;
}

.decorative-symbol {
    font-size: 26px;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header .subtitle {
    color: #D4AF37;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header .title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0A0A0A;
    line-height: 1.2;
}

.section-header .title span {
    color: #D4AF37;
    display: inline-block;
}

.decorative-line {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.line-pattern {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg,
            transparent 0%,
            #D4AF37 30%,
            #D4AF37 70%,
            transparent 100%);
    position: relative;
}

.line-pattern::before,
.line-pattern::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D4AF37;
}

.line-pattern::before {
    left: 25%;
}

.line-pattern::after {
    right: 25%;
}

.section-header .description {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* FAQ Accordion Styling */
.faq-container {
    position: relative;
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-image: url('/api/placeholder/20/20');
    background-repeat: repeat;
    background-size: 20px;
    background-blend-mode: overlay;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background-color: transparent;
    color: #3D2314;
    font-size: 17px;
    font-weight: 600;
    padding: 20px;
    border-radius: 5px;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
}

.accordion-button:hover {
    color: #D4AF37;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: all 0.2s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-symbol {
    color: #D4AF37;
    margin-right: 10px;
    font-size: 18px;
}

.accordion-body {
    padding: 0 20px 20px;
    color: #444;
}

.faq-content {
    position: relative;
    padding: 15px 20px;
    background-color: rgba(245, 245, 245, 0.5);
    border-radius: 5px;
    border-left: 3px solid #D4AF37;
}

.faq-content p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* Ancient Decorations */
.ancient-decoration {
    position: relative;
    height: 20px;
    margin-top: 15px;
    opacity: 0.7;
}

.ayurvedic-symbol {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-image: url('/api/placeholder/20/20');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.ancient-bottom-decoration {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}

.mandala-bottom {
    width: 100px;
    height: 50px;
    background-image: url('/api/placeholder/100/50');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Consultation Banner */
/* .consultation-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(170, 140, 44, 0.2) 100%);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.consultation-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/100/100');
    background-repeat: repeat;
    background-size: 100px;
    opacity: 0.05;
    z-index: 0;
}

.consultation-banner h4 {
    color: #3D2314;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.consultation-banner p {
    color: #444;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.btn-consultation {
    display: inline-block;
    background-color: #D4AF37;
    color: #0A0A0A;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-consultation:hover {
    background-color: #AA8C2C;
    color: #0A0A0A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} */

/* Animation Effects */
/* @keyframes glowPulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.faq-section::before {
    animation: glowPulse 4s infinite;
} */

/* Responsive Adjustments */
/* @media (max-width: 992px) {
    .section-header .title {
        font-size: 32px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .accordion-button {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .section-header .title {
        font-size: 28px;
    }

    .section-header .subtitle {
        font-size: 15px;
    }

    .section-header .description {
        font-size: 15px;
    }

    .consultation-banner h4 {
        font-size: 22px;
    }

    .btn-consultation {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-header .title {
        font-size: 24px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 12px;
    }

    .faq-symbol {
        font-size: 16px;
    }

    .consultation-banner {
        padding: 20px;
    }

    .consultation-banner h4 {
        font-size: 20px;
    }
} */
