  
 

 /* Breadcrumb */
 .breadcrumb {
     background: #fff;
     padding: 15px 20px;
     margin-bottom: 20px;
     border-radius: 5px;
     font-size: 14px;
 }

 .breadcrumb a {
     color: #8b4513;
     text-decoration: none;
 }

 .breadcrumb a:hover {
     text-decoration: underline;
 }

 .breadcrumb span {
     margin: 0 8px;
     color: #999;
 }

 /* Product Section */
 .product-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     background: #fff;
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     margin-bottom: 30px;
 }

 .product-images img {
     width: 100%;
     height: auto;
     border-radius: 8px;
     margin-bottom: 15px;
 }

 .product-details h1 {
     font-size: 28px;
     color: #2c3e50;
     margin-bottom: 15px;
     line-height: 1.3;
 }

 .product-price {
     font-size: 32px;
     color: #8b4513;
     font-weight: bold;
     margin: 20px 0;
 }

 .product-rating {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
     gap: 10px;
 }

 .stars {
     color: #ffa500;
     font-size: 18px;
 }

 .rating-text {
     color: #666;
     font-size: 14px;
 }

 .product-short-desc {
     font-size: 16px;
     color: #555;
     margin-bottom: 25px;
     line-height: 1.8;
 }

 .product-specs {
     background: #f9f9f9;
     padding: 20px;
     border-radius: 8px;
     margin: 25px 0;
 }

 .product-specs ul {
     list-style: none;
 }

 .product-specs li {
     padding: 10px 0;
     border-bottom: 1px solid #e0e0e0;
     display: flex;
 }

 .product-specs li:last-child {
     border-bottom: none;
 }

 .spec-label {
     font-weight: 600;
     min-width: 150px;
     color: #2c3e50;
 }

 .spec-value {
     color: #555;
 }

 .cta-buttons {
     display: flex;
     gap: 15px;
     margin: 30px 0;
 }

 .btn {
     padding: 15px 30px;
     font-size: 16px;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-weight: 600;
     transition: all 0.3s;
     flex: 1;
     text-align: center;
 }

 .btn-primary {
     background: #8b4513;
     color: #fff;
 }

 .btn-primary:hover {
     background: #6d3410;
 }

 .btn-secondary {
     background: #fff;
     color: #8b4513;
     border: 2px solid #8b4513;
 }

 .btn-secondary:hover {
     background: #8b4513;
     color: #fff;
 }

 /* Product Description Section */
 .product-description {
     background: #fff;
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     margin-bottom: 30px;
 }

 .product-description h2 {
     font-size: 26px;
     color: #2c3e50;
     margin-bottom: 20px;
     border-bottom: 3px solid #8b4513;
     padding-bottom: 10px;
 }

 .product-description h3 {
     font-size: 20px;
     color: #34495e;
     margin: 30px 0 15px 0;
 }

 .product-description p {
     font-size: 16px;
     color: #555;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .product-description ul {
     margin: 20px 0 20px 20px;
 }

 .product-description ul li {
     font-size: 16px;
     color: #555;
     margin-bottom: 12px;
     line-height: 1.6;
 }

 .product-description strong {
     color: #2c3e50;
 }

 .note {
     background: #fff3cd;
     border-left: 4px solid #ffa500;
     padding: 15px 20px;
     margin: 25px 0;
     border-radius: 5px;
 }

/* Elegant FAQ Section */
.faq-section {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  /* max-width: 800px; */
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
}

.faq-section h2 {
  font-size: 30px;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.faq-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #b87333;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #faf8f6;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  background: #fff8f0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: #f5e4d0;
  color: #8b4513;
}

.faq-question .arrow {
  border: solid #8b4513;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  padding: 0 22px;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 15px 22px 25px;
}


 /* Trust Badges */
 .trust-badges {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     margin: 30px 0;
 }

 .badge {
     text-align: center;
     padding: 20px;
     background: #f9f9f9;
     border-radius: 8px;
     border: 1px solid #eaeaea;
 }

 .badge-icon {
     font-size: 40px;
     margin-bottom: 10px;
     color: #000;
 }

 .badge-text {
     font-size: 14px;
     color: #555;
     font-weight: 600;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .product-section {
         grid-template-columns: 1fr;
     }

     .cta-buttons {
         flex-direction: column;
     }

     .product-details h1 {
         font-size: 24px;
     }

     .product-price {
         font-size: 28px;
     }

     .container {
         padding: 10px;
     }

     .product-description,
     .faq-section {
         padding: 20px;
     }
 }

 .mt-70{
    margin-top: 70px !important ;
 }

 .align-item-center{
    align-items: center !important;
 }