.contenedorprincipal {
padding-left:10px;
padding-right:6px;
max-width: 1000px;
 margin: auto;
}

.product-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
   
  background-color: #e9eef5;
  
 
  margin: auto;
  font-family: system-ui, sans-serif;
  margin-bottom: 1rem;
 
}

.product-image {
  flex: 1 1 300px;
  position: relative;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  background-color: #e9eef5;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-prev,
.carousel-next {
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  padding: 0 1rem;
}





.product-details {
  flex: 1 1 400px;
  background-color: white;
  padding: 1.5rem;
  border-radius: 6px;
}


.product-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.4rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.product-info {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

.product-info li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.product-info .icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.checkout-button {
  background-color: #f7c000;
  color: #000;
  padding: 0.8rem 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}


/* ============================
   BREADCRUMB PREMIUM GOLD
   ============================ */
.breadcrumb {
    background: #FFD000 !important; /* fondo dorado */
    padding: 10px 16px;
   margin-top: 1px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Items del breadcrumb */
.breadcrumb-item {
    color: #1a1a1a !important; /* texto negro carbón */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover en los enlaces */
.breadcrumb-item:hover {
    color: #333 !important;
    transform: translateY(-2px);
}

/* Separador entre items */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* flecha elegante */
    color: #1a1a1a;
    font-weight: bold;
    padding: 0 6px;
}

/* Item activo */
.breadcrumb-item.active {
    color: #333 !important;
    font-weight: 600;
}

/* ============================
   hasta aqui css de BREADCRUMB PREMIUM GOLD
   
   ============================ */

/* Contenedor principal descripcion */
.product-detail {
  background: #FAFAFA;
  
 border-top-left-radius: 10px;
 border-top-right-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

/* Tabs */
.product-tabs {
  border-bottom: 2px solid #FFD700;
  margin-bottom: 20px;
}

.product-tabs .tab {
  background: none;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 500;
  color: #444;
  transition: all 0.3s ease;
}

.product-tabs .tab.active {
  background: #FFD700;
  color: #1a1a1a;
 
  font-weight: 600;
}

.product-tabs .tab:hover {
  background: #ffe066;
  color: #1a1a1a;
}

/* Contenido */
.tab-content {
  padding: 10px 0;
}

.tab-pane h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  border-left: 4px solid #FFD700;
  padding-left: 8px;
}

.tab-pane p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 18px;
}

/* Listas */
.tab-pane ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.tab-pane ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.tab-pane ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .product-detail {
    padding: 20px;
  }

  .tab-pane h4 {
    font-size: 1rem;
  }

  .tab-pane p,
  .tab-pane ul li {
    font-size: 14px;
  }
}

