/**
 * Social Proof Modal - Productos Recientemente Adquiridos
 * Estilo: Pequeño, discreto, colores institucionales (amarillo y negro/gris)
 */

/* Contenedor del modal - posicionado abajo izquierda */
.cocimundo-social-proof-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 320px;
    width: calc(100% - 40px);
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(234, 179, 8, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Modal visible */
.cocimundo-social-proof-modal.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Barra superior amarilla decorativa */
.cocimundo-social-proof-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EAB308 0%, #FBBF24 100%);
}

/* Contenedor interno */
.cocimundo-modal-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

/* Contenedor de la imagen */
.cocimundo-modal-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #EAB308;
}

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

/* Contenedor de texto */
.cocimundo-modal-text {
    flex: 1;
    min-width: 0; /* Para que funcione text-overflow */
}

/* Texto "Recientemente adquirido" */
.cocimundo-modal-label {
    font-size: 11px;
    font-weight: 600;
    color: #EAB308;
    letter-spacing: 0.3px;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

/* Nombre del producto */
.cocimundo-modal-product-name {
    font-size: 13px;
    font-weight: 600;
    color: #F9FAFB;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Link que envuelve todo (hover) */
.cocimundo-modal-link {
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

.cocimundo-modal-link:hover {
    transform: translateX(2px);
}

.cocimundo-modal-link:hover .cocimundo-modal-product-name {
    color: #EAB308;
}

/* Icono de pulso decorativo */
.cocimundo-modal-pulse {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .cocimundo-social-proof-modal {
        bottom: 15px;
        left: 15px;
        max-width: 280px;
        width: calc(100% - 30px);
    }
    
    .cocimundo-modal-content {
        gap: 10px;
        padding: 12px 14px;
    }
    
    .cocimundo-modal-image {
        width: 50px;
        height: 50px;
    }
    
    .cocimundo-modal-label {
        font-size: 10px;
    }
    
    .cocimundo-modal-product-name {
        font-size: 12px;
    }
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 380px) {
    .cocimundo-social-proof-modal {
        max-width: 260px;
    }
    
    .cocimundo-modal-image {
        width: 45px;
        height: 45px;
    }
}
