/**
* Theme Name: Hnice Child
* Description: This is a child theme of Hnice, generated by Merlin WP.
* Author: <a href="http://themelexus.com/">Themelexus</a>
* Template: hnice
* Version: 1.2.6
*/

.product-specs-table {
  width: 60% !important;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  table-layout: fixed; /* 🔥 important for equal columns */
}


.product-specs-table td {
  border: 1px solid #e5e5e5;
  padding: 10px;
  text-align: left;
  word-wrap: break-word;
}



/* 🔥 MOBILE FIX (TRUE 50/50 TABLE) */
@media (max-width: 600px) {

  .product-specs-table thead {
    display: none;
  }

  .product-specs-table {
    table-layout: fixed;
    width: 1000%;
  }

  .product-specs-table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 8px;
    border: 1px solid #e5e5e5;
  }

  .product-specs-table td {
    width: 50%;
    display: table-cell;
    font-size: 13px;
    padding: 8px;
    white-space: normal; /* allow proper fit */
    word-break: break-word;
  }

}

