/* General Styles */
body {
    font-family: "Roboto", sans-serif;
    color: #333;
            background-color: #f8f9fc;
            line-height: 1.6;
        }

  .main {
    padding-top: 20px;
  }

  .section-title {
            font-size: 24px;
    font-weight: 600;
            margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0300ff;
  }

  .short-divider {
    width: 60px;
    border-top: 3px solid #0300ff;
    margin: 15px 0;
  }
 
.product-single-details .product-title {
    margin-bottom: 1.1rem;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 0px;
    width: calc(100% - 10px);
}
        .product-image-container {
    border: 1px solid #dee2e6;
    padding: 8px;
    margin-bottom: 15px;
            position: relative;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
        }

        .product-image {
    width: 60%;
            height: auto;
            cursor: zoom-in;
    transition: transform 0.3s ease;
  }

  .disclaimer-text {
    font-size:  9px;
    color: #3b3f43;
    padding: 5px;
    border-top: 1px solid #dee2e6;
    margin-top: 15px;
  }

  /* Price Box and Action Buttons */
  .price-box {
            margin-bottom: 15px;
  }



  .product-single-details .product-price{
    font-size: 25px;
    font-weight: 600;
    color: #ff3131;
  }
  .nav-tabs .nav-item .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    border-bottom-color: #0300ff;
    color: #0300ff;
}

  button.btn.model{
    background: #ff3131;
  color: #fff;
  font-weight: 600;
  border-radius: 45px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border: 1px solid #fff;
  height: 40px;
  padding: 10px;
  }

  .model {
    color: #0300ff;
    padding: 0;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color .3s;
}

  .model a{
    text-decoration: underline;
  }


  /* Product Info Table */
  .product-info-table, table {
            width: 100%;
    border: 1px solid #dee2e6;
            margin-bottom: 20px;
        }

  .product-info-table th, table th {
    background-color: #f8f9fa;
    padding: 12px;
            text-align: left;
    border: 1px solid #dee2e6;
    width: 40%;
            font-weight: 600;
  }

  .product-info-table td, table td {
    padding: 5px;
    border: 1px solid #dee2e6;
  }

  /* Stock Info */
  .stock {
    font-weight: 600;
  }

  .Quality img{
    width: 78%;
  }

  .available {
    color: #28a745;
  }

  .unavailable {
    color: #dc3545;
  }

  /* Tabs and Content */
        .product-tabs {
    margin-top: 30px;
  }

  .nav-tabs {
    border-bottom: 2px solid #dee2e6;
  }

  .nav-tabs .nav-link {
    color: #495057;
    border: none;
    padding: 12px 20px;
            font-weight: 600;
  }

  .nav-tabs .nav-link.active {
    color: #0300ff;
    background-color: transparent;
    border-bottom: 2px solid #0300ff;
        }

        .tab-content {
    padding: 20px 0;
  }

  /* Related Products Table */
  .table {
            width: 100%;
    margin-bottom: 1rem;
    background-color: #fff;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #dee2e6;
    border-radius: 4px;
  }

  .table th {
    padding: 12px;
    border: 1px solid #dee2e6;
            text-align: left;
    background-color: #f8f9fa;
            font-weight: 600;
    color: #495057;
  }

  .table td {
    padding: 12px;
    border: 1px solid #dee2e6;
    vertical-align: middle;
    color: #212529;
  }

  .table thead th {
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }

  .table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
  }

  .table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease;
  }

  .table tfoot td {
    border-top: 2px solid #dee2e6;
    font-weight: 600;
  }

  /* RFQ Modal */
  .modal-content {
    border-radius: 0;
    border: none;
  }

  .modal-header {
    border-bottom: none;
            padding: 15px;
        }

  .modal-body {
    padding: 15px 30px;
  }

  .modal-footer {
    border-top: none;
    padding: 15px 30px 30px;
  }

  /* Image Zoom Modal */
  #imageModal .modal-dialog {
    max-width: 800px;
  }

  #imageModal .modal-content {
    border: 1px solid #dee2e6;
  }

  #imageModal .modal-body {
    padding: 20px;
    display: flex
;
                justify-content: center;
            }
            
  #imageModal img {
    width: 58%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    
}

  /* Responsive adjustments */
  @media (max-width: 991px) {
    .product-details-left {
      order: 1;
    }
    .product-details-center {
      order: 0;
      margin-bottom: 20px;
    }
    .product-details-right {
      order: 2;
    }
    .nav-tabs .nav-link {
      padding: 10px 10px;
                font-size: 14px;
    }
  }

  @media (max-width: 767px) {
    .table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }
    
    .table th,
    .table td {
      min-width: 150px;
            }
        }

.testing-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  margin-top: 10px;
}