﻿/*#load-more-button.btn-gradient {
    background-image: linear-gradient(45deg, #0d6efd 0%, #6f42c1 100%);*/ /* De azul a morado, ajusta los colores a tu marca */
    /*border: none;
    color: white;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 50px;*/ /* Bordes redondeados */
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    #load-more-button.btn-gradient:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }*/


/* ===================================================================== */
/* ---             ESTILOS GLOBALES PARA COMPONENTE GALERÍA          --- */
/* ===================================================================== */

/* Controles de filtro (botones de texto) */
.gallery-controls .btn {
    margin: 0.2rem;
    font-size: 0.9rem;
}

/* Tarjetas de Álbumes */
.album-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .album-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.12);
    }

/* Estilos para la galería de JustifiedGallery (donde van las imágenes) */
/* No necesita estilos específicos aquí, la librería se encarga.
   Pero si quisieras añadir un borde o algo, lo harías sobre .justified-gallery */

/* Contenedor del botón "Cargar Más" y el spinner */
.load-more-container {
    text-align: center;
    padding: 1.5rem 0;
}

/* Botón "Cargar Más" (Estilo Gradiente Vistoso) */
.load-more-button.btn-gradient {
    background-image: linear-gradient(45deg, #0d6efd 0%, #6f42c1 100%);
    border: none;
    color: white;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .load-more-button.btn-gradient:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }


/* ===================================================================== */
/* ---        ESTILOS GLOBALES PARA COMPONENTE OPINIONES (REVIEWS)   --- */
/* ===================================================================== */

/* Columna del resumen de calificaciones */
.review-summary-column {
    background-color: #eef2f7; /* Un fondo suave para destacar */
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
}

    /* Estrellas en el resumen */
    .review-summary-column .rating-stars i {
        color: var(--warning-color);
    }

/* Barras de progreso para la distribución de estrellas */
.review-summary-bars .progress {
    height: 8px;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.review-summary-bars .progress-bar {
    border-radius: 4px;
}

/* Animación para el botón "Opina Ahora" */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--bs-warning-rgb), 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(var(--bs-warning-rgb), 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--bs-warning-rgb), 0);
    }
}

/* Tarjeta individual para cada reseña */
.review-item-card {
    background-color: var(--lighter-bg);
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--box-shadow-light);
}

.review-user-name {
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* Cajas para "Lo bueno" y "Lo malo" */
.review-pros, .review-cons {
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    padding: 0.75rem;
}

.review-pros {
    background-color: rgba(var(--bs-success-rgb), 0.08);
    border-left: 4px solid var(--success-color);
}

.review-cons {
    background-color: rgba(var(--bs-danger-rgb), 0.08);
    border-left: 4px solid var(--danger-color);
}

    .review-pros h6, .review-cons h6 {
        font-weight: 600;
    }

/* Botón "Útil" */
.review-helpful-btn:hover {
    background-color: #e9ecef;
}

/* Respuesta del propietario (si la hubiera) */
.owner-reply {
    background-color: rgba(var(--bs-info-rgb), 0.08);
    border-left: 4px solid var(--info-color);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-top: 1rem;
}

    .owner-reply h6 i {
        color: var(--info-color);
    }

/* ===================================================================== */
/* ---             ESTILOS GLOBALES PARA COMPONENTE VIDEOS           --- */
/* ===================================================================== */

/* Título de una subsección de videos (ej. "Videos de YouTube") */
.video-subsection .section-card-subtitle {
    font-size: 1.5rem;
    color: var(--dark-text);
    border-bottom: 2px solid rgba(var(--secondary-color-rgb), 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

    .video-subsection .section-card-subtitle i {
        vertical-align: middle;
    }

/* Tarjeta individual para cada miniatura de video */
.video-thumbnail-card-v2 {
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--lighter-bg);
    overflow: hidden;
    margin-bottom: 1rem; /* Espacio entre videos */
}

    .video-thumbnail-card-v2:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-md);
    }

/* Contenedor de la imagen de miniatura */
.video-thumbnail-v2 {
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #e9ecef;
    position: relative; /* Necesario para el overlay */
}

    .video-thumbnail-v2 .card-img-top {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.video-thumbnail-card-v2:hover .video-thumbnail-v2 .card-img-top {
    transform: scale(1.1);
}

/* Icono de Play que aparece al hacer hover */
.play-icon-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail-card-v2:hover .play-icon-overlay-v2 {
    opacity: 1;
}

.play-icon-overlay-v2 i {
    text-shadow: 0 0 15px rgba(0,0,0,0.6);
    font-size: 4rem;
}

/* Título debajo de la miniatura del video */
.video-item-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Estilos para el video de TikTok */
.tiktok-card .tiktok-embed {
    margin: 0 auto;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tiktok-card .tiktok-embed iframe {
        max-height: 500px !important;
    }

.tiktok-card .video-title {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}