/* Estilos para elementos sin imagen */
.no-image {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
    font-size: 24px;
    color: #999;
    border: 1px solid #ddd;
    flex-shrink: 0;
}

.cart-item .no-image {
    margin-right: 15px;
}

/* Para diferentes tamaños */
.no-image.small {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.no-image.large {
    width: 80px;
    height: 80px;
    font-size: 32px;
}

/* Hover effect */
.no-image:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #ddd 100%);
}
