/* Modern Styling for Additional Information Tab */
.custom-product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Section Styling */
.custom-section {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Headers */
.custom-header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  padding: 10px;
  background: linear-gradient(to right, #0073aa, #005f87);
  color: white;
  border-radius: 6px;
}

/* Table */
.custom-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table td {
  padding: 10px 15px;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.custom-table tr:hover td {
  background: #f0f0f0;
}

/* Description */
.custom-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.entry-content h3.product_specification_title,
.product_feature_title {
  padding: 5px 10px;
  color: #fff !important;
  font-weight: 900;
  font-size: 20px;
  background: #727272;
  margin-top: 30px;
}

.product_feature_table,
.product_feature_list_table,
.product_feature_list_table td,
.product_feature_table td {
  border: unset;
}

.product_feature_table_container {
  display: flex;
  justify-content: start; /* Centers the table */
  width: 100%;
}

.product_feature_table {
  width: 50%;
}

.woocommerce-js div.product div.summary .single-product-category {
  display: none;
}

.product-details-info h3 {
  padding: 5px 10px;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  background: #727272;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .product_feature_table {
    width: 100%;
  }

  .product_feature_list_table {
    width: 50%;
  }
}

.product_feature_table td,
.product_feature_list_table td {
  border-bottom: 1px solid #a5a4a4;
}

.product_feature_list_table td:first-child {
  padding-left: unset;
}

.product-features {
  list-style: none;
  padding: 10px 0;
}

.product-features li {
  font-size: 14px;
  color: #333;
  padding: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-header {
    font-size: 1.3rem;
  }

  .custom-table td {
    font-size: 0.9rem;
  }
}
