/*
 # ########*###########################
 Autor: José Luis Rodriguez
 Mail: jrodriguez@bincodex.com
 Web: https://bincodex.com
 Fecha: 2025-11-11 10:07:47
 Archivo: dtvc.css
 Codificación: UTF-8
 Editado en: Kate 25.04.3
 ####################################
 */









 /* Resto de estilos (igual que antes) */
.breadcrumb {
    padding: 1rem 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}






/* Layout principal */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

/* Galería de imágenes */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    transform: scale(1.05);
}

/* Información del producto */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
}

.rating-value {
    font-weight: 600;
}

.review-count {
    color: var(--light-text);
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-description {
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 1rem;
}

.product-features {
    list-style-type: none;
}

.product-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-features li i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* Acciones del producto */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 14px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    flex: 2;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(74, 108, 247, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    flex: 1;
}

.btn-secondary:hover {
    background-color: #f0f4ff;
    transform: translateY(-3px);
}

.btn-danger {
    background-color: var(--accent-color);
    color: white;
    flex: 1;
}

.btn-danger:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3);
}

.wishlist-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px 0;
}

.wishlist-btn:hover {
    color: var(--accent-color);
}

/* Especificaciones técnicas */
.specs-section {
    margin-top: 3rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.section-title {
    /*font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;*/
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-label {
    font-weight: 600;
    color: var(--light-text);
    font-size: 0.9rem;
}

.spec-value {
    font-size: 1.1rem;
}



