        /* Product Details */
        .product-detail {
            padding: 0px;
        }
        .product-gallery {
            position: relative;
        }
        .main-image {
            width: 100%;
            height: 500px;
            object-fit: contain;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .thumbnail-images {
            display: flex;
            margin-top: 20px;
            gap: 15px;
            flex-wrap: wrap;
        }
        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 0px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .thumbnail:hover, .thumbnail.active {
            border-color: var(--primary-color);
        }
        .product-info h1 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        .product-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0;
        }
        .product-description {
            margin: 30px 0;
            line-height: 1.8;
        }
        .product-features {
            margin: 30px 0;
        }
        .feature-list {
            list-style: none;
            padding: 0;
        }
        .feature-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        .feature-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free'; /* O 6 para FA6 */
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        .quantity-selector {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }
        .quantity-btn {
            width: 40px;
            height: 40px;
            background: var(--light-color);
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
        }
        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
        }
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        .btn-cart {
            flex: 2;
        }
        .btn-wishlist {
            flex: 1;
            background: var(--light-color);
            border: 1px solid #ddd;
            color: var(--text-color);
        }
        .btn-wishlist:hover {
            background: #eee;
        }
        .product-meta {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .meta-item {
            margin-bottom: 10px;
        }
        .meta-label {
            font-weight: 600;
            color: var(--dark-color);
            display: inline-block;
            width: 150px; /* Ajustado para mejor alineación */
        }
        /* Related Products */
        .related-products {
            background-color: var(--light-color);
            padding: 80px 0;
        }
        .product-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            border-radius: 0px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .product-img {
            height: 250px;
            object-fit: contain;
            width: 100%;
        }
        .product-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        .product-card .product-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.4rem;
            margin: 10px 0;
            margin-top: auto; /* Empuja el precio hacia abajo */
        }
        .breadcrumb {
             background-color: #f8f9fa;
             padding: 15px 0;
             font-size: 0.9rem;
        }
        .breadcrumb a {
            text-decoration: none;
        }
        .product-rating .fas.fa-star-half-alt {
            color: #ffc107; /* Color para media estrella */
        }
        /* Responsive */
        @media (max-width: 768px) {
            .main-image {
                height: 350px;
            }
            .product-info h1 {
                font-size: 2rem;
            }
            .action-buttons {
                flex-direction: column;
            }
            .meta-label {
                width: 120px; /* Ajuste para móviles */
            }
        }
        @media (max-width: 576px) {
            .main-image {
                height: 250px;
            }
            .thumbnail-images {
                flex-wrap: wrap;
            }
            .thumbnail {
                width: 70px;
                height: 70px;
            }
            .product-detail {
                padding: 40px 0;
            }
        }




/* Estilos para botones de compartir en redes sociales */
.social-share {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.social-share h6 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-share {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-share:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-facebook {
    background-color: #3b5998;
}

.btn-twitter {
    background-color: #1DA1F2;
}

.btn-linkedin {
    background-color: #0077b5;
}

.btn-email {
    background-color: #ea4335;
}

/* Responsive */
@media (max-width: 768px) {
    .share-buttons {
        justify-content: center;
    }
    
    .btn-share {
        width: 45px;
        height: 45px;
    }
    
    .social-share h6 {
        text-align: center;
    }
}





/* Estilos para Lightbox2 */
.lightboxOverlay {
    background: rgba(0, 0, 0, 0.85);
}

.lightbox .lb-image {
    border-radius: 8px;
    border: 3px solid white;
}

.lightbox .lb-nav a.lb-prev,
.lightbox .lb-nav a.lb-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lightbox .lb-nav a.lb-prev:hover,
.lightbox .lb-nav a.lb-next:hover {
    opacity: 1;
}

.lightbox .lb-data .lb-caption {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.lightbox .lb-data .lb-number {
    color: #ccc;
    font-size: 0.9rem;
}

.lightbox .lb-close {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center center;
    background-size: 24px 24px;
}

/* Mejoras para las miniaturas con lightbox */
.thumbnail-images a {
    text-decoration: none;
    display: inline-block;
}

.thumbnail-images .thumbnail {
    transition: all 0.3s ease;
}

.thumbnail-images .thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Indicador visual para imágenes clickeables */
.main-image {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}



