.review-images img {
    transition: transform 0.3s;
}

.review-images img:hover {
    transform: scale(1.1);
    border: 2px solid #333;
}

.remove-image {
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}



/* ==================== */
/* REVIEW UPLOAD BUTTON */

/* Hide the default file input */
input.review-img[type="file"] {
    display: none !important;
  }
  
  /* Style the custom label (button) */
  .comment-form-images label {
    margin-top: 12px!important;
    display: inline-block;
   
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  /* Hover effect */
  .comment-form-images label:hover {
    /* background-color: #2e7d32 !important; 
    border-color: #2e7d32 !important; 
    border: 1px dashed #abc0b2!important;  */
  }
  
  /* Active effect (when the button is pressed) */
  .comment-form-images label:active {
    /* background-color: #256029 !important;
    border-color: #256029 !important; */
  }
  
  /* Style the label text */
  .comment-form-images label {
    font-size: 14px;
    padding: 10px 20px;
    text-transform: uppercase;
  }
  
  /* When a file is selected, show the file name in the label */
  input.review-img[type="file"]:valid + label::after {
    content: "Product Images Selected";
    margin-left: 10px;
    font-size: 14px;
    display: inline-block;
  }
  
  /* Add some space between label and file preview */
  #review-image-preview {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }
  

  /* ==================== */
  /* product details layout */

  


  /* review pagination
   */

   .comments-pagination {
    margin: 20px 0;
    text-align: center;
}

.comments-pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    text-decoration: none;
}

.comments-pagination .current {
    background-color: #0071a1;
    color: #fff;
    border: none;
}
