.product-image-gallery {
    display: flex;
    align-items: flex-start;
}

.cover {
    width: 500px;
    max-width: 100%;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.thumbnail {
    width: 100px;
    margin-bottom: 10px;
}

.product-container h1 {
	font-size: 1.25rem;
}

.product-price {
    font-size: 1rem;
}

#productTab {
  border-bottom: 2px solid #eee;
}

/* Cada tab */
#productTab .nav-link {
  font-weight: 500;
  color: #555;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  padding: 10px 20px;
}

/* Hover sobre tab */
#productTab .nav-link:hover {
  color: #000;
  border-bottom: 3px solid #ddd;
}

/* Tab activa */
#productTab .nav-link.active {
  color: #0d6efd; /* azul bootstrap */
  border-bottom: 3px solid #0d6efd;
  background-color: transparent;
}

/* Contenido de las pestañas */
#productTabContent {
  padding: 20px;
    border-left: 2px solid #eee;
    border-right: 2px solid #eee;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

/* Estilo para la tabla dentro de Specifications */
#tab-specifications table {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

#tab-specifications td {
  padding: 10px 15px;
  border-top: 1px solid #f1f1f1;
}

#tab-specifications tr:first-child td {
  border-top: none;
}

#tab-specifications td.bg-100 {
  background-color: #f9f9f9;
  font-weight: 600;
}

.cart-link {
  pointer-events: auto;
}