.product_area-price{
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* reviews css */

.review-main {
    border: 1px solid #0000001a;
    border-radius: 10px;
    padding: 30px;
  }
   
  .rating-box {
    background-color: #007AB0;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .rating-box h5{
    color: #fff;
  }

  .rating-value {
    font-size: 32px;
    font-weight: bold;
  }
  .rating-text {
    font-size: 14px;
  }
  .progress {
    height: 7px;
    width: 75%; /* Fixed width for all progress bars */
  }
  .progress-bar {
    border-radius: 8px;
  }
  .star {
    font-size: 18px;
    margin-right: 5px;
    color: #000;
    font-weight: 500;
  }
  .progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  .count {
    min-width: 40px; /* Ensures space for the count numbers */
    margin-left: 5px;
    font-weight: 600;
    font-size: 14px;
  }
  .review-section {
    margin-top: 20px;
  }
  .review-section .file-upload {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .review-section.file-upload .upload-icon {
    width: 60px;
    height: 60px;
    background-color: #e6e6e6;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .review-section .submit-btn {
    background-color: #007AB0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 500;
    width: max-content;
  }
  .submit-btn:hover {
    background-color: #007AB0;
  }
  .bg-success {
    background-color: #72cf02 !important;
  }
   
  .progress-row {
    padding: 20px 0px 25px 0px;
    border-top: 2px solid #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
  }
  .review-rating {
    display: flex;
    justify-content: space-between;
  }
   
  .review-rating svg {
    vertical-align: middle;
    height: 20px;
    width: 20px;
    margin: 0px 0px 5px 5px;
  }
  .review-rating svg:hover {
    vertical-align: middle;
    height: 20px;
    width: 20px;
    margin: 0px 0px 5px 5px;
  }
  .frm {
    font-size: 15px;
    color: #1e1e1e80;
    height: 170px;
    line-height: 1rem;
    border: 2x solid #000;
  }
  .frm:focus {
    border: 2x solid #007AB0;
    box-shadow: none;
  }
   
  .review-img svg {
    font-size: 28px;
    color: #1c1b1f80;
  }
  .rating-box h5 {
    margin: 0px;
    font-weight: 500;
  }
   
  .review-box {
    border: 1px solid #e6e6e6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
  }
  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .review-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
  }
  .review-header .user-info {
    flex-grow: 1;
  }
  .review-header .user-info h6 {
    margin: 10px;
    font-size: 16px;
    font-weight: 600;
  }
  .review-header .user-info p,
  .review-header .user-info span {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #1e1e1e80;
  }
  .review-content {
    margin-top: 15px;
    font-size: 14px;
  }
  .review-images {
    margin-top: 10px;
    display: flex;
  }
  .review-images img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin-right: 10px;
  }
  .review-images img:last-child {
    margin-right: 0;
  }