/* Color del texto del menú en estado normal */
.main-navigation a {
    color: black !important;
}

/* Color del texto cuando pasas el cursor (hover) */
.main-navigation a:hover {
    color: black !important;
}

/* Color del texto cuando la opción está activa */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: black !important;
}
/* Container for both the PDF link and text content */
.product-specs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* PDF link container */
.pdf-link {
  flex: 1;
  margin-right: 20px; /* Add some space between the PDF link and text */
}

.pdf-logo {
  width: 30px; /* Adjust size as needed */
  vertical-align: middle;
  margin-right: 10px; /* Add space between logo and text */
}

/* Text content container */
.text-content {
  flex: 3;
  text-align: left;
}

.text-content p, .text-content h2, .text-content ul {
  margin: 10px 0;
}
/* Container for product details */
.product-details {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header styling for the section */
.product-details h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* List styling */
.details-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.details-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.details-list li:last-child {
  border-bottom: none;
}

/* Label (e.g., 'Brand:', 'Model:') styling */
.details-list li strong {
  color: #0073e6;
  font-weight: bold;
}

/* Value styling */
.details-list li {
  font-size: 1em;
  color: #666;
}

/* Hover effect on list items */
.details-list li:hover {
  background-color: #f1f1f1;
}

/* Hide categories in the sidebar */
ul#woocommerce_product_categories-2 li.cat-item-1250g,
ul#woocommerce_product_categories-2 li.cat-item-1980i,
ul#woocommerce_product_categories-2 li.cat-item-7190g,
ul#woocommerce_product_categories-2 li.cat-item-ct47 {
    display: none;
}

