.noedit p{
  font-family: 'Poppins', sans-serif;
  font-size:14px ;
}
.mw-accordion-faq-skin-button {
  height: 30px !important;
 
  border: 1px solid #EAEAE5 !important;
  border-radius: 12px;
 
  color: #333;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.mw-accordion-faq-skin-button:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}
.mw-accordion-faq-skin-button h5{
  font-size:14px !important;
  font-weight:500 !important;
  font-family: 'Poppins', sans-serif;
}


.custom-mobile-header{
  background-color:#E5E2DE !important;
}
#product-inner-price{
  color:#000;
}
/*Review section*/
.jeans-reviews-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    background-color:#fff !important;
  }

  .jeans-reviews-section h4 {
    color: #828A97;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .jeans-reviews-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1B2A41;
    margin-bottom: 50px;
  }

  .jeans-reviews-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .jeans-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 250px;
  }

  .jeans-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }

  .jeans-quote {
    font-size: 32px;
    color: #FF4C3B;
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 0.15;
  }

  .jeans-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .jeans-review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    border: 3px solid #1E2D42;
  }

  .jeans-review-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
  }

  .jeans-review-header p {
    font-size: 13px;
    color: #777;
  }

  .jeans-review-text {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .jeans-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .jeans-stars {
    color: #FFD700;
    font-size: 16px;
  }

  .jeans-review-date {
    font-size: 12px;
    color: #fff;
    background: #1B2A41;
    padding: 4px 10px;
    border-radius: 6px;
  }

  @media (max-width: 992px) {
    .jeans-reviews-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .jeans-reviews-container {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      padding-bottom: 10px;
      -webkit-overflow-scrolling: touch;
    }

    .jeans-review-card {
      flex: 0 0 auto;
      width: 250px;
    }

    .jeans-review-text {
      font-size: 13px;
      line-height: 1.6;
      max-height: 60px;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

  .jeans-reviews-container::-webkit-scrollbar {
    height: 6px;
  }

  .jeans-reviews-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
/*Review section END*/